gnu: Add r-rcppml.
[jackhill/guix/guix.git] / gnu / packages / cran.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016 Pjotr Prins <pjotr.guix@thebird.nl>
5 ;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
6 ;;; Copyright © 2016, 2017, 2018, 2020, 2021 Roel Janssen <roel@gnu.org>
7 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
8 ;;; Copyright © 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
9 ;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
10 ;;; Copyright © 2018 Sahithi Yarlagadda <sahi@swecha.net>
11 ;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94@gmail.com>
12 ;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net>
13 ;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
14 ;;; Copyright © 2018, 2020, 2021, 2022 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
15 ;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
16 ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
17 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
18 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
19 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
20 ;;; Copyright © 2019, 2020, 2021 Wiktor Żelazny <wzelazny@vurv.cz>
21 ;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
22 ;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
23 ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
24 ;;; Copyright © 2020 Danjela Lura <danielaluraa@gmail.com>
25 ;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
26 ;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
27 ;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
28 ;;; Copyright © 2020 Rafael Luque Leiva <rafael.luque@osoco.es>
29 ;;; Copyright © 2020, 2021 Lars-Dominik Braun <ldb@leibniz-psychology.org>
30 ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
31 ;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net>
32 ;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
33 ;;; Copyright © 2020 Magali Lemes <magalilemes00@gmail.com>
34 ;;; Copyright © 2020, 2021, 2022 Simon Tournier <zimon.toutoune@gmail.com>
35 ;;; Copyright © 2020 Aniket Patil <aniket112.patil@gmail.com>
36 ;;; Copyright © 2021 Marcel Schilling <marcel.schilling@uni-luebeck.de>
37 ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
38 ;;; Copyright © 2022 Navid Afkhami <navid.afkhami@mdc-berlin.de>
39 ;;;
40 ;;; This file is part of GNU Guix.
41 ;;;
42 ;;; GNU Guix is free software; you can redistribute it and/or modify it
43 ;;; under the terms of the GNU General Public License as published by
44 ;;; the Free Software Foundation; either version 3 of the License, or (at
45 ;;; your option) any later version.
46 ;;;
47 ;;; GNU Guix is distributed in the hope that it will be useful, but
48 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
49 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
50 ;;; GNU General Public License for more details.
51 ;;;
52 ;;; You should have received a copy of the GNU General Public License
53 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
54
55 (define-module (gnu packages cran)
56 #:use-module ((guix licenses) #:prefix license:)
57 #:use-module (guix packages)
58 #:use-module (guix download)
59 #:use-module (guix gexp)
60 #:use-module (guix git-download)
61 #:use-module (guix utils)
62 #:use-module (guix build-system gnu)
63 #:use-module (guix build-system r)
64 #:use-module (gnu packages)
65 #:use-module (gnu packages algebra)
66 #:use-module (gnu packages autotools)
67 #:use-module (gnu packages base)
68 #:use-module (gnu packages bioinformatics)
69 #:use-module (gnu packages c)
70 #:use-module (gnu packages compression)
71 #:use-module (gnu packages crypto)
72 #:use-module (gnu packages curl)
73 #:use-module (gnu packages databases)
74 #:use-module (gnu packages fontutils)
75 #:use-module (gnu packages fribidi)
76 #:use-module (gnu packages gcc)
77 #:use-module (gnu packages geo)
78 #:use-module (gnu packages ghostscript)
79 #:use-module (gnu packages gl)
80 #:use-module (gnu packages gnome)
81 #:use-module (gnu packages graph)
82 #:use-module (gnu packages gtk)
83 #:use-module (gnu packages haskell-xyz)
84 #:use-module (gnu packages icu4c)
85 #:use-module (gnu packages image)
86 #:use-module (gnu packages imagemagick)
87 #:use-module (gnu packages java)
88 #:use-module (gnu packages javascript)
89 #:use-module (gnu packages libevent)
90 #:use-module (gnu packages machine-learning)
91 #:use-module (gnu packages maths)
92 #:use-module (gnu packages mpi)
93 #:use-module (gnu packages multiprecision)
94 #:use-module (gnu packages networking)
95 #:use-module (gnu packages node)
96 #:use-module (gnu packages pcre)
97 #:use-module (gnu packages pdf)
98 #:use-module (gnu packages perl)
99 #:use-module (gnu packages pkg-config)
100 #:use-module (gnu packages pulseaudio) ;libsndfile
101 #:use-module (gnu packages protobuf)
102 #:use-module (gnu packages python)
103 #:use-module (gnu packages python-xyz)
104 #:use-module (gnu packages sqlite)
105 #:use-module (gnu packages statistics)
106 #:use-module (gnu packages tcl)
107 #:use-module (gnu packages textutils)
108 #:use-module (gnu packages tls)
109 #:use-module (gnu packages uglifyjs)
110 #:use-module (gnu packages version-control)
111 #:use-module (gnu packages video)
112 #:use-module (gnu packages web)
113 #:use-module (gnu packages xml)
114 #:use-module (gnu packages xorg))
115
116 (define-public r-afpt
117 (package
118 (name "r-afpt")
119 (version "1.1.0.1")
120 (source (origin
121 (method url-fetch)
122 (uri (cran-uri "afpt" version))
123 (sha256
124 (base32
125 "0cg5cdm9nl1hs6f3j0ljpw4bkqvh3ksyj615b9nnbqs5k28lyds9"))))
126 (properties `((upstream-name . "afpt")))
127 (build-system r-build-system)
128 (native-inputs (list r-knitr))
129 (home-page "https://github.com/MarcoKlH/afpt-r/")
130 (synopsis "Tools for modelling of animal flight performance")
131 (description
132 "This package allows estimation and modelling of flight costs in animal
133 (vertebrate) flight, implementing the aerodynamic power model. Flight
134 performance is estimated based on basic morphological measurements such as
135 body mass, wingspan and wing area. @code{Afpt} can be used to make
136 predictions on how animals should adjust their flight behaviour and wingbeat
137 kinematics to varying flight conditions.")
138 (license license:gpl3+)))
139
140 (define-public r-aod
141 (package
142 (name "r-aod")
143 (version "1.3.2")
144 (source
145 (origin
146 (method url-fetch)
147 (uri (cran-uri "aod" version))
148 (sha256
149 (base32 "0p2i536s0aa54rah1l465g77k2ldn6jm6s25y9vc06mk29xvx1cv"))))
150 (properties `((upstream-name . "aod")))
151 (build-system r-build-system)
152 (home-page "https://cran.r-project.org/package=aod")
153 (synopsis "Analysis of overdispersed data")
154 (description
155 "This package provides a set of functions to analyze overdispersed counts
156 or proportions. Most of the methods are already available elsewhere but are
157 scattered in different packages. The proposed functions should be considered
158 as complements to more sophisticated methods such as @dfn{generalized
159 estimating equations} (GEE) or @dfn{generalized linear mixed effect
160 models} (GLMM).")
161 (license license:gpl2+)))
162
163 (define-public r-brio
164 (package
165 (name "r-brio")
166 (version "1.1.3")
167 (source
168 (origin
169 (method url-fetch)
170 (uri (cran-uri "brio" version))
171 (sha256
172 (base32
173 "1inwzvlf6zj6gi47gd0byzqv02qajb3l475z8pjvx2b1hm0r1a7a"))))
174 (properties `((upstream-name . "brio")))
175 (build-system r-build-system)
176 (home-page "https://github.com/r-lib/brio")
177 (synopsis "Basic R input output")
178 (description
179 "This package provides functions to handle basic input output. These
180 functions always read and write UTF-8 (8-bit Unicode Transformation Format)
181 files and provide more explicit control over line endings.")
182 (license license:expat)))
183
184 (define-public r-cachem
185 (package
186 (name "r-cachem")
187 (version "1.0.6")
188 (source
189 (origin
190 (method url-fetch)
191 (uri (cran-uri "cachem" version))
192 (sha256
193 (base32
194 "0r0q5w8lsxak46crnkbi739qzys90hlw7cqqqhv99xzkpkvm554s"))))
195 (properties `((upstream-name . "cachem")))
196 (build-system r-build-system)
197 (propagated-inputs
198 (list r-fastmap r-rlang))
199 (home-page "https://cachem.r-lib.org/")
200 (synopsis "Cache R objects with automatic pruning")
201 (description
202 "This package provides key-value stores with automatic pruning. Caches
203 can limit either their total size or the age of the oldest object (or both),
204 automatically pruning objects to maintain the constraints.")
205 (license license:expat)))
206
207 (define-public r-collections
208 (package
209 (name "r-collections")
210 (version "0.3.5")
211 (source
212 (origin
213 (method url-fetch)
214 (uri (cran-uri "collections" version))
215 (sha256
216 (base32 "053ig88pva78wxxwya3v7cz853k563dkpgxrf2xvd0l0d9fanxmz"))))
217 (properties `((upstream-name . "collections")))
218 (build-system r-build-system)
219 (home-page "https://github.com/randy3k/collections")
220 (synopsis "High performance container data types")
221 (description
222 "This package provides high performance container data types such as
223 queues, stacks, deques, dicts and ordered dicts.")
224 (license license:expat)))
225
226 (define-public r-curry
227 (package
228 (name "r-curry")
229 (version "0.1.1")
230 (source
231 (origin
232 (method url-fetch)
233 (uri (cran-uri "curry" version))
234 (sha256
235 (base32
236 "1ps9hvbnb02m0b8hlw4admwbziyjvswj08ldi2dk3ymnrpawcc29"))))
237 (properties `((upstream-name . "curry")))
238 (build-system r-build-system)
239 (home-page "https://github.com/thomasp85/curry")
240 (synopsis "Partial function application")
241 (description
242 "Partial application is the process of reducing the arity of a function
243 by fixing one or more arguments, thus creating a new function lacking the
244 fixed arguments. The @code{curry} package provides three different ways of
245 performing partial function application by fixing arguments from either end of
246 the argument list (currying and tail currying) or by fixing multiple named
247 arguments (partial application). This package provides this functionality
248 through the @code{%<%}, @code{%-<%}, and @code{%><%} operators which allows
249 for a programming style comparable to modern functional languages. Compared
250 to other implementations such a @code{purrr::partial()} the operators in
251 @code{curry} composes functions with named arguments, aiding in autocomplete
252 etc.")
253 (license license:gpl2+)))
254
255 (define-public r-datawizard
256 (package
257 (name "r-datawizard")
258 (version "0.4.1")
259 (source
260 (origin
261 (method url-fetch)
262 (uri (cran-uri "datawizard" version))
263 (sha256
264 (base32
265 "09lyh1awm2rplfzgwbdw4iy76mbaqwjd4hwlrsgvxj9pwdnjs4cx"))))
266 (properties `((upstream-name . "datawizard")))
267 (build-system r-build-system)
268 (propagated-inputs
269 (list r-insight))
270 (native-inputs
271 (list r-knitr))
272 (home-page "https://easystats.github.io/datawizard/")
273 (synopsis "Easy data wrangling")
274 (description
275 "This package provides a lightweight package to easily manipulate,
276 clean, transform, and prepare your data for analysis. It also forms the data
277 wrangling backend for the packages in the @code{easystats} ecosystem.")
278 (license license:gpl3)))
279
280 (define-public r-dbscan
281 (package
282 (name "r-dbscan")
283 (version "1.1-10")
284 (source
285 (origin
286 (method url-fetch)
287 (uri (cran-uri "dbscan" version))
288 (sha256
289 (base32 "1h8x1v9kk5zmw5qd575cyr16yz8l226lsaq71n079l4i8crcrzg1"))))
290 (properties `((upstream-name . "dbscan")))
291 (build-system r-build-system)
292 (propagated-inputs (list r-rcpp))
293 (native-inputs (list r-knitr))
294 (home-page "https://github.com/mhahsler/dbscan")
295 (synopsis "Density-based spatial clustering of applications with noise")
296 (description
297 "This package provides a fast reimplementation of several density-based
298 algorithms of the DBSCAN family. It includes the clustering algorithms DBSCAN
299 (density-based spatial clustering of applications with noise) and
300 @dfn{hierarchical DBSCAN} (HDBSCAN), the ordering algorithm @dfn{ordering
301 points to identify the clustering structure} (OPTICS), shared nearest neighbor
302 clustering, and the outlier detection algorithms @dfn{local outlier
303 factor} (LOF) and @dfn{global-local outlier score from hierarchies} (GLOSH).
304 The implementations use the kd-tree data structure for faster k-nearest
305 neighbor search. An R interface to fast kNN and fixed-radius NN search is
306 also provided.")
307 (license license:gpl2+)))
308
309 (define-public r-diffobj
310 (package
311 (name "r-diffobj")
312 (version "0.3.5")
313 (source
314 (origin
315 (method url-fetch)
316 (uri (cran-uri "diffobj" version))
317 (sha256
318 (base32
319 "0q6gwd9pqh41f6j5p9jl92aji4p8kx9inffpha93d7jc3ndsfq6q"))))
320 (properties `((upstream-name . "diffobj")))
321 (build-system r-build-system)
322 (propagated-inputs (list r-crayon))
323 (native-inputs (list r-knitr))
324 (home-page "https://github.com/brodieG/diffobj")
325 (synopsis "Diffs for R objects")
326 (description
327 "Generate a colorized diff of two R objects for an intuitive
328 visualization of their differences.")
329 (license license:gpl2+)))
330
331 (define-public r-dirichletreg
332 (package
333 (name "r-dirichletreg")
334 (version "0.7-1")
335 (source
336 (origin
337 (method url-fetch)
338 (uri (cran-uri "DirichletReg" version))
339 (sha256
340 (base32 "1ql5mwb7zb06y9j6inrlngq7c15as4j17wd8kc71fxs0a2jdj7xi"))))
341 (properties `((upstream-name . "DirichletReg")))
342 (build-system r-build-system)
343 (propagated-inputs (list r-formula r-maxlik))
344 (native-inputs (list r-knitr))
345 (home-page "https://cran.r-project.org/package=DirichletReg")
346 (synopsis "Dirichlet regression")
347 (description "This package implements Dirichlet regression models.")
348 (license license:gpl2+)))
349
350 (define-public r-dixontest
351 (package
352 (name "r-dixontest")
353 (version "1.0.3")
354 (source
355 (origin
356 (method url-fetch)
357 (uri (cran-uri "dixonTest" version))
358 (sha256
359 (base32 "1a3yc30g5rbb0jhm2b0iir5i1dy4jyl67spkhx4yysg4snz131wv"))))
360 (properties `((upstream-name . "dixonTest")))
361 (build-system r-build-system)
362 (native-inputs (list gfortran))
363 (home-page "https://cran.r-project.org/package=dixonTest")
364 (synopsis "Dixon's ratio test for outlier detection")
365 (description
366 "For outlier detection in small and normally distributed samples the ratio
367 test of Dixon (Q-test) can be used. Density, distribution function, quantile
368 function and random generation for Dixon's ratio statistics are provided as
369 wrapper functions. The core applies McBane's Fortran functions that use
370 Gaussian quadrature for a numerical solution.")
371 (license license:gpl3)))
372
373 (define-public r-emdist
374 (package
375 (name "r-emdist")
376 (version "0.3-2")
377 (source
378 (origin
379 (method url-fetch)
380 (uri (cran-uri "emdist" version))
381 (sha256
382 (base32
383 "05mv6xhm15b0mq9kzyiblkb14bdqmjrwl64ghdk66il0w8i7p6nh"))))
384 (properties `((upstream-name . "emdist")))
385 (build-system r-build-system)
386 (home-page "http://www.rforge.net/emd")
387 (synopsis "Earth mover's distance")
388 (description
389 "This package provides tools to calculate the Earth Mover's
390 Distance (EMD).")
391 (license license:expat)))
392
393 (define-public r-googledrive
394 (package
395 (name "r-googledrive")
396 (version "2.0.0")
397 (source
398 (origin
399 (method url-fetch)
400 (uri (cran-uri "googledrive" version))
401 (sha256
402 (base32
403 "09jsiknzyfgxd0nzdr3wrrjw24allch2x74h96qg8vh8dad4cp30"))))
404 (properties `((upstream-name . "googledrive")))
405 (build-system r-build-system)
406 (propagated-inputs
407 (list r-cli
408 r-gargle
409 r-glue
410 r-httr
411 r-jsonlite
412 r-lifecycle
413 r-magrittr
414 r-pillar
415 r-purrr
416 r-rlang
417 r-tibble
418 r-uuid
419 r-vctrs
420 r-withr))
421 (native-inputs
422 (list r-knitr))
423 (home-page "https://googledrive.tidyverse.org")
424 (synopsis "Interface to Google Drive")
425 (description "This package lets you manage Google Drive files from R.")
426 (license license:expat)))
427
428 (define-public r-guix-install
429 (package
430 (name "r-guix-install")
431 (version "1.0.0")
432 (source
433 (origin
434 (method url-fetch)
435 (uri (cran-uri "guix.install" version))
436 (sha256
437 (base32 "0s3wb5781yc43c9zwrn7i87zcbrlx7xr0ms0v9hvgs7qsv02id9j"))))
438 (properties `((upstream-name . "guix.install")))
439 (build-system r-build-system)
440 (propagated-inputs (list r-runit))
441 (home-page "https://github.com/BIMSBbioinfo/guix.install")
442 (synopsis "Install R packages with GNU Guix")
443 (description
444 "This R package provides a single procedure @code{guix.install()}, which
445 allows users to install R packages via Guix right from within their running R
446 session. If the requested R package does not exist in Guix at this time, the
447 package and all its missing dependencies will be imported recursively and the
448 generated package definitions will be written to @file{~/.Rguix/packages.scm}.
449 This record of imported packages can be used later to reproduce the
450 environment, and to add the packages in question to a proper Guix channel (or
451 Guix itself). @code{guix.install()} not only supports installing packages
452 from CRAN, but also from Bioconductor or even arbitrary git or mercurial
453 repositories, replacing the need for installation via @code{devtools}.")
454 (license license:gpl3+)))
455
456 (define-public r-ids
457 (package
458 (name "r-ids")
459 (version "1.0.1")
460 (source
461 (origin
462 (method url-fetch)
463 (uri (cran-uri "ids" version))
464 (sha256
465 (base32
466 "1s6ga94gds5ydr9f8qbjfgfpg2dvbnkcrlybqlb33hk3c0c2l8dn"))))
467 (properties `((upstream-name . "ids")))
468 (build-system r-build-system)
469 (propagated-inputs
470 (list r-openssl r-uuid))
471 (native-inputs (list r-knitr))
472 (home-page "https://github.com/richfitz/ids")
473 (synopsis "Generate random identifiers")
474 (description
475 "This package lets you generate random or human readable and
476 pronounceable identifiers.")
477 (license license:expat)))
478
479 (define-public r-googlesheets4
480 (package
481 (name "r-googlesheets4")
482 (version "1.0.0")
483 (source
484 (origin
485 (method url-fetch)
486 (uri (cran-uri "googlesheets4" version))
487 (sha256
488 (base32
489 "0yncqwv9l5knyrv88ys5gwcv44hl1j0mbklpins6v7f9m9v7s40a"))))
490 (properties `((upstream-name . "googlesheets4")))
491 (build-system r-build-system)
492 (propagated-inputs
493 (list r-cellranger
494 r-cli
495 r-curl
496 r-gargle
497 r-glue
498 r-googledrive
499 r-httr
500 r-ids
501 r-magrittr
502 r-purrr
503 r-rematch2
504 r-rlang
505 r-tibble
506 r-vctrs))
507 (home-page "https://github.com/tidyverse/googlesheets4")
508 (synopsis "Access Google Sheets using the Sheets API V4")
509 (description
510 "This package lets you interact with Google Sheets through the
511 @url{https://developers.google.com/sheets/api,Sheets API v4}. This package
512 can read and write both the metadata and the cell data in a Sheet.")
513 (license license:expat)))
514
515 (define-public r-waldo
516 (package
517 (name "r-waldo")
518 (version "0.4.0")
519 (source
520 (origin
521 (method url-fetch)
522 (uri (cran-uri "waldo" version))
523 (sha256
524 (base32
525 "1aky28rn70l24s0sygl36267cf7hjzhchagsz26abfxwr7p8kvjp"))))
526 (properties `((upstream-name . "waldo")))
527 (build-system r-build-system)
528 (propagated-inputs
529 (list r-cli
530 r-diffobj
531 r-fansi
532 r-glue
533 r-rematch2
534 r-rlang
535 r-tibble))
536 (home-page "https://github.com/r-lib/waldo")
537 (synopsis "Find differences between R objects")
538 (description
539 "Compare complex R objects and reveal the key differences. This package
540 was designed particularly for use in testing packages where being able to
541 quickly isolate key differences makes understanding test failures much
542 easier.")
543 (license license:expat)))
544
545 (define-public r-rticles
546 (package
547 (name "r-rticles")
548 (version "0.23")
549 (source
550 (origin
551 (method url-fetch)
552 (uri (cran-uri "rticles" version))
553 (sha256
554 (base32
555 "1ipblw3rmkma22jl2hf1pyfm6l8k31zcmm3swmwii6k0x7khiav1"))))
556 (properties `((upstream-name . "rticles")))
557 (build-system r-build-system)
558 (propagated-inputs
559 (list r-knitr r-rmarkdown r-tinytex r-xfun r-yaml))
560 (home-page "https://github.com/rstudio/rticles")
561 (synopsis "Article formats for R Markdown")
562 (description
563 "This package provides a suite of custom R Markdown formats and templates
564 for authoring journal articles and conference submissions.")
565 (license license:gpl3)))
566
567 (define-public r-babelwhale
568 (package
569 (name "r-babelwhale")
570 (version "1.0.3")
571 (source
572 (origin
573 (method url-fetch)
574 (uri (cran-uri "babelwhale" version))
575 (sha256
576 (base32 "0ph825dwvr48fhamy1l5564linz7cj7b9sj511as77f1yqycv4a2"))))
577 (properties `((upstream-name . "babelwhale")))
578 (build-system r-build-system)
579 (propagated-inputs
580 (list r-crayon r-dplyr r-dynutils r-processx r-purrr))
581 (home-page "https://github.com/dynverse/babelwhale")
582 (synopsis "Talking to Docker and Singularity containers")
583 (description
584 "This package provides a unified interface to interact with Docker and
585 Singularity containers. You can execute a command inside a container, mount a
586 volume or copy a file.")
587 (license license:expat)))
588
589 (define-public r-benchmarkmedata
590 (package
591 (name "r-benchmarkmedata")
592 (version "1.0.4")
593 (source (origin
594 (method url-fetch)
595 (uri (cran-uri "benchmarkmeData" version))
596 (sha256
597 (base32
598 "1n4vjkagqlm6kw2hilf4gjfcdjad0bcg652j9nl2ygbq3kdnh1vf"))))
599 (build-system r-build-system)
600 (propagated-inputs
601 (list r-dplyr r-tibble))
602 (home-page "https://github.com/csgillespie/benchmarkme-data")
603 (synopsis "Data set for the @code{benchmarkme} package")
604 (description "This package contains the data set for the crowd-sourced
605 benchmarks from running the @code{benchmarkme} package.")
606 (license license:gpl2+)))
607
608 (define-public r-benchmarkme
609 (package
610 (name "r-benchmarkme")
611 (version "1.0.7")
612 (source (origin
613 (method url-fetch)
614 (uri (cran-uri "benchmarkme" version))
615 (sha256
616 (base32
617 "0ymgsxzrvnpyvs0cff09d3lrkl12qyqx5bwammsc4vgl5ng9p69p"))))
618 (build-system r-build-system)
619 (native-inputs
620 (list r-knitr))
621 (propagated-inputs
622 (list r-benchmarkmedata
623 r-doparallel
624 r-dplyr
625 r-foreach
626 r-httr
627 r-matrix
628 r-tibble))
629 (home-page "https://csgillespie.github.io/benchmarkme/")
630 (synopsis "Crowd-sourced system benchmarks")
631 (description "This package provides functionality to benchmark your CPU
632 and compare against other CPUs. Also provides functions for obtaining system
633 specifications, such as RAM, CPU type, and R version.")
634 (license license:gpl2+)))
635
636 (define-public r-bezier
637 (package
638 (name "r-bezier")
639 (version "1.1.2")
640 (source (origin
641 (method url-fetch)
642 (uri (cran-uri "bezier" version))
643 (sha256
644 (base32
645 "1vw5128v8h973xwa1fdm9cw2jvrldj87nd55lddlp3qsz3ag4br6"))))
646 (build-system r-build-system)
647 (home-page "https://cran.r-project.org/web/packages/bezier/")
648 (synopsis "Bezier curve and spline toolkit")
649 (description
650 "This package is a toolkit for working with Bezier curves and splines.
651 The package provides functions for point generation, arc length estimation,
652 degree elevation and curve fitting.")
653 (license license:gpl2+)))
654
655 (define-public r-bwstest
656 (package
657 (name "r-bwstest")
658 (version "0.2.2")
659 (source
660 (origin
661 (method url-fetch)
662 (uri (cran-uri "BWStest" version))
663 (sha256
664 (base32 "02amzlfprmw5pyis0dg0kg0x8xqh50a4vfdcxxmklrzik3b1vzzs"))))
665 (properties `((upstream-name . "BWStest")))
666 (build-system r-build-system)
667 (propagated-inputs (list r-memoise r-rcpp))
668 (home-page "https://github.com/shabbychef/BWStest")
669 (synopsis "Baumgartner Weiss Schindler Test of equal distributions")
670 (description
671 "This package performs the Baumgartner-Weiss-Schindler two-sample test of
672 equal probability distributions (doi:10.2307/2533862). It also performs
673 similar rank-based tests for equal probability distributions due to Neuhauser
674 (doi:10.1080/10485250108832874) and Murakami
675 (doi:10.1080/00949655.2010.551516).")
676 (license license:lgpl3)))
677
678 (define-public r-v8
679 (package
680 (name "r-v8")
681 (version "4.2.0")
682 (source
683 (origin
684 (method url-fetch)
685 (uri (cran-uri "V8" version))
686 (sha256
687 (base32
688 "0hs7ajjw6y3q7mp7z00a9712y4cn6wgcnk5dbjbzlc6cfk4zsqkc"))))
689 (properties `((upstream-name . "V8")))
690 (build-system r-build-system)
691 (arguments
692 `(#:phases
693 (modify-phases %standard-phases
694 (add-after 'unpack 'find-v8
695 (lambda* (#:key inputs #:allow-other-keys)
696 (substitute* "configure"
697 (("^PKG_LIBS=.*")
698 (string-append "PKG_LIBS="
699 (assoc-ref inputs "libnode")
700 "/lib/libnode.so.64\n")))
701 (setenv "INCLUDE_DIR"
702 (string-append
703 (assoc-ref inputs "libnode")
704 "/include/node"))
705 (setenv "LIB_DIR"
706 (string-append
707 (assoc-ref inputs "libnode") "/lib")))))))
708 (inputs
709 (list libnode zlib))
710 (propagated-inputs
711 (list r-curl r-jsonlite r-rcpp))
712 (native-inputs
713 (list r-knitr))
714 (home-page "https://jeroen.cran.dev/V8")
715 (synopsis "Embedded JavaScript and WebAssembly engine for R")
716 (description
717 "This package provides an R interface to V8: Google's JavaScript and
718 WebAssembly engine.")
719 (license license:expat)))
720
721 (define-public r-dot
722 (package
723 (name "r-dot")
724 (version "0.1")
725 (source
726 (origin
727 (method url-fetch)
728 (uri (cran-uri "DOT" version))
729 (sha256
730 (base32
731 "0qh5n57cp9c2n5yn59q4wggz82943pwfanp3kx869aba2x3sj30i"))))
732 (properties `((upstream-name . "DOT")))
733 (build-system r-build-system)
734 (propagated-inputs
735 (list r-v8))
736 (home-page "http://haghish.com/dot")
737 (synopsis "Render and Export DOT Graphs in R")
738 (description
739 "This package provides tools to render DOT diagram markup language in R
740 and also provides the possibility to export the graphs in PostScript and
741 SVG (Scalable Vector Graphics) formats. In addition, it supports literate
742 programming packages such as @code{knitr} and @code{rmarkdown}.")
743 (license license:expat)))
744
745 (define-public r-carrier
746 (package
747 (name "r-carrier")
748 (version "0.1.0")
749 (source
750 (origin
751 (method url-fetch)
752 (uri (cran-uri "carrier" version))
753 (sha256
754 (base32 "0bqnwnnjqjk9q0lxq6kkz9s75ss10lfyyywyyi24m8wppxpw1vqc"))))
755 (properties `((upstream-name . "carrier")))
756 (build-system r-build-system)
757 (propagated-inputs
758 (list r-pryr r-rlang))
759 (home-page "https://github.com/r-lib/carrier")
760 (synopsis "Isolate functions for remote execution")
761 (description
762 "Sending functions to remote processes can be wasteful of resources
763 because they carry their environments with them. With this package, it is
764 easy to create functions that are isolated from their environment. These
765 isolated functions, also called crates, print to the console with their total
766 size and can be easily tested locally before being sent to a remote.")
767 (license license:gpl3)))
768
769 (define-public r-clipr
770 (package
771 (name "r-clipr")
772 (version "0.8.0")
773 (source
774 (origin
775 (method url-fetch)
776 (uri (cran-uri "clipr" version))
777 (sha256
778 (base32
779 "1s9vvv3cxnz8w11gsi8z9ddv9jzib5qf5qqxnwqrrv7vj8cr7hij"))))
780 (build-system r-build-system)
781 (native-inputs
782 (list r-knitr))
783 (home-page "https://github.com/mdlincoln/clipr")
784 (synopsis "Read and write from the system clipboard")
785 (description
786 "This package provides simple utility functions to read from and write to
787 the system clipboards.")
788 (license license:gpl3)))
789
790 (define-public r-dlm
791 (package
792 (name "r-dlm")
793 (version "1.1-5")
794 (source
795 (origin
796 (method url-fetch)
797 (uri (cran-uri "dlm" version))
798 (sha256
799 (base32 "1aksm66sfa7ipl5xgs4j5giac7q2m744wjl40mva56xn6i674h4r"))))
800 (properties `((upstream-name . "dlm")))
801 (build-system r-build-system)
802 (home-page "https://cran.r-project.org/package=dlm")
803 (synopsis "Bayesian and Likelihood Analysis of Dynamic Linear Models")
804 (description
805 "This package provides routines for Maximum likelihood, Kalman filtering
806 and smoothing, and Bayesian analysis of Normal linear State Space models, also
807 known as Dynamic Linear Models.")
808 (license license:gpl2+)))
809
810 (define-public r-zoo
811 (package
812 (name "r-zoo")
813 (version "1.8-10")
814 (source (origin
815 (method url-fetch)
816 (uri (cran-uri "zoo" version))
817 (sha256
818 (base32
819 "0izd66dywq6qd62hdp64apncainrrb9mgmm19wf6a8jc03c858n9"))))
820 (build-system r-build-system)
821 (propagated-inputs
822 (list r-lattice))
823 (home-page "http://zoo.R-Forge.R-project.org/")
824 (synopsis "S3 infrastructure for regular and irregular time series")
825 (description "This package contains an S3 class with methods for totally
826 ordered indexed observations. It is particularly aimed at irregular time
827 series of numeric vectors/matrices and factors.")
828 (license license:gpl2+)))
829
830 (define-public r-fontawesome
831 (package
832 (name "r-fontawesome")
833 (version "0.2.2")
834 (source
835 (origin
836 (method url-fetch)
837 (uri (cran-uri "fontawesome" version))
838 (sha256
839 (base32 "0r6zb5175cr4ybqj6bl0mbhadwv9xjxaf32yjc0y76rw3d6vcbap"))))
840 (properties `((upstream-name . "fontawesome")))
841 (build-system r-build-system)
842 (propagated-inputs
843 (list r-htmltools r-rlang))
844 (home-page "https://github.com/rstudio/fontawesome")
845 (synopsis "Easily work with Font Awesome icons")
846 (description
847 "Easily and flexibly insert Font Awesome icons into R Markdown documents
848 and Shiny apps. These icons can be inserted into HTML content through inline
849 SVG tags or @code{i} tags. There is also a utility function for exporting
850 Font Awesome icons as PNG images for those situations where raster graphics
851 are needed.")
852 (license license:expat)))
853
854 (define-public r-fingerprint
855 (package
856 (name "r-fingerprint")
857 (version "3.5.7")
858 (source
859 (origin
860 (method url-fetch)
861 (uri (cran-uri "fingerprint" version))
862 (sha256
863 (base32 "04jcwkydjrs31pia6kq8z2n9s54im950q08hs2ay15xjxxkmb8ic"))))
864 (properties `((upstream-name . "fingerprint")))
865 (build-system r-build-system)
866 (home-page "https://cran.r-project.org/package=fingerprint")
867 (synopsis "Functions to Operate on Binary Fingerprint Data")
868 (description
869 "This package provides functions to manipulate binary fingerprints of
870 arbitrary length. A fingerprint is represented by an object of S4 class
871 @code{fingerprint}. The bitwise logical functions in R are overridden so that
872 they can be used directly with @code{fingerprint} objects. A number of
873 distance metrics are also available. Fingerprints can be converted to
874 Euclidean vectors (i.e., points on the unit hypersphere) and can also be
875 folded. Arbitrary fingerprint formats can be handled via line handlers.
876 Currently handlers are provided for CDK, MOE and BCI fingerprint data.")
877 ;; Any version of the GPL
878 (license (list license:gpl2+ license:gpl3+))))
879
880 (define-public r-fpeek
881 (package
882 (name "r-fpeek")
883 (version "0.1.2")
884 (source
885 (origin
886 (method url-fetch)
887 (uri (cran-uri "fpeek" version))
888 (sha256
889 (base32 "0kv46g21ndxchg3q8ynq7hjjkh6i2zlc21axn5y1jjzigrw047ii"))))
890 (properties `((upstream-name . "fpeek")))
891 (build-system r-build-system)
892 (propagated-inputs (list r-rcpp))
893 (home-page "https://github.com/davidgohel/fpeek")
894 (synopsis "Check text files content at a glance")
895 (description
896 "This package provides tools to help working with text files. It can
897 return the number of lines; print the first and last lines; convert encoding.
898 Operations are made without reading the entire file before starting, resulting
899 in good performances with large files.")
900 (license license:expat)))
901
902 (define-public r-ggalluvial
903 (package
904 (name "r-ggalluvial")
905 (version "0.12.3")
906 (source (origin
907 (method url-fetch)
908 (uri (cran-uri "ggalluvial" version))
909 (sha256
910 (base32
911 "0mkan9gxg3yxjism22yxbhvlh2lh7wpbrqpb355za790prcmjbh3"))))
912 (properties `((upstream-name . "ggalluvial")))
913 (build-system r-build-system)
914 (propagated-inputs
915 (list r-dplyr
916 r-ggplot2
917 r-lazyeval
918 r-rlang
919 r-tidyr
920 r-tidyselect))
921 (native-inputs
922 (list r-knitr))
923 (home-page "http://corybrunson.github.io/ggalluvial/")
924 (synopsis "Alluvial plots for ggplot2")
925 (description "This package provides alluvial plots for @code{ggplot2}.
926 Alluvial plots use variable-width ribbons and stacked bar plots to represent
927 multi-dimensional or repeated-measures data with categorical or ordinal
928 variables.")
929 (license license:gpl3)))
930
931 (define-public r-ggpp
932 (package
933 (name "r-ggpp")
934 (version "0.4.4")
935 (source
936 (origin
937 (method url-fetch)
938 (uri (cran-uri "ggpp" version))
939 (sha256
940 (base32
941 "0wcaczxjav5yg8h2197cf288mqk13p3iq675q0x0di9g8lnblvk1"))))
942 (properties `((upstream-name . "ggpp")))
943 (build-system r-build-system)
944 (propagated-inputs
945 (list r-dplyr
946 r-ggplot2
947 r-glue
948 r-gridextra
949 r-lubridate
950 r-magrittr
951 r-mass
952 r-polynom
953 r-rlang
954 r-scales
955 r-stringr
956 r-tibble
957 r-xts
958 r-zoo))
959 (native-inputs
960 (list r-knitr))
961 (home-page "https://docs.r4photobiology.info/ggpp/")
962 (synopsis "Grammar extensions to ggplot2")
963 (description
964 "This package contains extensions to ggplot2.
965
966 @enumerate
967 @item Geomas: @code{geom_table}, @code{geom_plot} and @code{geom_grob} add
968 insets to plots using native data coordinates, while @code{geom_table_npc},
969 @code{geom_plot_npc} and @code{geom_grob_npc} do the same using @code{npc}
970 coordinates through new aesthetics @code{npcx} and @code{npcy}.
971 @item Statistics: select observations based on 2D density.
972 @item Positions: radial nudging away from a center point and nudging away from
973 a line or curve.
974 @end enumerate
975 ")
976 (license license:gpl2+)))
977
978 (define-public r-lmds
979 (package
980 (name "r-lmds")
981 (version "0.1.0")
982 (source
983 (origin
984 (method url-fetch)
985 (uri (cran-uri "lmds" version))
986 (sha256
987 (base32 "130azb0nc2wwxv0qi8v5s4rd02p9lc92zwn634pv7b8awbw81i65"))))
988 (properties `((upstream-name . "lmds")))
989 (build-system r-build-system)
990 (propagated-inputs
991 (list r-assertthat r-dynutils r-irlba r-matrix))
992 (home-page "https://github.com/dynverse/lmds")
993 (synopsis "Landmark multi-dimensional scaling")
994 (description
995 "This package provides a fast dimensionality reduction method scalable
996 to large numbers of samples. @dfn{Landmark Multi-Dimensional Scaling} (LMDS)
997 is an extension of classical Torgerson MDS, but rather than calculating a
998 complete distance matrix between all pairs of samples, only the distances
999 between a set of landmarks and the samples are calculated.")
1000 (license license:gpl3)))
1001
1002 (define-public r-lmodel2
1003 (package
1004 (name "r-lmodel2")
1005 (version "1.7-3")
1006 (source
1007 (origin
1008 (method url-fetch)
1009 (uri (cran-uri "lmodel2" version))
1010 (sha256
1011 (base32 "1fiin2nkffbihz1s8ixmw9lgf8mn3j9krr8iiflizk10mdv54hnb"))))
1012 (properties `((upstream-name . "lmodel2")))
1013 (build-system r-build-system)
1014 (home-page "https://cran.r-project.org/package=lmodel2")
1015 (synopsis "Model II regression")
1016 (description
1017 "This package computes model II simple linear regression using
1018 @dfn{ordinary least squares} (OLS), @dfn{major axis} (MA), @dfn{standard major
1019 axis} (SMA), and @dfn{ranged major axis} (RMA).")
1020 (license license:gpl2)))
1021
1022 (define-public r-ggpmisc
1023 (package
1024 (name "r-ggpmisc")
1025 (version "0.4.6")
1026 (source (origin
1027 (method url-fetch)
1028 (uri (cran-uri "ggpmisc" version))
1029 (sha256
1030 (base32
1031 "1iq39rx4nj1lf37hnj4df0c7gbk9374d0mzcnhdr7aqpxaxgs3ys"))))
1032 (build-system r-build-system)
1033 (propagated-inputs
1034 (list r-dplyr
1035 r-generics
1036 r-ggplot2
1037 r-ggpp
1038 r-lmodel2
1039 r-lubridate
1040 r-mass
1041 r-plyr
1042 r-polynom
1043 r-quantreg
1044 r-rlang
1045 r-scales
1046 r-splus2r
1047 r-tibble))
1048 (native-inputs
1049 (list r-knitr))
1050 (home-page "https://www.r4photobiology.info/")
1051 (synopsis "Miscellaneous Extensions to @code{ggplot2}")
1052 (description "This package provides extensions to @code{ggplot2},
1053 respecting the grammar of its graphics paradigm.")
1054 (license license:gpl2+)))
1055
1056 (define-public r-ggside
1057 (package
1058 (name "r-ggside")
1059 (version "0.2.0")
1060 (source (origin
1061 (method url-fetch)
1062 (uri (cran-uri "ggside" version))
1063 (sha256
1064 (base32
1065 "1x505zizv7hf65pxp9j5v92c3bchhxh9dsrkk1m55kwqqnsl5nza"))))
1066 (properties `((upstream-name . "ggside")))
1067 (build-system r-build-system)
1068 (propagated-inputs (list r-ggplot2 r-glue r-gtable r-rlang r-scales))
1069 (native-inputs (list r-knitr))
1070 (home-page "https://cran.r-project.org/package=ggside")
1071 (synopsis "Side grammar graphics that extends @code{ggplot2}")
1072 (description
1073 "The grammar of graphics as shown in @code{ggplot2} has provided an
1074 expressive API for users to build plots. This package @{ggside} extends
1075 @code{ggplot2} by allowing users to add graphical information about one of the
1076 main panel's axis using a familiar @code{ggplot2} style API with tidy data.
1077 This package is particularly useful for visualizing metadata on a discrete
1078 axis, or summary graphics on a continuous axis such as a boxplot or a density
1079 distribution.")
1080 (license license:expat)))
1081
1082 (define-public r-gprofiler
1083 (package
1084 (name "r-gprofiler")
1085 (version "0.7.0")
1086 (source
1087 (origin
1088 (method url-fetch)
1089 (uri (cran-uri "gProfileR" version))
1090 (sha256
1091 (base32
1092 "1h1v0kgpsn04ald2izznh7fr2riwisj5hcgz4k7h3qc931rf0r4k"))))
1093 (properties `((upstream-name . "gProfileR")))
1094 (build-system r-build-system)
1095 (propagated-inputs
1096 (list r-plyr r-rcurl))
1097 (home-page "https://cran.r-project.org/web/packages/gProfileR/")
1098 (synopsis "Interface to the g:Profiler toolkit")
1099 (description
1100 "This package provides tools for functional enrichment analysis,
1101 gene identifier conversion and mapping homologous genes across related
1102 organisms via the @code{g:Profiler} toolkit.")
1103 (license license:gpl2+)))
1104
1105 (define-public r-gprofiler2
1106 (package
1107 (name "r-gprofiler2")
1108 (version "0.2.1")
1109 (source
1110 (origin
1111 (method url-fetch)
1112 (uri (cran-uri "gprofiler2" version))
1113 (sha256
1114 (base32
1115 "0r0h34b35xzgd9rh55yndn0anxy0z45zdlqa6qfmpn91b6v1bb1g"))))
1116 (properties `((upstream-name . "gprofiler2")))
1117 (build-system r-build-system)
1118 (propagated-inputs
1119 (list r-crosstalk
1120 r-dplyr
1121 r-ggplot2
1122 r-gridextra
1123 r-jsonlite
1124 r-plotly
1125 r-rcurl
1126 r-tidyr
1127 r-viridislite))
1128 (native-inputs (list r-knitr))
1129 (home-page "https://cran.r-project.org/web/packages/gprofiler2/")
1130 (synopsis "Interface to the g:Profiler toolset")
1131 (description
1132 "This package provides a toolset for functional enrichment analysis and
1133 visualization, gene/protein/SNP identifier conversion and mapping orthologous
1134 genes across species via @url{https://biit.cs.ut.ee/gprofiler,g:Profiler}.
1135 The main tools are:
1136
1137 @enumerate
1138 @item @code{g:GOSt}, functional enrichment analysis and visualization of gene
1139 lists;
1140 @item @code{g:Convert}, gene/protein/transcript identifier conversion across
1141 various namespaces;
1142 @item @code{g:Orth}, orthology search across species;
1143 @item @code{g:SNPense}, mapping SNP rs identifiers to chromosome positions,
1144 genes and variant effects.
1145 @end enumerate
1146
1147 This package is an R interface corresponding to the 2019 update of
1148 @code{g:Profiler} and provides access to versions @code{e94_eg41_p11} and
1149 higher.")
1150 (license license:gpl2+)))
1151
1152 (define-public r-oenb
1153 (package
1154 (name "r-oenb")
1155 (version "0.0.2")
1156 (source
1157 (origin
1158 (method url-fetch)
1159 (uri (cran-uri "oenb" version))
1160 (sha256
1161 (base32
1162 "1jgxw7ycx2lcdzglg9nix8k08fs4r6i5jdsjzrd6w1dg6smsinl5"))))
1163 (properties `((upstream-name . "oenb")))
1164 (build-system r-build-system)
1165 (propagated-inputs
1166 (list r-dplyr r-xml))
1167 (native-inputs (list r-knitr))
1168 (home-page "https://github.com/franzmohr/oenb")
1169 (synopsis "Tools for the OeNB Data Web Service")
1170 (description
1171 "Tools to access data from the data web service of the
1172 @acronym{OeNB, Oesterreichische Nationalbank},
1173 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
1174 (license license:gpl2+)))
1175
1176 (define-public r-orgmassspecr
1177 (package
1178 (name "r-orgmassspecr")
1179 (version "0.5-3")
1180 (source (origin
1181 (method url-fetch)
1182 (uri (cran-uri "OrgMassSpecR" version))
1183 (sha256
1184 (base32
1185 "1dx9d8rb1dfqyhyc26zhfnxiv3rz2ikvs2mwqnsrq3lsjs9dvyc8"))))
1186 (properties `((upstream-name . "OrgMassSpecR")))
1187 (build-system r-build-system)
1188 (native-inputs (list r-knitr))
1189 (home-page "http://OrgMassSpec.github.io/")
1190 (synopsis "Organic or biological mass spectrometry data analysis")
1191 (description
1192 "This package @code{OrgMassSpecR} is an extension of the @code{R}
1193 statistical computing language. It contains functions to assist with organic
1194 or biological mass spectrometry data analysis. Mass spectral libraries are
1195 available as companion packages.")
1196 (license license:bsd-2)))
1197
1198 (define-public r-scales
1199 (package
1200 (name "r-scales")
1201 (version "1.2.0")
1202 (source
1203 (origin
1204 (method url-fetch)
1205 (uri (cran-uri "scales" version))
1206 (sha256
1207 (base32 "1pq2rrix6a5gsi8xw38viiydp1bsxxmcmyy7dv9q8gkb1qj50p8q"))))
1208 (build-system r-build-system)
1209 (propagated-inputs
1210 (list r-farver
1211 r-labeling
1212 r-lifecycle
1213 r-munsell
1214 r-rcolorbrewer
1215 r-rlang
1216 r-r6
1217 r-viridislite))
1218 (home-page "https://github.com/hadley/scales")
1219 (synopsis "Scale functions for visualization")
1220 (description
1221 "This package provides graphical scales that map data to aesthetics, and
1222 provides methods for automatically determining breaks and labels for axes and
1223 legends.")
1224 (license license:expat)))
1225
1226 (define-public r-pacman
1227 (package
1228 (name "r-pacman")
1229 (version "0.5.1")
1230 (source (origin
1231 (method url-fetch)
1232 (uri (cran-uri "pacman" version))
1233 (sha256
1234 (base32
1235 "0z7gngd6h83cpjhq1vg75wvzhdjbgjh7gj5d4zvvi9gd2lmagjcy"))))
1236 (build-system r-build-system)
1237 (propagated-inputs
1238 (list r-remotes))
1239 (home-page "https://github.com/trinker/pacman")
1240 (synopsis "Package Management Tool")
1241 (description "This package provides tools to more conveniently perform
1242 tasks associated with add-on packages. @code{pacman} conveniently wraps
1243 library and package related functions and names them in an intuitive and
1244 consistent fashion. It seeks to combine functionality from lower level
1245 functions which can speed up workflow.")
1246 (license license:gpl2)))
1247
1248 (define-public r-paralleldist
1249 (package
1250 (name "r-paralleldist")
1251 (version "0.2.6")
1252 (source
1253 (origin
1254 (method url-fetch)
1255 (uri (cran-uri "parallelDist" version))
1256 (sha256
1257 (base32 "01ly4hxwa64a0ya5gla8rvv72s9mcknsfznivjkh937pbjwb7iih"))))
1258 (properties `((upstream-name . "parallelDist")))
1259 (build-system r-build-system)
1260 (propagated-inputs (list r-rcpp r-rcpparmadillo r-rcppparallel))
1261 (home-page "https://github.com/alexeckert/parallelDist")
1262 (synopsis "Parallel Distance Matrix Computation using multiple threads")
1263 (description
1264 "This package provides a fast parallelized alternative to R's native
1265 @code{dist} function to calculate distance matrices for continuous, binary,
1266 and multi-dimensional input matrices, which supports a broad variety of
1267 predefined distance functions from other R packages, as well as user- defined
1268 functions written in C++. For ease of use, the @code{parDist} function
1269 extends the signature of the @code{dist} function and uses the same parameter
1270 naming conventions as distance methods of existing R packages.")
1271 (license license:gpl2+)))
1272
1273 (define-public r-pheatmap
1274 (package
1275 (name "r-pheatmap")
1276 (version "1.0.12")
1277 (source
1278 (origin
1279 (method url-fetch)
1280 (uri (cran-uri "pheatmap" version))
1281 (sha256
1282 (base32
1283 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
1284 (build-system r-build-system)
1285 (propagated-inputs
1286 (list r-gtable r-rcolorbrewer r-scales))
1287 (home-page "https://cran.r-project.org/web/packages/pheatmap")
1288 (synopsis "Pretty heatmaps")
1289 (description
1290 "This package provides an implementation of heatmaps that offers more
1291 control over dimensions and appearance.")
1292 (license license:gpl2+)))
1293
1294 (define-public r-pnwcolors
1295 (package
1296 (name "r-pnwcolors")
1297 (version "0.1.0")
1298 (source
1299 (origin
1300 (method url-fetch)
1301 (uri (cran-uri "PNWColors" version))
1302 (sha256
1303 (base32
1304 "1phplnclkficfv8s6wsyrckk4ixzbayiy5iix6dddg40485l9nyj"))))
1305 (properties `((upstream-name . "PNWColors")))
1306 (build-system r-build-system)
1307 (home-page "https://github.com/jakelawlor/PNWColors")
1308 (synopsis "Color palettes for data visualizations")
1309 (description
1310 "This package provides color palettes. They are checked for colorblind
1311 accessibility from hue, saturation, and lightness value scaling using the
1312 Chroma.js Color Palette Helper. See @url{https://gka.github.io/palettes}.")
1313 (license license:cc0)))
1314
1315 (define-public r-plotfunctions
1316 (package
1317 (name "r-plotfunctions")
1318 (version "1.4")
1319 (source
1320 (origin
1321 (method url-fetch)
1322 (uri (cran-uri "plotfunctions" version))
1323 (sha256
1324 (base32 "0asmxw8283fpvl83h478j5nyg59xqifqaa8f2f6l199gvvswhhg2"))))
1325 (properties `((upstream-name . "plotfunctions")))
1326 (build-system r-build-system)
1327 (native-inputs (list r-knitr))
1328 (home-page "https://jacolienvanrij.com/tutorials.html")
1329 (synopsis "Various functions to facilitate visualization of data and analysis")
1330 (description
1331 "When analyzing data, plots are a helpful tool for visualizing data and
1332 interpreting statistical models. This package provides a set of simple tools
1333 for building plots incrementally, starting with an empty plot region, and
1334 adding bars, data points, regression lines, error bars, gradient legends,
1335 density distributions in the margins, and even pictures. The package builds
1336 further on R graphics by simply combining functions and settings in order to
1337 reduce the amount of code to produce for the user. As a result, the package
1338 does not use formula input or special syntax, but can be used in combination
1339 with default R plot functions.")
1340 (license license:gpl2+)))
1341
1342 (define-public r-polychrome
1343 (package
1344 (name "r-polychrome")
1345 (version "1.5.1")
1346 (source
1347 (origin
1348 (method url-fetch)
1349 (uri (cran-uri "Polychrome" version))
1350 (sha256
1351 (base32 "0hyi02m2jpdhk1ky6ihz6dv5pwqwjwk4csjim2qr8ywx8midmrvg"))))
1352 (properties `((upstream-name . "Polychrome")))
1353 (build-system r-build-system)
1354 (propagated-inputs
1355 (list r-colorspace r-scatterplot3d))
1356 (native-inputs
1357 (list r-knitr))
1358 (home-page "http://oompa.r-forge.r-project.org/")
1359 (synopsis "Qualitative palettes with many colors")
1360 (description
1361 "This package provides tools for creating, viewing, and assessing
1362 qualitative palettes with many (20-30 or more) colors. See Coombes and
1363 colleagues (2019) @url{https://doi:10.18637/jss.v090.c01}.")
1364 (license license:asl2.0)))
1365
1366 (define-public r-ecp
1367 (package
1368 (name "r-ecp")
1369 (version "3.1.3")
1370 (source (origin
1371 (method url-fetch)
1372 (uri (cran-uri "ecp" version))
1373 (sha256
1374 (base32
1375 "0n602jssl6rf596nwm6hbl7s9vdlqi20w8mrhxicj373mw5v22m8"))))
1376 (build-system r-build-system)
1377 (propagated-inputs
1378 (list r-rcpp))
1379 (home-page "https://cran.r-project.org/web/packages/ecp/")
1380 (synopsis "Multiple change-point analysis of multivariate data")
1381 (description
1382 "This package implements various procedures for finding multiple
1383 change-points. Two methods make use of dynamic programming and pruning, with
1384 no distributional assumptions other than the existence of certain absolute
1385 moments in one method. Hierarchical and exact search methods are included.
1386 All methods return the set of estimated change-points as well as other summary
1387 information.")
1388 (license license:gpl2+)))
1389
1390 (define-public r-ellipsis
1391 (package
1392 (name "r-ellipsis")
1393 (version "0.3.2")
1394 (source
1395 (origin
1396 (method url-fetch)
1397 (uri (cran-uri "ellipsis" version))
1398 (sha256
1399 (base32
1400 "0n0mm9jngklv7j9wa64jdji035z0smmnsp2dfwcz9isrxgjnc0m9"))))
1401 (build-system r-build-system)
1402 (propagated-inputs
1403 (list r-rlang))
1404 (home-page "https://github.com/hadley/ellipsis")
1405 (synopsis "Tools for working with additional arguments")
1406 (description
1407 "In S3 generics, it's useful to take @code{...} so that methods can have
1408 additional arguments. But this flexibility comes at a cost: misspelled
1409 arguments will be silently ignored. The @code{ellipsis} package is an
1410 experiment that allows a generic to warn if any arguments passed in @code{...}
1411 are not used.")
1412 (license license:gpl3)))
1413
1414 (define-public r-ga
1415 (package
1416 (name "r-ga")
1417 (version "3.2.2")
1418 (source
1419 (origin
1420 (method url-fetch)
1421 (uri (cran-uri "GA" version))
1422 (sha256
1423 (base32 "135z03lnbj44jihnk6dii5a684jmc666ncpdwyyi910vl4sccib2"))))
1424 (properties `((upstream-name . "GA")))
1425 (build-system r-build-system)
1426 (propagated-inputs
1427 (list r-cli
1428 r-crayon
1429 r-foreach
1430 r-iterators
1431 r-rcpp
1432 r-rcpparmadillo))
1433 (native-inputs
1434 (list r-knitr))
1435 (home-page "https://luca-scr.github.io/GA/")
1436 (synopsis "Genetic algorithms for stochastic optimisation")
1437 (description
1438 "Flexible general-purpose toolbox implementing genetic algorithms (GAs)
1439 for stochastic optimisation. Binary, real-valued, and permutation
1440 representations are available to optimize a fitness function, i.e., a function
1441 provided by users depending on their objective function. Several genetic
1442 operators are available and can be combined to explore the best settings for
1443 the current task. Furthermore, users can define new genetic operators and
1444 easily evaluate their performances. Local search using general-purpose
1445 optimisation algorithms can be applied stochastically to exploit interesting
1446 regions. GAs can be run sequentially or in parallel, using an explicit
1447 master-slave parallelisation or a coarse-grain islands approach.")
1448 (license license:gpl2+)))
1449
1450 (define-public r-grr
1451 (package
1452 (name "r-grr")
1453 (version "0.9.5")
1454 (source
1455 (origin
1456 (method url-fetch)
1457 (uri (cran-uri "grr" version))
1458 (sha256
1459 (base32
1460 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
1461 (build-system r-build-system)
1462 (home-page "https://cran.r-project.org/web/packages/grr")
1463 (synopsis "Alternative implementations of base R functions")
1464 (description
1465 "This package provides alternative implementations of some base R
1466 functions, including @code{sort}, @code{order}, and @code{match}. The
1467 functions are simplified but can be faster or have other advantages.")
1468 (license license:gpl3)))
1469
1470 (define-public r-matrix-utils
1471 (package
1472 (name "r-matrix-utils")
1473 (version "0.9.8")
1474 (source
1475 (origin
1476 (method url-fetch)
1477 (uri (cran-uri "Matrix.utils" version))
1478 (sha256
1479 (base32
1480 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
1481 (properties `((upstream-name . "Matrix.utils")))
1482 (build-system r-build-system)
1483 (propagated-inputs
1484 (list r-grr r-matrix))
1485 (home-page "https://github.com/cvarrichio/Matrix.utils")
1486 (synopsis
1487 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
1488 (description
1489 "This package implements data manipulation methods such as @code{cast},
1490 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
1491 objects.")
1492 (license license:gpl3)))
1493
1494 (define-public r-mboost
1495 (package
1496 (name "r-mboost")
1497 (version "2.9-7")
1498 (source (origin
1499 (method url-fetch)
1500 (uri (cran-uri "mboost" version))
1501 (sha256
1502 (base32
1503 "01ln0vxbbx1fq77q17sx61si82lhfibbchsnf2yw9032cn8wnhh2"))))
1504 (build-system r-build-system)
1505 (propagated-inputs
1506 (list r-lattice
1507 r-matrix
1508 r-nnls
1509 r-partykit
1510 r-quadprog
1511 r-stabs
1512 r-survival))
1513 (home-page "https://github.com/boost-R/mboost")
1514 (synopsis "Model-based boosting")
1515 (description
1516 "This package provides a functional gradient descent algorithm (boosting)
1517 for optimizing general risk functions utilizing component-wise (penalised)
1518 least squares estimates or regression trees as base-learners for fitting
1519 generalized linear, additive and interaction models to potentially
1520 high-dimensional data.")
1521 (license license:gpl2)))
1522
1523 (define-public r-shadowtext
1524 (package
1525 (name "r-shadowtext")
1526 (version "0.1.2")
1527 (source (origin
1528 (method url-fetch)
1529 (uri (cran-uri "shadowtext" version))
1530 (sha256
1531 (base32
1532 "0zdfidrcnmxmfhngv86ppxrjmpmz9kl78l4yfah2lc5vgmrlwg15"))))
1533 (properties `((upstream-name . "shadowtext")))
1534 (build-system r-build-system)
1535 (propagated-inputs
1536 (list r-ggplot2 r-scales))
1537 (native-inputs
1538 (list r-knitr))
1539 (home-page "https://github.com/GuangchuangYu/shadowtext/")
1540 (synopsis "Shadow text grob and layer")
1541 (description "This package implements @code{shadowtextGrob()} for
1542 @code{grid} and @code{geom_shadowtext()} layer for @code{ggplot2}.
1543 These functions draw text grob with background shadow.")
1544 (license license:artistic2.0)))
1545
1546 (define-public r-sys
1547 (package
1548 (name "r-sys")
1549 (version "3.4")
1550 (source
1551 (origin
1552 (method url-fetch)
1553 (uri (cran-uri "sys" version))
1554 (sha256
1555 (base32
1556 "11q4zmx62w44p1j34frwmrsp23mc7l4n354i0zyziw92yax8zy0p"))))
1557 (build-system r-build-system)
1558 (home-page "https://github.com/jeroen/sys")
1559 (synopsis "Powerful and reliable tools for running system commands in R")
1560 (description
1561 "This package provides drop-in replacements for the base @code{system2()}
1562 function with fine control and consistent behavior across platforms. It
1563 supports clean interruption, timeout, background tasks, and streaming STDIN /
1564 STDOUT / STDERR over binary or text connections. The package also provides
1565 functions for evaluating expressions inside a temporary fork. Such
1566 evaluations have no side effects on the main R process, and support reliable
1567 interrupts and timeouts. This provides the basis for a sandboxing
1568 mechanism.")
1569 (license license:expat)))
1570
1571 (define-public r-ashr
1572 (package
1573 (name "r-ashr")
1574 (version "2.2-54")
1575 (source (origin
1576 (method url-fetch)
1577 (uri (cran-uri "ashr" version))
1578 (sha256
1579 (base32
1580 "177xs3apnc6yy6737qqv4z8snf0hkpbghab63hrplbyb9wfssfga"))))
1581 (properties `((upstream-name . "ashr")))
1582 (build-system r-build-system)
1583 (propagated-inputs
1584 (list r-etrunct
1585 r-invgamma
1586 r-matrix
1587 r-mixsqp
1588 r-rcpp
1589 r-squarem
1590 r-truncnorm))
1591 (native-inputs
1592 (list r-knitr))
1593 (home-page "https://github.com/stephens999/ashr")
1594 (synopsis "Methods for adaptive shrinkage, using empirical bayes")
1595 (description "This package implements an empirical Bayes approach for
1596 large-scale hypothesis testing and false discovery rate estimation.")
1597 (license license:gpl3+)))
1598
1599 (define-public r-askpass
1600 (package
1601 (name "r-askpass")
1602 (version "1.1")
1603 (source
1604 (origin
1605 (method url-fetch)
1606 (uri (cran-uri "askpass" version))
1607 (sha256
1608 (base32
1609 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
1610 (build-system r-build-system)
1611 (propagated-inputs (list r-sys))
1612 (home-page "https://github.com/jeroen/askpass")
1613 (synopsis "Safe password entry for R")
1614 (description
1615 "This package provides cross-platform utilities for prompting the user
1616 for credentials or a passphrase, for example to authenticate with a server or
1617 read a protected key.")
1618 (license license:expat)))
1619
1620 (define-public r-astsa
1621 (package
1622 (name "r-astsa")
1623 (version "1.15")
1624 (source
1625 (origin
1626 (method url-fetch)
1627 (uri (cran-uri "astsa" version))
1628 (sha256
1629 (base32 "0mllsq0xdqkviyvs77lq565r1vznsj1qp9cnlj5p48k9v76d7arp"))))
1630 (properties `((upstream-name . "astsa")))
1631 (build-system r-build-system)
1632 (home-page "https://github.com/nickpoison/astsa/")
1633 (synopsis "Applied statistical time series analysis")
1634 (description
1635 "This package provides data sets and scripts to accompany Time Series
1636 Analysis and Its Applications: With R Examples (4th ed), by R.H. Shumway and
1637 D.S. Stoffer. Springer Texts in Statistics, 2017,
1638 @url{https://doi.org/10.1007/978-3-319-52452-8}, and Time Series: A Data
1639 Analysis Approach Using R. Chapman-Hall, 2019,
1640 @url{https://doi.org/10.1201/9780429273285}.")
1641 (license license:gpl3)))
1642
1643 (define-public r-vegan
1644 (package
1645 (name "r-vegan")
1646 (version "2.6-2")
1647 (source
1648 (origin
1649 (method url-fetch)
1650 (uri (cran-uri "vegan" version))
1651 (sha256
1652 (base32
1653 "0nf0ny6jzfy135xiygzzkr0y55y8g27hrbk8c869plarr48d2xxb"))))
1654 (build-system r-build-system)
1655 (native-inputs
1656 (list r-knitr ; needed for vignettes
1657 gfortran))
1658 (propagated-inputs
1659 (list r-cluster r-lattice r-mass r-mgcv r-permute))
1660 (home-page "https://cran.r-project.org/web/packages/vegan")
1661 (synopsis "Functions for community ecology")
1662 (description
1663 "The vegan package provides tools for descriptive community ecology. It
1664 has most basic functions of diversity analysis, community ordination and
1665 dissimilarity analysis. Most of its multivariate tools can be used for other
1666 data types as well.")
1667 (license license:gpl2+)))
1668
1669 (define-public r-tidyverse
1670 (package
1671 (name "r-tidyverse")
1672 (version "1.3.1")
1673 (source
1674 (origin
1675 (method url-fetch)
1676 (uri (cran-uri "tidyverse" version))
1677 (sha256
1678 (base32
1679 "0ck6xmsw5p168jmw2fqv79fzfnw5jckfra7mfii261j6kl89bkw3"))))
1680 (build-system r-build-system)
1681 (propagated-inputs
1682 (list r-broom
1683 r-cli
1684 r-crayon
1685 r-dbplyr
1686 r-dplyr
1687 r-dtplyr
1688 r-forcats
1689 r-ggplot2
1690 r-googledrive
1691 r-googlesheets4
1692 r-haven
1693 r-hms
1694 r-httr
1695 r-jsonlite
1696 r-lubridate
1697 r-magrittr
1698 r-modelr
1699 r-pillar
1700 r-purrr
1701 r-readr
1702 r-readxl
1703 r-reprex
1704 r-rlang
1705 r-rstudioapi
1706 r-rvest
1707 r-stringr
1708 r-tibble
1709 r-tidyr
1710 r-xml2))
1711 (native-inputs
1712 (list r-knitr))
1713 (home-page "https://tidyverse.tidyverse.org")
1714 (synopsis "Install and load packages from the \"Tidyverse\"")
1715 (description
1716 "The @code{tidyverse} is a set of packages that work in harmony because
1717 they share common data representations and API design. This package is
1718 designed to make it easy to install and load multiple tidyverse packages in a
1719 single step.")
1720 (license license:gpl3)))
1721
1722 (define-public r-rvest
1723 (package
1724 (name "r-rvest")
1725 (version "1.0.2")
1726 (source
1727 (origin
1728 (method url-fetch)
1729 (uri (cran-uri "rvest" version))
1730 (sha256
1731 (base32 "1905vxgnj3q09l1wf6rwxpbpydznp06nbkrclnc05j2415z4gfw9"))))
1732 (build-system r-build-system)
1733 (propagated-inputs
1734 (list r-httr
1735 r-lifecycle
1736 r-magrittr
1737 r-rlang
1738 r-selectr
1739 r-tibble
1740 r-xml2))
1741 (native-inputs
1742 (list r-knitr))
1743 (home-page "https://github.com/hadley/rvest")
1744 (synopsis "Simple web scraping for R")
1745 (description
1746 "@code{r-rvest} helps you scrape information from web pages. It is
1747 designed to work with @code{magrittr} to make it easy to express common web
1748 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
1749 (license license:gpl3)))
1750
1751 (define-public r-selectr
1752 (package
1753 (name "r-selectr")
1754 (version "0.4-2")
1755 (source
1756 (origin
1757 (method url-fetch)
1758 (uri (cran-uri "selectr" version))
1759 (sha256
1760 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
1761 (build-system r-build-system)
1762 (propagated-inputs
1763 (list r-stringr r-r6))
1764 (home-page "https://sjp.co.nz/projects/selectr/")
1765 (synopsis "Translate CSS selectors to XPath expressions")
1766 (description
1767 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
1768 expression. This allows you to use CSS selectors when working with the XML
1769 package as it can only evaluate XPath expressions. Also provided are
1770 convenience functions useful for using CSS selectors on XML nodes. This
1771 package is a port of the Python package @code{cssselect}.")
1772 (license license:bsd-3)))
1773
1774 (define-public r-reprex
1775 (package
1776 (name "r-reprex")
1777 (version "2.0.1")
1778 (source
1779 (origin
1780 (method url-fetch)
1781 (uri (cran-uri "reprex" version))
1782 (sha256
1783 (base32
1784 "09k4rasp7mz6n796dsklcbc5l7prljiznrm7fra16qybr9kqcv8f"))))
1785 (build-system r-build-system)
1786 (propagated-inputs
1787 (list r-callr
1788 r-cli
1789 r-clipr
1790 r-fs
1791 r-glue
1792 r-knitr
1793 r-rlang
1794 r-rmarkdown
1795 r-rstudioapi
1796 r-withr))
1797 (native-inputs
1798 (list r-knitr))
1799 (home-page "https://github.com/tidyverse/reprex")
1800 (synopsis "Prepare reproducible R code examples for sharing")
1801 (description
1802 "This package provides a convenience wrapper that uses the
1803 @code{rmarkdown} package to render small snippets of code to target formats
1804 that include both code and output. The goal is to encourage the sharing of
1805 small, reproducible, and runnable examples on code-oriented websites or email.
1806 @code{reprex} also extracts clean, runnable R code from various common formats,
1807 such as copy/paste from an R session.")
1808 (license license:expat)))
1809
1810 (define-public r-reordercluster
1811 (package
1812 (name "r-reordercluster")
1813 (version "1.0")
1814 (source (origin
1815 (method url-fetch)
1816 (uri (cran-uri "ReorderCluster" version))
1817 (sha256
1818 (base32
1819 "0ss750frzvj0bm1w7zblmcsjpszhnbffwlkaw31sm003lbx9hy58"))))
1820 (build-system r-build-system)
1821 (propagated-inputs
1822 (list r-gplots r-rcpp))
1823 (home-page "https://cran.r-project.org/web/packages/ReorderCluster")
1824 (synopsis "Reordering the dendrogram according to the class labels")
1825 (description "This package provides tools for performing the leaf reordering
1826 for the dendrogram that preserves the hierarchical clustering result and at the
1827 same time tries to group instances from the same class together.")
1828 (license license:gpl3+)))
1829
1830 (define-public r-callr
1831 (package
1832 (name "r-callr")
1833 (version "3.7.0")
1834 (source
1835 (origin
1836 (method url-fetch)
1837 (uri (cran-uri "callr" version))
1838 (sha256
1839 (base32
1840 "02inaf3c7b0hikii7p2zwaphrq5myv4in92d9jxd1ilmhla5awnn"))))
1841 (build-system r-build-system)
1842 (propagated-inputs
1843 (list r-r6 r-processx))
1844 (home-page "https://github.com/r-lib/callr#readme")
1845 (synopsis "Call R from R")
1846 (description
1847 "It is sometimes useful to perform a computation in a separate R process,
1848 without affecting the current R process at all. This package does exactly
1849 that.")
1850 (license license:expat)))
1851
1852 (define-public r-depmixs4
1853 (package
1854 (name "r-depmixs4")
1855 (version "1.5-0")
1856 (source (origin
1857 (method url-fetch)
1858 (uri (cran-uri "depmixS4" version))
1859 (sha256
1860 (base32
1861 "1pacvhw5m4fsk3ysbal50fdqbvlaz8ywyqp6bn1wh42wipqbb2i8"))))
1862 (propagated-inputs
1863 (list r-nnet r-nlme r-mass r-rsolnp))
1864 (build-system r-build-system)
1865 (home-page "https://cran.r-project.org/web/packages/depmixS4/")
1866 (synopsis "Dependent Mixture Models")
1867 (description "This package fits latent (hidden) Markov models on mixed
1868 categorical and continuous (time series) data, otherwise known as dependent
1869 mixture models.")
1870 (license license:gpl2+)))
1871
1872 (define-public r-readxl
1873 (package
1874 (name "r-readxl")
1875 (version "1.4.0")
1876 (source
1877 (origin
1878 (method url-fetch)
1879 (uri (cran-uri "readxl" version))
1880 (sha256
1881 (base32
1882 "1xwi4k5si48hwkgfc59icfmp9dzlvfri59k5fsgn96zp9713k4mb"))))
1883 (build-system r-build-system)
1884 (propagated-inputs
1885 (list r-cellranger r-cpp11 r-progress r-tibble))
1886 (native-inputs
1887 (list r-knitr))
1888 (home-page "https://readxl.tidyverse.org")
1889 (synopsis "Read Excel files")
1890 (description
1891 "This package lets you import Excel files into R. It supports
1892 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
1893 the embedded @code{RapidXML} C++ library.")
1894 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
1895 ;; 'rapidxml' which is Boost.
1896 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
1897
1898 (define-public r-model4you
1899 (package
1900 (name "r-model4you")
1901 (version "0.9-7")
1902 (source (origin
1903 (method url-fetch)
1904 (uri (cran-uri "model4you" version))
1905 (sha256
1906 (base32
1907 "0pni9v3nradvy8sp2m07903vc7z610xrh426lf19dxss12kgrfi8"))))
1908 (build-system r-build-system)
1909 (propagated-inputs
1910 (list r-formula
1911 r-ggplot2
1912 r-gridextra
1913 r-partykit
1914 r-sandwich
1915 r-survival))
1916 (home-page "https://cran.r-project.org/web/packages/model4you/")
1917 (synopsis "Stratified and personalised models based on trees and forests")
1918 (description
1919 "This package provides procedures for model-based trees for subgroup
1920 analyses in clinical trials and model-based forests for the estimation and
1921 prediction of personalised treatment effects. Currently partitioning of linear
1922 models, @code{lm()}, generalised linear models, @code{glm()}, and
1923 Weibull models, @code{survreg()}, are supported. Advanced plotting functionality is
1924 supported for the trees and a test for parameter heterogeneity is provided for
1925 the personalised models.")
1926 (license license:gpl2+)))
1927
1928 (define-public r-modelr
1929 (package
1930 (name "r-modelr")
1931 (version "0.1.8")
1932 (source
1933 (origin
1934 (method url-fetch)
1935 (uri (cran-uri "modelr" version))
1936 (sha256
1937 (base32
1938 "1i31nff7bqibk6r4hhd4j1vzwbyaf8493v0bjaagn36njmysfnw2"))))
1939 (build-system r-build-system)
1940 (propagated-inputs
1941 (list r-broom
1942 r-magrittr
1943 r-purrr
1944 r-rlang
1945 r-tibble
1946 r-tidyr
1947 r-tidyselect
1948 r-vctrs))
1949 (home-page "https://github.com/tidyverse/modelr")
1950 (synopsis "Helper functions for modelling in pipelines")
1951 (description
1952 "Functions for modelling that help you seamlessly integrate modelling
1953 into a pipeline of data manipulation and visualisation.")
1954 (license license:gpl3)))
1955
1956 (define-public r-hmm
1957 (package
1958 (name "r-hmm")
1959 (version "1.0.1")
1960 (source (origin
1961 (method url-fetch)
1962 (uri (cran-uri "HMM" version))
1963 (sha256
1964 (base32
1965 "03b548bnwqpnd7zypb4gvy9chyi5li2hp99a9vrh4qszxg2ihas7"))))
1966 (properties `((upstream-name . "HMM")))
1967 (build-system r-build-system)
1968 (home-page "https://cran.r-project.org/web/packages/HMM/")
1969 (synopsis "Hidden Markov Models")
1970 (description "This package provides an easy to use library to setup, apply
1971 and make inference with discrete time and discrete space hidden Markov
1972 models.")
1973 (license license:gpl2+)))
1974
1975 (define-public r-hiddenmarkov
1976 (package
1977 (name "r-hiddenmarkov")
1978 (version "1.8-13")
1979 (source (origin
1980 (method url-fetch)
1981 (uri (cran-uri "HiddenMarkov" version))
1982 (sha256
1983 (base32
1984 "05dm3nl0ffsz2ziw3bz5bivyxk7r5bxs8xhky3hz660qaqzd51ki"))))
1985 (build-system r-build-system)
1986 (native-inputs
1987 (list gfortran))
1988 (home-page "https://cran.r-project.org/web/packages/HiddenMarkov/")
1989 (synopsis "Hidden markov models for R")
1990 (description "This package contains functions for the analysis of Discrete
1991 Time Hidden Markov Models, Markov Modulated GLMs and the Markov Modulated
1992 Poisson Process. It includes functions for simulation, parameter estimation,
1993 and the Viterbi algorithm. The algorithms are based of those of Walter
1994 Zucchini.")
1995 (license license:gpl2+)))
1996
1997 (define-public r-httpuv
1998 (package
1999 (name "r-httpuv")
2000 (version "1.6.5")
2001 (source (origin
2002 (method url-fetch)
2003 (uri (cran-uri "httpuv" version))
2004 (sha256
2005 (base32
2006 "0mlilxh2mlrsbbrncla2rg02crr8nnajv649d8whx7ayr8lkdxpm"))
2007 ;; Unvendor bundled libraries. As of 1.5.4 the vendored libuv
2008 ;; only contains fixes for building on Solaris.
2009 (patches (search-patches "r-httpuv-1.5.5-unvendor-libuv.patch"))
2010 (modules '((guix build utils)))
2011 ;; Cannot unbundle http-parser, because it contains local
2012 ;; modifications.
2013 (snippet
2014 '(delete-file-recursively "src/libuv"))))
2015 (build-system r-build-system)
2016 (arguments
2017 `(#:phases
2018 (modify-phases %standard-phases
2019 (add-after 'unpack 'unbundle-libuv
2020 (lambda* (#:key outputs #:allow-other-keys)
2021 (substitute* (find-files "src" "\\.cpp$|\\.h$")
2022 (("\"libuv/include/uv\\.h\"")
2023 "<uv.h>"))
2024 ;; Fix https://github.com/rstudio/httpuv/issues/282
2025 (substitute* "src/http.cpp"
2026 (("uv_pipe_init\\(pLoop, &pSocket->handle\\.pipe, true\\);")
2027 "uv_pipe_init(pLoop, &pSocket->handle.pipe, 0);")))))))
2028 (inputs
2029 (list libuv zlib))
2030 (propagated-inputs
2031 (list r-later r-promises r-r6 r-rcpp))
2032 (home-page "https://github.com/rstudio/httpuv")
2033 (synopsis "HTTP and WebSocket server library for R")
2034 (description
2035 "The httpuv package provides low-level socket and protocol support for
2036 handling HTTP and WebSocket requests directly from within R. It is primarily
2037 intended as a building block for other packages, rather than making it
2038 particularly easy to create complete web applications using httpuv alone.")
2039 ;; This package includes third-party code that was originally released
2040 ;; under various non-copyleft licenses. Full licensing information can be
2041 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
2042 (license license:gpl3+)))
2043
2044 (define-public r-jsonlite
2045 (package
2046 (name "r-jsonlite")
2047 (version "1.8.0")
2048 (source (origin
2049 (method url-fetch)
2050 (uri (cran-uri "jsonlite" version))
2051 (sha256
2052 (base32
2053 "0k6dal7gmm19jl5sjsry5gwbnhsbrnn00q3iixig8k6bxgpr463v"))))
2054 (build-system r-build-system)
2055 (native-inputs
2056 (list r-knitr))
2057 (home-page "https://arxiv.org/abs/1403.2805")
2058 (synopsis "Robust, high performance JSON parser and generator for R")
2059 (description
2060 "The jsonlite package provides a fast JSON parser and generator optimized
2061 for statistical data and the web. It offers flexible, robust, high
2062 performance tools for working with JSON in R and is particularly powerful for
2063 building pipelines and interacting with a web API. In addition to converting
2064 JSON data from/to R objects, jsonlite contains functions to stream, validate,
2065 and prettify JSON data. The unit tests included with the package verify that
2066 all edge cases are encoded and decoded consistently for use with dynamic data
2067 in systems and applications.")
2068 (license license:expat)))
2069
2070 (define-public r-servr
2071 (package
2072 (name "r-servr")
2073 (version "0.24")
2074 (source (origin
2075 (method url-fetch)
2076 (uri (cran-uri "servr" version))
2077 (sha256
2078 (base32
2079 "11x0857m3xzdbzr4z0vx4fcdk36arfagyf2qgamvprich0qisknr"))))
2080 (build-system r-build-system)
2081 (propagated-inputs
2082 (list r-httpuv r-jsonlite r-mime r-xfun))
2083 (home-page "https://github.com/yihui/servr")
2084 (synopsis "Simple HTTP server to serve static files or dynamic documents")
2085 (description
2086 "Servr provides an HTTP server in R to serve static files, or dynamic
2087 documents that can be converted to HTML files (e.g., R Markdown) under a given
2088 directory.")
2089 (license license:expat)))
2090
2091 (define-public r-howmany
2092 (package
2093 (name "r-howmany")
2094 (version "0.3-1")
2095 (source (origin
2096 (method url-fetch)
2097 (uri (cran-uri "howmany" version))
2098 (sha256
2099 (base32
2100 "045ck8qahfg2swbgyf7dpl32ryq1m4sbalhr7m5qdgpm62vz8h7f"))))
2101 (build-system r-build-system)
2102 (home-page "https://cran.r-project.org/web/packages/howmany/")
2103 (synopsis "Lower bound for the number of correct rejections")
2104 (description "When testing multiple hypotheses simultaneously, this package
2105 provides functionality to calculate a lower bound for the number of correct
2106 rejections (as a function of the number of rejected hypotheses), which holds
2107 simultaneously -with high probability- for all possible number of rejections.
2108 As a special case, a lower bound for the total number of false null hypotheses
2109 can be inferred. Dependent test statistics can be handled for multiple tests
2110 of associations. For independent test statistics, it is sufficient to provide
2111 a list of p-values.")
2112 (license license:gpl2+)))
2113
2114 (define-public r-htmltools
2115 (package
2116 (name "r-htmltools")
2117 (version "0.5.2")
2118 (source (origin
2119 (method url-fetch)
2120 (uri (cran-uri "htmltools" version))
2121 (sha256
2122 (base32
2123 "1yv74ydyqm28gfhimmr7825sj1iaawpwsnzq05c2ma756q2dbivx"))))
2124 (build-system r-build-system)
2125 (propagated-inputs
2126 (list r-base64enc r-digest r-fastmap r-rlang))
2127 (home-page "https://cran.r-project.org/web/packages/htmltools")
2128 (synopsis "R tools for HTML")
2129 (description
2130 "This package provides tools for HTML generation and output in R.")
2131 (license license:expat)))
2132
2133 (define-public r-htmlwidgets
2134 (package
2135 (name "r-htmlwidgets")
2136 (version "1.5.4")
2137 (source (origin
2138 (method url-fetch)
2139 (uri (cran-uri "htmlwidgets" version))
2140 (sha256
2141 (base32
2142 "1hgz8sx8xrvfcdwa4q15k942w4qsqg8lyxbbf7qyfzbi807wcgqs"))))
2143 (build-system r-build-system)
2144 (propagated-inputs
2145 (list r-htmltools r-jsonlite r-yaml))
2146 (native-inputs
2147 (list r-knitr))
2148 (home-page "https://github.com/ramnathv/htmlwidgets")
2149 (synopsis "HTML Widgets for R")
2150 (description
2151 "HTML widgets is a framework for creating HTML widgets that render in
2152 various contexts including the R console, R Markdown documents, and Shiny web
2153 applications.")
2154 (license license:expat)))
2155
2156 (define-public r-htmltable
2157 (package
2158 (name "r-htmltable")
2159 (version "2.4.0")
2160 (source
2161 (origin
2162 (method url-fetch)
2163 (uri (cran-uri "htmlTable" version))
2164 (sha256
2165 (base32 "17csp0ry4iy4m5xy271dn5wd81v4p03l79swmvlfxkvpdmhvb8jc"))))
2166 (properties `((upstream-name . "htmlTable")))
2167 (build-system r-build-system)
2168 (propagated-inputs
2169 (list r-checkmate
2170 r-htmltools
2171 r-htmlwidgets
2172 r-knitr
2173 r-magrittr
2174 r-rstudioapi
2175 r-stringr))
2176 (native-inputs
2177 (list r-knitr))
2178 (home-page "http://gforge.se/packages/")
2179 (synopsis "Advanced tables for Markdown/HTML")
2180 (description
2181 "This package provides functions to build tables with advanced layout
2182 elements such as row spanners, column spanners, table spanners, zebra
2183 striping, and more. While allowing advanced layout, the underlying
2184 CSS-structure is simple in order to maximize compatibility with word
2185 processors such as LibreOffice. The package also contains a few text
2186 formatting functions that help outputting text compatible with HTML or
2187 LaTeX.")
2188 (license license:gpl3+)))
2189
2190 (define-public r-curl
2191 (package
2192 (name "r-curl")
2193 (version "4.3.2")
2194 (source (origin
2195 (method url-fetch)
2196 (uri (cran-uri "curl" version))
2197 (sha256
2198 (base32
2199 "0s55022hy8shjm1pzax1dqzrg20bv4nvlwnjnddk3dp89g5zmcch"))))
2200 (build-system r-build-system)
2201 (arguments
2202 `(#:phases
2203 (modify-phases %standard-phases
2204 ;; The environment variable CURL_CA_BUNDLE is only respected when
2205 ;; running Windows, so we disable the platform checks.
2206 ;; This can be removed once the libcurl has been patched.
2207 (add-after 'unpack 'allow-CURL_CA_BUNDLE
2208 (lambda _
2209 (substitute* "R/onload.R"
2210 (("if \\(!grepl\\(\"mingw\".*")
2211 "if (FALSE)\n"))
2212 (substitute* "src/handle.c"
2213 (("/\\* Only set" m)
2214 (string-append "\
2215 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
2216 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
2217 " m))))))))
2218 (inputs
2219 (list curl zlib))
2220 (native-inputs
2221 (list pkg-config r-knitr))
2222 (home-page "https://github.com/jeroenooms/curl")
2223 (synopsis "HTTP client for R")
2224 (description
2225 "The @code{curl()} and @code{curl_download()} functions provide highly
2226 configurable drop-in replacements for base @code{url()} and
2227 @code{download.file()} with better performance, support for encryption, gzip
2228 compression, authentication, and other @code{libcurl} goodies. The core of
2229 the package implements a framework for performing fully customized requests
2230 where data can be processed either in memory, on disk, or streaming via the
2231 callback or connection interfaces.")
2232 (license license:expat)))
2233
2234 (define-public r-hwriter
2235 (package
2236 (name "r-hwriter")
2237 (version "1.3.2.1")
2238 (source
2239 (origin
2240 (method url-fetch)
2241 (uri (cran-uri "hwriter" version))
2242 (sha256
2243 (base32
2244 "1wxnv8h9cs65m3z01dpnnkgn2cpwfsck70g1jz9nbkr7mdaa4bzd"))))
2245 (build-system r-build-system)
2246 (home-page "https://cran.r-project.org/web/packages/hwriter")
2247 (synopsis "Output R objects in HTML format")
2248 (description
2249 "This package provides easy-to-use and versatile functions to output R
2250 objects in HTML format.")
2251 (license license:lgpl2.1+)))
2252
2253 (define-public r-rjson
2254 (package
2255 (name "r-rjson")
2256 (version "0.2.21")
2257 (source
2258 (origin
2259 (method url-fetch)
2260 (uri (cran-uri "rjson" version))
2261 (sha256
2262 (base32
2263 "1qm27r1w677zg31gsiln60hcciszbymkw78cnaq7s36cbk9mcawq"))))
2264 (build-system r-build-system)
2265 (home-page "https://cran.r-project.org/web/packages/rjson")
2266 (synopsis "JSON library for R")
2267 (description
2268 "This package provides functions to convert R objects into JSON objects
2269 and vice-versa.")
2270 (license license:gpl2+)))
2271
2272 (define-public r-fastmap
2273 (package
2274 (name "r-fastmap")
2275 (version "1.1.0")
2276 (source
2277 (origin
2278 (method url-fetch)
2279 (uri (cran-uri "fastmap" version))
2280 (sha256
2281 (base32
2282 "0aw29hnq3ppn7bsnwg9d9sp84k1cvq30lrmfzqn315n0nhkfa4wi"))))
2283 (properties `((upstream-name . "fastmap")))
2284 (build-system r-build-system)
2285 (home-page "https://r-lib.github.io/fastmap/")
2286 (synopsis "Fast implementation of a key-value store")
2287 (description
2288 "This package provides a fast implementation of a key-value store.
2289 Environments are commonly used as key-value stores, but every time a new key
2290 is used, it is added to R's global symbol table, causing a small amount of
2291 memory leakage. This can be problematic in cases where many different keys
2292 are used. Fastmap avoids this memory leak issue by implementing the map using
2293 data structures in C++.")
2294 (license license:expat)))
2295
2296 (define-public r-fastghquad
2297 (package
2298 (name "r-fastghquad")
2299 (version "1.0.1")
2300 (source
2301 (origin
2302 (method url-fetch)
2303 (uri (cran-uri "fastGHQuad" version))
2304 (sha256
2305 (base32
2306 "1zj7nsbnx4g253m3dpz9vi3zk3jxwrixwjw1ks6n4shpb4dlkp2w"))))
2307 (properties `((upstream-name . "fastGHQuad")))
2308 (build-system r-build-system)
2309 (propagated-inputs
2310 (list r-rcpp))
2311 (home-page "https://github.com/awblocker/fastGHQuad")
2312 (synopsis "Fast Rcpp implementation of Gauss-Hermite Quadrature")
2313 (description
2314 "This package implements numerically-stable Gauss-Hermite quadrature
2315 rules and utility functions for adaptive GH quadrature.")
2316 (license license:expat)))
2317
2318 (define-public r-rstpm2
2319 (package
2320 (name "r-rstpm2")
2321 (version "1.5.6")
2322 (source
2323 (origin
2324 (method url-fetch)
2325 (uri (cran-uri "rstpm2" version))
2326 (sha256
2327 (base32
2328 "17mhzfxh761vl64ar6pynpj3k2jkhjgbacxsjhkrfkbmy3aiv0d1"))))
2329 (properties `((upstream-name . "rstpm2")))
2330 (build-system r-build-system)
2331 (propagated-inputs
2332 (list r-bbmle
2333 r-bh
2334 r-desolve
2335 r-fastghquad
2336 r-mgcv
2337 r-rcpp
2338 r-rcpparmadillo
2339 r-survival))
2340 (native-inputs
2341 (list gfortran))
2342 (home-page "https://github.com/mclements/rstpm2")
2343 (synopsis "Link-based survival models")
2344 (description
2345 "This package provides R implementations of @dfn{generalized survival
2346 models} (GSMs), smooth @dfn{accelerated failure time} (AFT) models and Markov
2347 multi-state models.")
2348 ;; One of these licenses
2349 (license (list license:gpl2 license:gpl3))))
2350
2351 ;; This package includes minified JavaScript files. When upgrading please
2352 ;; check that there are no new minified JavaScript files.
2353 (define-public r-jquerylib
2354 (package
2355 (name "r-jquerylib")
2356 (version "0.1.4")
2357 (source
2358 (origin
2359 (method url-fetch)
2360 (uri (cran-uri "jquerylib" version))
2361 (sha256
2362 (base32
2363 "04a40v4znpj98j7y6009d74a6g9dchj5rr3p08cgz9p3rlfw3g7h"))
2364 (snippet
2365 '(for-each delete-file
2366 '("inst/lib/1.12.4/jquery-1.12.4.min.js"
2367 "inst/lib/2.2.4/jquery-2.2.4.min.js"
2368 "inst/lib/3.6.0/jquery-3.6.0.min.js")))))
2369 (properties `((upstream-name . "jquerylib")))
2370 (build-system r-build-system)
2371 (arguments
2372 `(#:modules ((guix build utils)
2373 (guix build r-build-system)
2374 (srfi srfi-1))
2375 #:phases
2376 (modify-phases %standard-phases
2377 (add-after 'unpack 'process-javascript
2378 (lambda* (#:key inputs #:allow-other-keys)
2379 (with-directory-excursion "inst/lib/"
2380 (call-with-values
2381 (lambda ()
2382 (unzip2
2383 `(("1.12.4/jquery-1.12.4.js"
2384 "1.12.4/jquery-1.12.4.min.js")
2385 ("2.2.4/jquery-2.2.4.js"
2386 "2.2.4/jquery-2.2.4.min.js")
2387 ("3.6.0/jquery-3.6.0.js"
2388 "3.6.0/jquery-3.6.0.min.js"))))
2389 (lambda (sources targets)
2390 (for-each (lambda (source target)
2391 (format #t "Processing ~a --> ~a~%"
2392 source target)
2393 (invoke "esbuild" source "--minify"
2394 (string-append "--outfile=" target)))
2395 sources targets)))))))))
2396 (propagated-inputs
2397 (list r-htmltools))
2398 (native-inputs
2399 (list esbuild))
2400 (home-page "https://cran.r-project.org/package=jquerylib")
2401 (synopsis "Obtain jQuery as an HTML dependency object")
2402 (description
2403 "Obtain any major version of jQuery and use it in any webpage generated
2404 by htmltools (e.g. shiny, htmlwidgets, and rmarkdown). Most R users don't
2405 need to use this package directly, but other R packages (e.g. shiny,
2406 rmarkdown, etc.) depend on this package to avoid bundling redundant copies of
2407 jQuery.")
2408 (license license:expat)))
2409
2410 (define-public r-sass
2411 (package
2412 (name "r-sass")
2413 (version "0.4.1")
2414 (source
2415 (origin
2416 (method url-fetch)
2417 (uri (cran-uri "sass" version))
2418 (sha256
2419 (base32
2420 "1fq8wqnxmx10lg0dh4qzmxdkhd22fjh8vhassapxb1chsimwn3w5"))))
2421 (properties `((upstream-name . "sass")))
2422 (build-system r-build-system)
2423 (propagated-inputs
2424 (list r-fs r-htmltools r-r6 r-rappdirs r-rlang))
2425 (native-inputs (list r-knitr))
2426 (home-page "https://github.com/rstudio/sass")
2427 (synopsis "Syntactically Awesome Style Sheets (SASS)")
2428 (description
2429 "This package provides an SCSS compiler, powered by the libsass library.
2430 With this, R developers can use variables, inheritance, and functions to
2431 generate dynamic style sheets. The package uses the Sass CSS extension
2432 language, which is stable, powerful, and CSS compatible.")
2433 (license license:expat)))
2434
2435 (define-public r-saver
2436 (package
2437 (name "r-saver")
2438 (version "1.1.2")
2439 (source (origin
2440 (method url-fetch)
2441 (uri (cran-uri "SAVER" version))
2442 (sha256
2443 (base32
2444 "1s1kw8idkaj7j90fw4qn9k0wd4vz0sblsk06ry6lm4afcar0p158"))))
2445 (properties `((upstream-name . "SAVER")))
2446 (build-system r-build-system)
2447 (propagated-inputs
2448 (list r-doparallel
2449 r-foreach
2450 r-glmnet
2451 r-iterators
2452 r-matrix))
2453 (native-inputs (list r-knitr))
2454 (home-page "https://github.com/mohuangx/SAVER")
2455 (synopsis
2456 "Recovery of gene expression profile in noisy and sparse scRNA-seq data")
2457 (description
2458 "This package is an implementation of a regularized regression prediction
2459 and empirical Bayes method to recover the true gene expression profile in noisy
2460 and sparse single-cell RNA-seq data. In @dfn{single-cell RNA sequencing}
2461 (scRNA-seq) studies, only a small fraction of the transcripts present in each
2462 cell are sequenced. This leads to unreliable quantification of genes with low
2463 or moderate expression, which hinders downstream analysis. This package
2464 @dfn{single-cell analysis via expression recovery} (SAVER) implements an
2465 expression recovery method for unique molecule index (UMI)-based scRNA-seq
2466 data that borrows information across genes and cells to provide accurate
2467 expression estimates for all genes.")
2468 (license license:gpl2)))
2469
2470 ;; This package includes minified JavaScript files. When upgrading please
2471 ;; check that there are no new minified JavaScript files.
2472 (define-public r-bslib
2473 (package
2474 (name "r-bslib")
2475 (version "0.3.1")
2476 (source
2477 (origin
2478 (method url-fetch)
2479 (uri (cran-uri "bslib" version))
2480 (sha256
2481 (base32
2482 "0jcqklry1nkibz0sydsz5xdsnb4wnrrhvmyr9ji3k45bbipbap2z"))
2483 (snippet
2484 '(for-each delete-file
2485 '("inst/lib/bs-a11y-p/plugins/js/bootstrap-accessibility.min.js"
2486 "inst/lib/bs-colorpicker/js/bootstrap-colorpicker.min.js"
2487 "inst/lib/bs3/assets/javascripts/bootstrap.min.js"
2488 "inst/lib/bs4/dist/js/bootstrap.bundle.min.js"
2489 "inst/lib/bs5/dist/js/bootstrap.bundle.min.js")))))
2490 (properties `((upstream-name . "bslib")))
2491 (build-system r-build-system)
2492 (arguments
2493 `(#:modules ((guix build utils)
2494 (guix build r-build-system)
2495 (srfi srfi-1))
2496 #:phases
2497 (modify-phases %standard-phases
2498 (add-after 'unpack 'process-javascript
2499 (lambda* (#:key inputs #:allow-other-keys)
2500 (with-directory-excursion "inst/lib/"
2501 (call-with-values
2502 (lambda ()
2503 (unzip2
2504 `(("bs-a11y-p/plugins/js/bootstrap-accessibility.js"
2505 "bs-a11y-p/plugins/js/bootstrap-accessibility.min.js")
2506 ("bs-colorpicker/js/bootstrap-colorpicker.js"
2507 "bs-colorpicker/js/bootstrap-colorpicker.min.js")
2508 ("bs3/assets/javascripts/bootstrap.js"
2509 "bs3/assets/javascripts/bootstrap.min.js")
2510 (,(assoc-ref inputs "js-bootstrap4-bundle")
2511 "bs4/dist/js/bootstrap.bundle.min.js")
2512 (,(assoc-ref inputs "js-bootstrap5-bundle")
2513 "bs5/dist/js/bootstrap.bundle.min.js"))))
2514 (lambda (sources targets)
2515 (for-each (lambda (source target)
2516 (format #t "Processing ~a --> ~a~%"
2517 source target)
2518 (invoke "esbuild" source "--minify"
2519 (string-append "--outfile=" target)))
2520 sources targets)))))))))
2521 (propagated-inputs
2522 (list r-htmltools r-jquerylib r-jsonlite r-rlang r-sass))
2523 (native-inputs
2524 `(("esbuild" ,esbuild)
2525 ("js-bootstrap4-bundle"
2526 ,(origin
2527 (method url-fetch)
2528 (uri "https://raw.githubusercontent.com/twbs/bootstrap/v4.6.0/dist/js/bootstrap.bundle.js")
2529 (sha256
2530 (base32
2531 "04abvgp923w36qfqkkl2syim3bl119nwxbgials90z1jyb8jgss1"))))
2532 ("js-bootstrap5-bundle"
2533 ,(origin
2534 (method url-fetch)
2535 (uri "https://raw.githubusercontent.com/twbs/bootstrap/v5.0.2/dist/js/bootstrap.bundle.js")
2536 (sha256
2537 (base32
2538 "06vin94nqw1vzs4zrqcms8z9js9fckbj8gwyx07awm8jkjhnqfhl"))))))
2539 (home-page "https://rstudio.github.io/bslib/")
2540 (synopsis "Custom Bootstrap Sass themes for shiny and rmarkdown")
2541 (description
2542 "This package simplifies custom CSS styling of both shiny and rmarkdown
2543 via Bootstrap Sass. It supports both Bootstrap 3 and 4 as well as their
2544 various Bootswatch themes. An interactive widget is also provided for
2545 previewing themes in real time.")
2546 (license license:expat)))
2547
2548 ;; This package includes minified JavaScript files. When upgrading please
2549 ;; check that there are no new minified JavaScript files.
2550 (define-public r-shiny
2551 (package
2552 (name "r-shiny")
2553 (version "1.7.1")
2554 (source
2555 (origin
2556 (method git-fetch)
2557 (uri (git-reference
2558 (url "https://github.com/rstudio/shiny")
2559 (commit (string-append "v" version))))
2560 (file-name (git-file-name name version))
2561 (sha256
2562 (base32
2563 "0wvc6jlgs41p05wbk8gahnl7sfnc4hpliyh9dbi5w52ngsg6wcr7"))
2564 (snippet
2565 '(for-each delete-file
2566 '("inst/www/shared/bootstrap/js/bootstrap.min.js"
2567 "inst/www/shared/bootstrap/accessibility/js/bootstrap-accessibility.min.js" ; TODO
2568 "inst/www/shared/datatables/js/jquery.dataTables.min.js"
2569 "inst/www/shared/datepicker/js/bootstrap-datepicker.min.js"
2570 "inst/www/shared/highlight/highlight.pack.js"
2571 "inst/www/shared/ionrangeslider/js/ion.rangeSlider.min.js"
2572 "inst/www/shared/jquery.min.js"
2573 "inst/www/shared/jqueryui/jquery-ui.min.js"
2574 "inst/www/shared/legacy/jquery.min.js"
2575 "inst/www/shared/selectize/accessibility/js/selectize-plugin-a11y.min.js"
2576 "inst/www/shared/selectize/js/selectize.min.js"
2577 "inst/www/shared/shiny.min.js"
2578 "inst/www/shared/showdown/compressed/showdown.js"
2579 "inst/www/shared/strftime/strftime-min.js")))))
2580 (build-system r-build-system)
2581 (arguments
2582 `(#:modules ((guix build r-build-system)
2583 (guix build minify-build-system)
2584 (guix build utils)
2585 (ice-9 match))
2586 #:imported-modules (,@%r-build-system-modules
2587 (guix build minify-build-system))
2588 #:phases
2589 (modify-phases (@ (guix build r-build-system) %standard-phases)
2590 (add-after 'unpack 'replace-bundled-minified-JavaScript
2591 (lambda* (#:key inputs #:allow-other-keys)
2592 (let ((replace-file (lambda (old new)
2593 (format #t "replacing ~a with ~a\n" old new)
2594 (symlink new old))))
2595 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
2596 ;; contain just data. They are not minified code, so we don't
2597 ;; replace them.
2598 (with-directory-excursion "inst/www/shared"
2599 (replace-file "strftime/strftime-min.js"
2600 (search-input-file inputs
2601 "/share/javascript/strftime.min.js"))
2602 (replace-file "highlight/highlight.pack.js"
2603 (search-input-file inputs
2604 "/share/javascript/highlight.min.js"))
2605 (replace-file "datatables/js/jquery.dataTables.min.js"
2606 (search-input-file inputs
2607 "/share/javascript/jquery.dataTables.min.js"))
2608 (replace-file "selectize/js/selectize.min.js"
2609 (search-input-file inputs
2610 "/share/javascript/selectize.min.js"))
2611 (for-each (match-lambda
2612 ((source . target)
2613 (minify source #:target target)))
2614 `(("jqueryui/jquery-ui.js" .
2615 "jqueryui/jquery-ui.min.js")
2616 ("datepicker/js/bootstrap-datepicker.js" .
2617 "datepicker/js/bootstrap-datepicker.min.js")
2618 ("ionrangeslider/js/ion.rangeSlider.js" .
2619 "ionrangeslider/js/ion.rangeSlider.min.js")
2620 ("bootstrap/js/bootstrap.js" .
2621 "bootstrap/js/bootstrap.min.js")
2622 (,(assoc-ref inputs "js-bootstrap-accessibility") .
2623 "bootstrap/accessibility/js/bootstrap-accessibility.min.js")
2624 ("shiny.js" .
2625 "shiny.min.js")
2626 ("jquery.js" .
2627 "jquery.min.js")
2628 ("legacy/jquery.js" .
2629 "legacy/jquery.min.js")
2630 ("selectize/accessibility/js/selectize-plugin-a11y.js" .
2631 "selectize/accessibility/js/selectize-plugin-a11y.min.js")
2632 ("showdown/src/showdown.js" .
2633 "showdown/compressed/showdown.js"))))))))))
2634 (propagated-inputs
2635 (list r-bslib
2636 r-cachem
2637 r-commonmark
2638 r-crayon
2639 r-ellipsis
2640 r-fastmap
2641 r-fontawesome
2642 r-glue
2643 r-htmltools
2644 r-httpuv
2645 r-jsonlite
2646 r-later
2647 r-lifecycle
2648 r-mime
2649 r-promises
2650 r-r6
2651 r-rlang
2652 r-sourcetools
2653 r-withr
2654 r-xtable))
2655 (inputs
2656 (list js-datatables js-selectize js-strftime js-highlight))
2657 (native-inputs
2658 `(("uglifyjs" ,node-uglify-js)
2659 ("gfortran" ,gfortran)
2660 ("js-bootstrap-accessibility"
2661 ,(origin
2662 (method url-fetch)
2663 (uri "https://raw.githubusercontent.com/paypal/bootstrap-accessibility-plugin/\
2664 v1.0.7/_site/plugins/js/bootstrap-accessibility.js")
2665 (sha256
2666 (base32
2667 "1489wyzwrpf86y7vhc13n4v3mszmsfybhd3f75jkpnbvyp5sncm8"))))))
2668 (home-page "https://shiny.rstudio.com")
2669 (synopsis "Easy interactive web applications with R")
2670 (description
2671 "Makes it incredibly easy to build interactive web applications
2672 with R. Automatic \"reactive\" binding between inputs and outputs and
2673 extensive prebuilt widgets make it possible to build beautiful,
2674 responsive, and powerful applications with minimal effort.")
2675 (license license:artistic2.0)))
2676
2677 (define-public r-shinyhelper
2678 (package
2679 (name "r-shinyhelper")
2680 (version "0.3.2")
2681 (source
2682 (origin
2683 (method url-fetch)
2684 (uri (cran-uri "shinyhelper" version))
2685 (sha256
2686 (base32 "1c4hvf19j3yyh8r12nx85ldkxs89g98q74csnqs5ml5l79a65vgp"))))
2687 (properties `((upstream-name . "shinyhelper")))
2688 (build-system r-build-system)
2689 (propagated-inputs (list r-markdown r-shiny))
2690 (home-page "https://cran.r-project.org/package=shinyhelper")
2691 (synopsis "Easily add Markdown help files to shiny app elements")
2692 (description
2693 "This package creates a lightweight way to add markdown helpfiles to
2694 Shiny apps, using modal dialog boxes, with no need to observe each help button
2695 separately.")
2696 (license license:gpl3)))
2697
2698 ;; This package includes minified JavaScript files. When upgrading please
2699 ;; check that there are no new minified JavaScript files.
2700 (define-public r-shinytree
2701 (package
2702 (name "r-shinytree")
2703 (version "0.2.7")
2704 (source
2705 (origin
2706 (method url-fetch)
2707 (uri (cran-uri "shinyTree" version))
2708 (sha256
2709 (base32
2710 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
2711 (modules '((guix build utils)))
2712 (snippet
2713 '(begin
2714 ;; Delete minified JavaScript
2715 (for-each delete-file
2716 '("inst/www/jsTree-3.3.7/libs/require.js"
2717 "inst/www/jsTree-3.3.7/libs/jquery.js"
2718 "inst/www/jsTree-3.3.7/jstree.min.js"))
2719 #t))))
2720 (properties `((upstream-name . "shinyTree")))
2721 (build-system r-build-system)
2722 (arguments
2723 `(#:modules ((guix build utils)
2724 (guix build r-build-system)
2725 (srfi srfi-1)
2726 (ice-9 popen))
2727 #:phases
2728 (modify-phases %standard-phases
2729 (add-after 'unpack 'replace-minified-javascript
2730 (lambda* (#:key inputs #:allow-other-keys)
2731 (with-directory-excursion "inst/www/jsTree-3.3.7/"
2732 (symlink (search-input-file inputs
2733 "/share/javascript/require.min.js")
2734 "libs/require.js")
2735 (call-with-values
2736 (lambda ()
2737 (unzip2
2738 `((,(assoc-ref inputs "js-jquery")
2739 "libs/jquery.js")
2740 ("jstree.js"
2741 "jstree.min.js"))))
2742 (lambda (sources targets)
2743 (for-each (lambda (source target)
2744 (format #t "Processing ~a --> ~a~%"
2745 source target)
2746 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
2747 (call-with-output-file target
2748 (lambda (port)
2749 (dump-port minified port)))))
2750 sources targets))))
2751 #t)))))
2752 (propagated-inputs
2753 (list r-htmlwidgets r-jsonlite r-promises r-shiny r-stringr))
2754 (inputs
2755 (list js-requirejs))
2756 (native-inputs
2757 `(("uglifyjs" ,node-uglify-js)
2758 ("js-jquery"
2759 ,(origin
2760 (method url-fetch)
2761 (uri "https://code.jquery.com/jquery-3.3.1.js")
2762 (sha256
2763 (base32
2764 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
2765 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
2766 (synopsis "jsTree bindings for Shiny")
2767 (description
2768 "This package exposes R bindings to jsTree, a JavaScript library that
2769 supports interactive trees, to enable rich, editable trees in Shiny.")
2770 (license license:expat)))
2771
2772 (define-public r-shinydashboard
2773 (package
2774 (name "r-shinydashboard")
2775 (version "0.7.2")
2776 (source (origin
2777 (method url-fetch)
2778 (uri (cran-uri "shinydashboard" version))
2779 (sha256
2780 (base32
2781 "0hrqkwlpb8rnmp5j74p134g4c4cl16icmwc2ip6k1634fa2y8vm5"))))
2782 (build-system r-build-system)
2783 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
2784 ;; Regenerate it from the included sources.
2785 (arguments
2786 `(#:phases
2787 (modify-phases %standard-phases
2788 (add-after 'unpack 'generate-minified-javascript
2789 (lambda _
2790 (with-directory-excursion "inst/AdminLTE"
2791 (let ((target "app.min.js")
2792 (source "app.js"))
2793 (format #t "Processing ~a --> ~a~%"
2794 source target)
2795 (delete-file target)
2796 (invoke "esbuild" source "--minify"
2797 (string-append "--outfile=" target)))))))))
2798 (propagated-inputs
2799 (list r-htmltools r-promises r-shiny))
2800 (native-inputs
2801 (list esbuild))
2802 (home-page "https://rstudio.github.io/shinydashboard/")
2803 (synopsis "Create dashboards with shiny")
2804 (description "This package provides an extension to the Shiny web
2805 application framework for R, making it easy to create attractive dashboards.")
2806 ;; This package includes software that was released under the Expat
2807 ;; license, but the whole package is released under GPL version 2 or
2808 ;; later.
2809 (license license:gpl2+)))
2810
2811 (define-public r-shinyfiles
2812 (package
2813 (name "r-shinyfiles")
2814 (version "0.9.2")
2815 (source
2816 (origin
2817 (method url-fetch)
2818 (uri (cran-uri "shinyFiles" version))
2819 (sha256
2820 (base32 "1l4a4v9ivxkj2vx6xw4z3pk7a8px23icppcgvgpybibq2j74pglg"))))
2821 (properties `((upstream-name . "shinyFiles")))
2822 (build-system r-build-system)
2823 (propagated-inputs
2824 (list r-fs r-htmltools r-jsonlite r-shiny r-tibble))
2825 (home-page "https://github.com/thomasp85/shinyFiles")
2826 (synopsis "Server-side file system viewer for Shiny")
2827 (description
2828 "This package provides functionality for client-side navigation of the
2829 server side file system in shiny apps. In case the app is running locally
2830 this gives the user direct access to the file system without the need to
2831 \"download\" files to a temporary location. Both file and folder selection as
2832 well as file saving is available.")
2833 (license license:gpl2+)))
2834
2835 (define-public r-shinythemes
2836 (package
2837 (name "r-shinythemes")
2838 (version "1.2.0")
2839 (source
2840 (origin
2841 (method url-fetch)
2842 (uri (cran-uri "shinythemes" version))
2843 (sha256
2844 (base32
2845 "0qr9bfxw8afxns44i2j4msignf6g5qb2nzpay2lpv343rrlqbmip"))))
2846 (properties `((upstream-name . "shinythemes")))
2847 (build-system r-build-system)
2848 (propagated-inputs (list r-shiny))
2849 (home-page "https://rstudio.github.io/shinythemes/")
2850 (synopsis "Themes for Shiny")
2851 (description
2852 "This package provides themes for use with Shiny. It includes several
2853 Bootstrap themes, which are packaged for use with Shiny applications.")
2854 ;; The package is released under version 3 of the GPL, but it includes
2855 ;; source files that are covered by the Expat license. It also includes
2856 ;; fonts under SIL or the ASL.
2857 (license (list license:gpl3 license:expat
2858 license:silofl1.1 license:asl2.0))))
2859
2860 ;; The package sources include minified variants of d3.js and non-minified
2861 ;; source code of d3-jetpack.
2862 (define-public r-d3r
2863 (package
2864 (name "r-d3r")
2865 (version "1.0.0")
2866 (source
2867 (origin
2868 (method url-fetch)
2869 (uri (cran-uri "d3r" version))
2870 (sha256
2871 (base32
2872 "1qijkllfaaw0lb29j8mappm8jz9kg8gkihxq5wqhb4gabsazdwva"))))
2873 (build-system r-build-system)
2874 (arguments
2875 `(#:modules ((guix build utils)
2876 (guix build r-build-system)
2877 (srfi srfi-1))
2878 #:phases
2879 (modify-phases %standard-phases
2880 (add-after 'unpack 'process-javascript
2881 (lambda* (#:key inputs #:allow-other-keys)
2882 (with-directory-excursion "inst/www/d3/"
2883 (call-with-values
2884 (lambda ()
2885 (unzip2
2886 `((,(assoc-ref inputs "d3.v3.js")
2887 "v3/dist/d3.min.js")
2888 (,(assoc-ref inputs "d3.v4.js")
2889 "v4/dist/d3.min.js")
2890 (,(assoc-ref inputs "d3.v5.js")
2891 "v5/dist/d3.min.js")
2892 (,(assoc-ref inputs "d3.v6.js")
2893 "v6/dist/d3.min.js")
2894 (,(assoc-ref inputs "d3.v7.js")
2895 "v7/dist/d3.min.js"))))
2896 (lambda (sources targets)
2897 (for-each (lambda (source target)
2898 (format #t "Processing ~a --> ~a~%"
2899 source target)
2900 (delete-file target)
2901 (invoke "esbuild" source "--minify"
2902 (string-append "--outfile=" target)))
2903 sources targets)))))))))
2904 (propagated-inputs
2905 (list r-dplyr r-htmltools r-rlang r-tidyr))
2906 (native-inputs
2907 `(("esbuild" ,esbuild)
2908 ("d3.v3.js"
2909 ,(origin
2910 (method url-fetch)
2911 (uri "https://d3js.org/d3.v3.js")
2912 (sha256
2913 (base32
2914 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
2915 ("d3.v4.js"
2916 ,(origin
2917 (method url-fetch)
2918 (uri "https://d3js.org/d3.v4.js")
2919 (sha256
2920 (base32
2921 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
2922 ("d3.v5.js"
2923 ,(origin
2924 (method url-fetch)
2925 (uri "https://d3js.org/d3.v5.js")
2926 (sha256
2927 (base32
2928 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))
2929 ("d3.v6.js"
2930 ,(origin
2931 (method url-fetch)
2932 (uri "https://d3js.org/d3.v6.js")
2933 (sha256
2934 (base32
2935 "1x6432ca7p1pfxhz3airzw943fincn9izzxkclc1wmphcvv2n2p9"))))
2936 ("d3.v7.js"
2937 ,(origin
2938 (method url-fetch)
2939 (uri "https://d3js.org/d3.v7.js")
2940 (sha256
2941 (base32
2942 "0sd6vavxs8mx5xyb8xahlqghdiczqd284a7d5wravhqnrj0bw097"))))))
2943 (home-page "https://github.com/timelyportfolio/d3r")
2944 (synopsis "d3.js utilities for R")
2945 (description
2946 "This package provides a suite of functions to help ease the use of the
2947 d3.js visualization library in R. These helpers include
2948 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
2949 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
2950 R objects into the JSON format that the d3.js library expects.")
2951 (license license:bsd-3)))
2952
2953 ;; We use the latest commit here because the last release was in 2016 while
2954 ;; the latest commit was in 2018.
2955 (define-public r-sankeyd3
2956 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
2957 (revision "1"))
2958 (package
2959 (name "r-sankeyd3")
2960 (version (git-version "0.3.2" revision commit))
2961 (source
2962 (origin
2963 (method git-fetch)
2964 (uri (git-reference
2965 (url "https://github.com/fbreitwieser/sankeyD3")
2966 (commit commit)))
2967 (file-name (git-file-name name version))
2968 (sha256
2969 (base32
2970 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
2971 (build-system r-build-system)
2972 (propagated-inputs
2973 (list r-d3r r-htmlwidgets r-shiny r-magrittr))
2974 (home-page "https://github.com/fbreitwieser/sankeyD3")
2975 (synopsis "Sankey network graphs from R")
2976 (description
2977 "This package provides an R library to generate Sankey network graphs
2978 in R and Shiny via the D3 visualization library.")
2979 ;; The R code is licensed under GPLv3+. It includes the non-minified
2980 ;; JavaScript source code of d3-sankey, which is released under the
2981 ;; 3-clause BSD license.
2982 (license (list license:gpl3+ license:bsd-3)))))
2983
2984 (define-public r-wesanderson
2985 (package
2986 (name "r-wesanderson")
2987 (version "0.3.6")
2988 (source
2989 (origin
2990 (method url-fetch)
2991 (uri (cran-uri "wesanderson" version))
2992 (sha256
2993 (base32
2994 "09mr6p2jmqdjq27cz974w5hyxgn929zp9z3inhxqmmh1582fmdi2"))))
2995 (properties `((upstream-name . "wesanderson")))
2996 (build-system r-build-system)
2997 (home-page "https://github.com/karthik/wesanderson")
2998 (synopsis "Wes Anderson color palette generator")
2999 (description
3000 "This package provides color palettes that have been generated mostly
3001 from Wes Anderson movies.")
3002 (license license:expat)))
3003
3004 (define-public r-gg-gap
3005 (package
3006 (name "r-gg-gap")
3007 (version "1.3")
3008 (source
3009 (origin
3010 (method url-fetch)
3011 (uri (cran-uri "gg.gap" version))
3012 (sha256
3013 (base32
3014 "0m66050ryn31xmsmmikjsssllasvjdmp9yjbwfdwfpwdv106zn9h"))))
3015 (properties `((upstream-name . "gg.gap")))
3016 (build-system r-build-system)
3017 (propagated-inputs
3018 (list r-cowplot r-ggplot2))
3019 (home-page "https://github.com/ChrisLou-bioinfo/gg.gap")
3020 (synopsis "Define segments on the y-axis for ggplot2")
3021 (description
3022 "The @code{gg.gap} function enables you to define segments for the y-axis
3023 in a ggplot2 plot.")
3024 (license license:gpl3)))
3025
3026 (define-public r-mbess
3027 (package
3028 (name "r-mbess")
3029 (version "4.9.0")
3030 (source
3031 (origin
3032 (method url-fetch)
3033 (uri (cran-uri "MBESS" version))
3034 (sha256
3035 (base32 "0qmyvjx2zn5hlzdbz8c94g8l4707swhn7sq9mxkdqiydmflzv0b5"))))
3036 (properties `((upstream-name . "MBESS")))
3037 (build-system r-build-system)
3038 (propagated-inputs
3039 (list r-boot r-lavaan r-mass r-mnormt r-nlme r-openmx r-sem r-semtools))
3040 (home-page "https://www3.nd.edu/~kkelley/site/MBESS.html")
3041 (synopsis "Methods for designing research studies")
3042 (description
3043 "This package implements methods that are useful in designing research
3044 studies and analyzing data, with particular emphasis on methods that are
3045 developed for or used within the behavioral, educational, and social
3046 sciences (broadly defined). That being said, many of the methods implemented
3047 within MBESS are applicable to a wide variety of disciplines. MBESS has a
3048 suite of functions for a variety of related topics, such as effect sizes,
3049 confidence intervals for effect sizes (including standardized effect sizes and
3050 noncentral effect sizes), sample size planning (from the @dfn{accuracy in
3051 parameter estimation} (AIPE), power analytic, equivalence, and minimum-risk
3052 point estimation perspectives), mediation analysis, various properties of
3053 distributions, and a variety of utility functions.")
3054 ;; Either version of the GPL.
3055 (license (list license:gpl2 license:gpl3))))
3056
3057 (define-public r-homologene
3058 (package
3059 (name "r-homologene")
3060 (version "1.4.68.19.3.27")
3061 (source
3062 (origin
3063 (method url-fetch)
3064 (uri (cran-uri "homologene" version))
3065 (sha256
3066 (base32 "0d7wxisk0vqk1n165v1i19bc02zv78h5r5d3jqai5y6nkmwn01sh"))))
3067 (properties `((upstream-name . "homologene")))
3068 (build-system r-build-system)
3069 (propagated-inputs
3070 (list r-dplyr r-magrittr r-purrr r-r-utils r-readr))
3071 (home-page "https://github.com/oganm/homologene")
3072 (synopsis "Quick access to homologene and gene annotation updates")
3073 (description
3074 "This package provides a wrapper for the homologene database by the
3075 National Center for Biotechnology Information (NCBI). It allows searching for
3076 gene homologs across species. The package also includes an updated version of
3077 the homologene database where gene identifiers and symbols are replaced with
3078 their latest (at the time of submission) version and functions to fetch latest
3079 annotation data to keep updated.")
3080 (license license:expat)))
3081
3082 (define-public r-ggtern
3083 (package
3084 (name "r-ggtern")
3085 (version "3.3.5")
3086 (source
3087 (origin
3088 (method url-fetch)
3089 (uri (cran-uri "ggtern" version))
3090 (sha256
3091 (base32 "15hhn8msy0l8zbq8ms0zvg1iajn1c28gd77v3hp6dvwwsla8zzbd"))))
3092 (properties `((upstream-name . "ggtern")))
3093 (build-system r-build-system)
3094 (propagated-inputs
3095 (list r-compositions
3096 r-ggplot2
3097 r-gridextra
3098 r-gtable
3099 r-hexbin
3100 r-latex2exp
3101 r-lattice
3102 r-mass
3103 r-plyr
3104 r-proto
3105 r-scales))
3106 (home-page "http://www.ggtern.com")
3107 (synopsis "Extension to ggplot2 for ternary diagrams")
3108 (description
3109 "This package extends the functionality of ggplot2, providing the
3110 capability to plot ternary diagrams for (a subset of) the ggplot2 geometries.
3111 Additionally, ggtern has implemented several new geometries which are
3112 unavailable to the standard ggplot2 release.")
3113 (license license:gpl2)))
3114
3115 (define-public r-tablerdash
3116 (package
3117 (name "r-tablerdash")
3118 (version "0.1.0")
3119 (source
3120 (origin
3121 (method url-fetch)
3122 (uri (cran-uri "tablerDash" version))
3123 (sha256
3124 (base32
3125 "1mnp6lxa7d669r325aynq1n3f35r9sy4v1fvdh4cymbf33s8mkmm"))
3126 (snippet
3127 '(begin
3128 ;; Delete minified JavaScript
3129 (for-each delete-file
3130 '("inst/tablerDash-0.1.0/require.min.js"
3131 "inst/bootstrap-4.0.0/bootstrap.bundle.min.js"))
3132 #true))))
3133 (properties `((upstream-name . "tablerDash")))
3134 (build-system r-build-system)
3135 (arguments
3136 `(#:modules ((guix build utils)
3137 (guix build r-build-system)
3138 (srfi srfi-1))
3139 #:phases
3140 (modify-phases %standard-phases
3141 (add-after 'unpack 'process-javascript
3142 (lambda* (#:key inputs #:allow-other-keys)
3143 (with-directory-excursion "inst"
3144 (call-with-values
3145 (lambda ()
3146 (unzip2
3147 `((,(assoc-ref inputs "js-requirejs")
3148 "tablerDash-0.1.0/require.min.js")
3149 (,(assoc-ref inputs "js-bootstrap")
3150 "bootstrap-4.0.0/bootstrap.bundle.min.js"))))
3151 (lambda (sources targets)
3152 (for-each (lambda (source target)
3153 (format #t "Processing ~a --> ~a~%"
3154 source target)
3155 (invoke "esbuild" source "--minify"
3156 (string-append "--outfile=" target)))
3157 sources targets))))
3158 #t)))))
3159 (propagated-inputs
3160 (list r-htmltools r-knitr r-shiny))
3161 (native-inputs
3162 `(("esbuild" ,esbuild)
3163 ("js-requirejs"
3164 ,(origin
3165 (method url-fetch)
3166 (uri "https://raw.githubusercontent.com/requirejs/requirejs/2.3.5/require.js")
3167 (sha256
3168 (base32
3169 "06w32mwqii9cx409ivda88z58qbkcdb4p6hf6jawchsgagaziyds"))))
3170 ("js-bootstrap"
3171 ,(origin
3172 (method url-fetch)
3173 (uri "https://raw.githubusercontent.com/twbs/bootstrap/\
3174 v4.0.0/dist/js/bootstrap.bundle.js")
3175 (sha256
3176 (base32
3177 "0cvfqffn45vfbj3fk6wmrhkyndhk4id89vgydssbbzxjkfwprfrj"))))))
3178 (home-page "https://rinterface.github.io/tablerDash/")
3179 (synopsis "Tabler API for Shiny")
3180 (description
3181 "This package provides an R interface to the
3182 @url{https://tabler.io,Tabler} HTML template. tablerDash is a light Bootstrap
3183 4 dashboard template. There are different layouts available such as a one
3184 page dashboard or a multi-page template, where the navigation menu is
3185 contained in the navigation bar.")
3186 (license license:gpl2+)))
3187
3188 (define-public r-spelling
3189 (package
3190 (name "r-spelling")
3191 (version "2.2")
3192 (source
3193 (origin
3194 (method url-fetch)
3195 (uri (cran-uri "spelling" version))
3196 (sha256
3197 (base32
3198 "179nj9w1v27qq9q5240ddvggp0795998sxyqjvbqjvq9dmach3bl"))))
3199 (properties `((upstream-name . "spelling")))
3200 (build-system r-build-system)
3201 (propagated-inputs
3202 (list r-commonmark r-hunspell r-knitr r-xml2))
3203 (home-page "https://docs.ropensci.org/spelling/")
3204 (synopsis "Tools for spell checking in R")
3205 (description
3206 "This is an R package for spell checking common document formats
3207 including LaTeX, markdown, manual pages, and DESCRIPTION files. It includes
3208 utilities to automate checking of documentation and vignettes as a unit test
3209 during @code{R CMD check}. Both British and American English are supported
3210 out of the box and other languages can be added. In addition, packages may
3211 define a wordlist to allow custom terminology without having to abuse
3212 punctuation.")
3213 (license license:expat)))
3214
3215 (define-public r-crosstalk
3216 (package
3217 (name "r-crosstalk")
3218 (version "1.2.0")
3219 (source
3220 (origin
3221 (method url-fetch)
3222 (uri (cran-uri "crosstalk" version))
3223 (sha256
3224 (base32
3225 "180y7mhpj17axpadwhh7s0qvrpdnag7g977vk256l96d6nmvlds2"))))
3226 (build-system r-build-system)
3227 (propagated-inputs
3228 (list r-htmltools r-jsonlite r-lazyeval r-r6))
3229 (home-page "https://rstudio.github.io/crosstalk/")
3230 (synopsis "Inter-widget interactivity for HTML widgets")
3231 (description
3232 "This package provides building blocks for allowing HTML widgets to
3233 communicate with each other, with Shiny or without (i.e. static @code{.html}
3234 files). It currently supports linked brushing and filtering.")
3235 (license license:expat)))
3236
3237 (define-public r-rook
3238 (package
3239 (name "r-rook")
3240 (version "1.1-1")
3241 (source
3242 (origin
3243 (method url-fetch)
3244 (uri (cran-uri "Rook" version))
3245 (sha256
3246 (base32
3247 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
3248 (properties `((upstream-name . "Rook")))
3249 (build-system r-build-system)
3250 (propagated-inputs (list r-brew))
3251 (home-page "https://cran.r-project.org/web/packages/Rook")
3252 (synopsis "Web server interface for R")
3253 (description
3254 "This package contains the Rook specification and convenience software
3255 for building and running Rook applications. A Rook application is an R
3256 reference class object that implements a @code{call} method or an R closure
3257 that takes exactly one argument, an environment, and returns a list with three
3258 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
3259 (license license:gpl2)))
3260
3261 (define-public r-miniui
3262 (package
3263 (name "r-miniui")
3264 (version "0.1.1.1")
3265 (source
3266 (origin
3267 (method url-fetch)
3268 (uri (cran-uri "miniUI" version))
3269 (sha256
3270 (base32
3271 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
3272 (properties `((upstream-name . "miniUI")))
3273 (build-system r-build-system)
3274 (propagated-inputs
3275 (list r-htmltools r-shiny))
3276 (home-page "https://cran.r-project.org/web/packages/miniUI/")
3277 (synopsis "Shiny UI widgets for small screens")
3278 (description
3279 "This package provides UI widget and layout functions for writing Shiny apps that
3280 work well on small screens.")
3281 (license license:gpl3)))
3282
3283 (define-public r-feather
3284 (package
3285 (name "r-feather")
3286 (version "0.3.5")
3287 (source
3288 (origin
3289 (method url-fetch)
3290 (uri (cran-uri "feather" version))
3291 (sha256
3292 (base32
3293 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
3294 (build-system r-build-system)
3295 (propagated-inputs
3296 (list r-hms r-rcpp r-tibble))
3297 (home-page "https://github.com/wesm/feather")
3298 (synopsis "R Bindings to the Feather API")
3299 (description "Read and write feather files, a lightweight binary columnar
3300 data store designed for maximum speed.")
3301 (license license:asl2.0)))
3302
3303 (define-public r-maps
3304 (package
3305 (name "r-maps")
3306 (version "3.4.0")
3307 (source
3308 (origin
3309 (method url-fetch)
3310 (uri (cran-uri "maps" version))
3311 (sha256
3312 (base32
3313 "0ispkx1szgwxhr0zzhdzgqqwcgc6psg7vry4sj4rb89w76rcq63r"))))
3314 (build-system r-build-system)
3315 (home-page "https://cran.r-project.org/web/packages/maps")
3316 (synopsis "Draw geographical maps")
3317 (description "This package provides an R module for display of maps.
3318 Projection code and larger maps are in separate packages (@code{mapproj} and
3319 @code{mapdata}).")
3320 (license license:gpl2)))
3321
3322 (define-public r-mapproj
3323 (package
3324 (name "r-mapproj")
3325 (version "1.2.8")
3326 (source
3327 (origin
3328 (method url-fetch)
3329 (uri (cran-uri "mapproj" version))
3330 (sha256
3331 (base32
3332 "10bpib827011fpgvzsmlv4j3i41s0r3cv1hvawwdlk753s7i0pw6"))))
3333 (build-system r-build-system)
3334 (propagated-inputs (list r-maps))
3335 (home-page "https://cran.r-project.org/web/packages/mapproj")
3336 (synopsis "Map projection in R")
3337 (description "This package converts latitude/longitude into projected
3338 coordinates.")
3339 (license (list license:gpl2 ; The R interface
3340 (license:non-copyleft ; The C code
3341 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
3342 "Lucent Public License Version 1.02")))))
3343
3344 (define-public r-rgooglemaps
3345 (package
3346 (name "r-rgooglemaps")
3347 (version "1.4.5.3")
3348 (source
3349 (origin
3350 (method url-fetch)
3351 (uri (cran-uri "RgoogleMaps" version))
3352 (sha256
3353 (base32
3354 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
3355 (properties `((upstream-name . "RgoogleMaps")))
3356 (build-system r-build-system)
3357 (propagated-inputs
3358 (list r-png r-sp))
3359 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
3360 (synopsis "Use Google Maps in R")
3361 (description "This package serves two purposes:
3362 @enumerate
3363 @item Provide a comfortable R interface to query the Google server for static
3364 maps, and
3365 @item Use the map as a background image to overlay plots within R. This
3366 requires proper coordinate scaling.
3367 @end enumerate\n")
3368 (license license:gpl2+)))
3369
3370 (define-public r-geosphere
3371 (package
3372 (name "r-geosphere")
3373 (version "1.5-14")
3374 (source
3375 (origin
3376 (method url-fetch)
3377 (uri (cran-uri "geosphere" version))
3378 (sha256
3379 (base32
3380 "0bg4vfmrw140j2ax0p6bflvb77w03ir39wa87l96rj473jpa9hzj"))))
3381 (build-system r-build-system)
3382 (propagated-inputs (list r-sp))
3383 (home-page "https://cran.r-project.org/web/packages/geosphere")
3384 (synopsis "Spherical trigonometry")
3385 (description "This package computes spherical trigonometry for geographic
3386 applications. That is, compute distances and related measures for angular
3387 (longitude/latitude) locations.")
3388 (license license:gpl3+)))
3389
3390 (define-public r-jpeg
3391 (package
3392 (name "r-jpeg")
3393 (version "0.1-9")
3394 (source
3395 (origin
3396 (method url-fetch)
3397 (uri (cran-uri "jpeg" version))
3398 (sha256
3399 (base32
3400 "0wihj538wdnr71wdldym83qadb4kh68a6rkallwbh2f25r27b881"))))
3401 (build-system r-build-system)
3402 (inputs (list libjpeg-turbo))
3403 (home-page "https://www.rforge.net/jpeg/")
3404 (synopsis "Read and write JPEG images with R")
3405 (description "This package provides a way to read, write and display
3406 bitmap images stored in the JPEG format with R. It can read and write both
3407 files and in-memory raw vectors.")
3408 (license license:gpl2+)))
3409
3410 (define-public r-ggmap
3411 (package
3412 (name "r-ggmap")
3413 (version "3.0.0")
3414 (source
3415 (origin
3416 (method url-fetch)
3417 (uri (cran-uri "ggmap" version))
3418 (sha256
3419 (base32
3420 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
3421 (build-system r-build-system)
3422 (propagated-inputs
3423 (list r-bitops
3424 r-digest
3425 r-dplyr
3426 r-ggplot2
3427 r-glue
3428 r-httr
3429 r-jpeg
3430 r-magrittr
3431 r-plyr
3432 r-png
3433 r-purrr
3434 r-rgooglemaps
3435 r-rjson
3436 r-scales
3437 r-stringr
3438 r-tibble
3439 r-tidyr))
3440 (home-page "https://github.com/dkahle/ggmap")
3441 (synopsis "Spatial visualization with ggplot2")
3442 (description "This package provides a collection of functions to visualize
3443 spatial data and models on top of static maps from various online sources (e.g
3444 Google Maps and Stamen Maps). It includes tools common to those tasks,
3445 including functions for geolocation and routing.")
3446 (license license:gpl2)))
3447
3448 (define-public r-haven
3449 (package
3450 (name "r-haven")
3451 (version "2.5.0")
3452 (source
3453 (origin
3454 (method url-fetch)
3455 (uri (cran-uri "haven" version))
3456 (sha256
3457 (base32
3458 "1x5g6kjrzcyarbjz91f4aaspx7rb50qs6a9y29mzr3mjq4dk305m"))
3459 (modules '((guix build utils)))
3460 (snippet
3461 ;; unvendor readstat
3462 '(delete-file-recursively "src/readstat"))))
3463 (build-system r-build-system)
3464 (arguments
3465 '(#:phases
3466 (modify-phases %standard-phases
3467 (add-after 'unpack 'unbundle-readstat
3468 (lambda _
3469 ;; Not required, since we’re not building readstat.
3470 (substitute* "src/Makevars"
3471 (("-lz") "-lreadstat")))))))
3472 (inputs
3473 (list readstat))
3474 (native-inputs
3475 (list r-knitr))
3476 (propagated-inputs
3477 (list r-cli
3478 r-cpp11
3479 r-forcats
3480 r-hms
3481 r-lifecycle
3482 r-rlang
3483 r-readr
3484 r-tibble
3485 r-tidyselect
3486 r-vctrs))
3487 (home-page "https://haven.tidyverse.org")
3488 (synopsis "Import and export SPSS, Stata and SAS files")
3489 (description
3490 "This package lets you import foreign statistical formats into R via the
3491 @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
3492 (license license:expat)))
3493
3494 (define-public r-amap
3495 (package
3496 (name "r-amap")
3497 (version "0.8-18")
3498 (source (origin
3499 (method url-fetch)
3500 (uri (cran-uri "amap" version))
3501 (sha256
3502 (base32
3503 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
3504 (build-system r-build-system)
3505 (native-inputs
3506 (list gfortran))
3507 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
3508 (synopsis "Another multidimensional analysis package")
3509 (description "This package provides tools for clustering and principal
3510 component analysis (with robust methods, and parallelized functions).")
3511 (license license:gpl2+)))
3512
3513 (define-public r-ape
3514 (package
3515 (name "r-ape")
3516 (version "5.6-2")
3517 (source
3518 (origin
3519 (method url-fetch)
3520 (uri (cran-uri "ape" version))
3521 (sha256
3522 (base32
3523 "0mqjsh7maczd02iwa4fb896q3kgd9jnlilq7y1yz18ch0c54aqlv"))))
3524 (build-system r-build-system)
3525 (propagated-inputs
3526 (list r-lattice r-nlme r-rcpp))
3527 (home-page "http://ape-package.ird.fr/")
3528 (synopsis "Analyses of phylogenetics and evolution")
3529 (description
3530 "This package provides functions for reading, writing, plotting, and
3531 manipulating phylogenetic trees, analyses of comparative data in a
3532 phylogenetic framework, ancestral character analyses, analyses of
3533 diversification and macroevolution, computing distances from DNA sequences,
3534 and several other tools.")
3535 (license license:gpl2+)))
3536
3537 (define-public r-abbyyr
3538 (package
3539 (name "r-abbyyr")
3540 (version "0.5.5")
3541 (source
3542 (origin
3543 (method url-fetch)
3544 (uri (cran-uri "abbyyR" version))
3545 (sha256
3546 (base32
3547 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
3548 (properties `((upstream-name . "abbyyR")))
3549 (build-system r-build-system)
3550 (propagated-inputs
3551 (list r-curl
3552 r-httr
3553 r-plyr
3554 r-progress
3555 r-readr
3556 r-xml))
3557 (home-page "https://github.com/soodoku/abbyyR")
3558 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
3559 (description
3560 "This package provides tools to get text from images of text using Abbyy
3561 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
3562 OCR images, barcodes, forms, documents with machine readable zones, e.g.
3563 passports and get the results in a variety of formats including plain text and
3564 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
3565 (license license:expat)))
3566
3567 (define-public r-colorspace
3568 (package
3569 (name "r-colorspace")
3570 (version "2.0-3")
3571 (source
3572 (origin
3573 (method url-fetch)
3574 (uri (cran-uri "colorspace" version))
3575 (sha256
3576 (base32 "0zw52s8g2gxp8i1ax96azxmxqrbhb7aad5px0c1vgr6n9p682mp7"))))
3577 (build-system r-build-system)
3578 (native-inputs
3579 (list r-knitr))
3580 (home-page "https://cran.r-project.org/web/packages/colorspace")
3581 (synopsis "Color space manipulation")
3582 (description
3583 "This package carries out a mapping between assorted color spaces
3584 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
3585 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
3586 colors are provided.")
3587 (license license:bsd-3)))
3588
3589 (define-public r-glue
3590 (package
3591 (name "r-glue")
3592 (version "1.6.2")
3593 (source
3594 (origin
3595 (method url-fetch)
3596 (uri (cran-uri "glue" version))
3597 (sha256
3598 (base32
3599 "1gzxk5jgdh2xq9r7z09xs306ygzf27vhg3pyfl7ck1755gqii9cx"))))
3600 (build-system r-build-system)
3601 ;; knitr depends on glue, so we can't add knitr here to build the
3602 ;; vignettes.
3603 #;
3604 (native-inputs
3605 `(("r-knitr" ,r-knitr)))
3606 (home-page "https://github.com/tidyverse/glue")
3607 (synopsis "Interpreted string literals")
3608 (description
3609 "This package provides an implementation of interpreted string literals,
3610 inspired by Python's Literal String Interpolation (PEP-0498) and
3611 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
3612 (license license:expat)))
3613
3614 (define-public r-palmerpenguins
3615 (package
3616 (name "r-palmerpenguins")
3617 (version "0.1.0")
3618 (source
3619 (origin
3620 (method url-fetch)
3621 (uri (cran-uri "palmerpenguins" version))
3622 (sha256
3623 (base32
3624 "0q1k3cdkliq7kwrg1n0vs9b6cjwyfarhlgdijhp9c6riy6y5ik7x"))))
3625 (properties
3626 `((upstream-name . "palmerpenguins")))
3627 (build-system r-build-system)
3628 (home-page "https://allisonhorst.github.io/palmerpenguins/")
3629 (synopsis "Palmer Archipelago (Antarctica) penguin data")
3630 (description
3631 "This package includes size measurements, clutch observations, and blood
3632 isotope ratios for adult foraging Adélie, Chinstrap, and Gentoo penguins
3633 observed on islands in the Palmer Archipelago near Palmer Station, Antarctica.
3634 Data were collected and made available by Dr. Kristen Gorman and the Palmer
3635 Station Long Term Ecological Research (LTER) Program.")
3636 (license license:cc0)))
3637
3638 (define-public r-pastecs
3639 (package
3640 (name "r-pastecs")
3641 (version "1.3.21")
3642 (source (origin
3643 (method url-fetch)
3644 (uri (cran-uri "pastecs" version))
3645 (sha256
3646 (base32
3647 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
3648 (build-system r-build-system)
3649 (propagated-inputs
3650 (list r-boot))
3651 (home-page "https://github.com/phgrosjean/pastecs")
3652 (synopsis "Analysis of space-time ecological series")
3653 (description
3654 "This package provides functions for regulation, decomposition and analysis
3655 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
3656 initiative to bring PASSTEC 2000 functionalities to R.")
3657 (license license:gpl2+)))
3658
3659 (define-public r-partykit
3660 (package
3661 (name "r-partykit")
3662 (version "1.2-15")
3663 (source (origin
3664 (method url-fetch)
3665 (uri (cran-uri "partykit" version))
3666 (sha256
3667 (base32
3668 "1b73s5l19yicwginqsg5xr7fzb005x372n0wb34kk6jb5x5lbsdj"))))
3669 (build-system r-build-system)
3670 (propagated-inputs
3671 (list r-formula
3672 r-inum
3673 r-libcoin
3674 r-mvtnorm
3675 r-rpart
3676 r-survival))
3677 (home-page "http://partykit.R-Forge.R-project.org/partykit")
3678 (synopsis "Toolkit for recursive partytioning")
3679 (description
3680 "This package provides a toolkit with infrastructure for representing,
3681 summarizing, and visualizing tree-structured regression and classification
3682 models.")
3683 (license license:gpl2+)))
3684
3685 (define-public r-plogr
3686 (package
3687 (name "r-plogr")
3688 (version "0.2.0")
3689 (source
3690 (origin
3691 (method url-fetch)
3692 (uri (cran-uri "plogr" version))
3693 (sha256
3694 (base32
3695 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
3696 (build-system r-build-system)
3697 (home-page "https://github.com/krlmlr/plogr")
3698 (synopsis "R bindings for the plog C++ logging library")
3699 (description
3700 "This package provides the header files for a stripped-down version of
3701 the plog header-only C++ logging library, and a method to log to R's standard
3702 error stream.")
3703 (license license:expat)))
3704
3705 (define-public r-pls
3706 (package
3707 (name "r-pls")
3708 (version "2.8-0")
3709 (source
3710 (origin
3711 (method url-fetch)
3712 (uri (cran-uri "pls" version))
3713 (sha256
3714 (base32 "1gqq8rcq6p0hs2gfzwfj690rz3pwywmnv8qzcv0wsd6aaqkskwzg"))))
3715 (build-system r-build-system)
3716 (home-page "https://mevik.net/work/software/pls.html")
3717 (synopsis "Partial Least Squares and Principal Component Regression")
3718 (description
3719 "The pls package implements multivariate regression methods: Partial Least
3720 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
3721 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
3722
3723 @itemize
3724 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
3725 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
3726 @item multi-response models (or @dfn{PLS2})
3727 @item flexible cross-validation
3728 @item Jackknife variance estimates of regression coefficients
3729 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
3730 (R)MSEP, R², and correlation loadings
3731 @item formula interface, modelled after @code{lm()}, with methods for predict,
3732 print, summary, plot, update, etc.
3733 @item extraction functions for coefficients, scores, and loadings
3734 @item MSEP, RMSEP, and R² estimates
3735 @item multiplicative scatter correction (@dfn{MSC})
3736 @end itemize\n")
3737 (license license:gpl2)))
3738
3739 (define-public r-ps
3740 (package
3741 (name "r-ps")
3742 (version "1.7.0")
3743 (source
3744 (origin
3745 (method url-fetch)
3746 (uri (cran-uri "ps" version))
3747 (sha256
3748 (base32 "1qaj9gyz7q09aadlnj5al53k2pa4axmzjsbndf5r0b51qqrcy842"))))
3749 (build-system r-build-system)
3750 (home-page "https://ps.r-lib.org")
3751 (synopsis "List, query, and manipulate system processes")
3752 (description
3753 "The ps package implements an API to list, query, and manipulate system
3754 processes. Most of its code is based on the @code{psutil} Python package.")
3755 (license license:bsd-3)))
3756
3757 (define-public r-pkgbuild
3758 (package
3759 (name "r-pkgbuild")
3760 (version "1.3.1")
3761 (source
3762 (origin
3763 (method url-fetch)
3764 (uri (cran-uri "pkgbuild" version))
3765 (sha256
3766 (base32 "0j6v5nbp8kg1m3j999gd1qsbdmqcqm1mf28ngmm177miwv8q4skw"))))
3767 (build-system r-build-system)
3768 (propagated-inputs
3769 (list r-callr
3770 r-cli
3771 r-crayon
3772 r-desc
3773 r-prettyunits
3774 r-r6
3775 r-rprojroot
3776 r-withr))
3777 (home-page "https://github.com/r-pkgs/pkgbuild")
3778 (synopsis "Find tools needed to build R packages")
3779 (description
3780 "This package provides functions used to build R packages. It locates
3781 compilers needed to build R packages on various platforms and ensures the PATH
3782 is configured appropriately so R can use them.")
3783 (license license:gpl3)))
3784
3785 (define-public r-pkgload
3786 (package
3787 (name "r-pkgload")
3788 (version "1.2.4")
3789 (source
3790 (origin
3791 (method url-fetch)
3792 (uri (cran-uri "pkgload" version))
3793 (sha256
3794 (base32
3795 "03yr9mswx9nij27bp21q6c533zx310xwzhwm52dwr7554k42p4fn"))))
3796 (build-system r-build-system)
3797 (propagated-inputs
3798 (list r-cli
3799 r-crayon
3800 r-desc
3801 r-rlang
3802 r-rprojroot
3803 r-rstudioapi
3804 r-withr))
3805 (home-page "https://github.com/r-lib/pkgload")
3806 (synopsis "Simulate package installation and attach")
3807 (description
3808 "This package simulates the process of installing a package and then
3809 attaching it. This is a key part of the @code{devtools} package as it allows
3810 you to rapidly iterate while developing a package.")
3811 (license license:gpl3)))
3812
3813 (define-public r-pvclust
3814 (package
3815 (name "r-pvclust")
3816 (version "2.2-0")
3817 (source (origin
3818 (method url-fetch)
3819 (uri (cran-uri "pvclust" version))
3820 (sha256
3821 (base32
3822 "0082icm54k2yq60k06qpr92a626k39j2jr0046lva4ylmhxqb4kq"))))
3823 (build-system r-build-system)
3824 (home-page "https://github.com/shimo-lab/pvclust")
3825 (synopsis
3826 "Hierarchical clustering with P-values via multiscale bootstrap resampling")
3827 (description "This package provides an implementation of multiscale bootstrap
3828 resampling for assessing the uncertainty in hierarchical cluster analysis. It
3829 provides an AU (approximately unbiased) P-value as well as a BP (bootstrap probability)
3830 value for each cluster in a dendrogram.")
3831 (license license:gpl2+)))
3832
3833 (define-public r-rcpp
3834 (package
3835 (name "r-rcpp")
3836 (version "1.0.8.3")
3837 (source
3838 (origin
3839 (method url-fetch)
3840 (uri (cran-uri "Rcpp" version))
3841 (sha256
3842 (base32 "1gzqfn1xjawzig30ama3rldykqpcn6bd8sg684mrfvpmv96bi9cx"))))
3843 (build-system r-build-system)
3844 (home-page "http://www.rcpp.org")
3845 (synopsis "Seamless R and C++ integration")
3846 (description
3847 "The Rcpp package provides R functions as well as C++ classes which offer
3848 a seamless integration of R and C++. Many R data types and objects can be
3849 mapped back and forth to C++ equivalents which facilitates both writing of new
3850 code as well as easier integration of third-party libraries. Documentation
3851 about Rcpp is provided by several vignettes included in this package, via the
3852 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
3853 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
3854 @code{citation(\"Rcpp\")} for details on these last two.")
3855 (license license:gpl2+)))
3856
3857 (define-public r-rcppml
3858 (package
3859 (name "r-rcppml")
3860 (version "0.3.7")
3861 (source
3862 (origin
3863 (method url-fetch)
3864 (uri (cran-uri "RcppML" version))
3865 (sha256
3866 (base32 "1ih8i7i6m221iw227mnl3rvnaw2l53h8fpnc4f8yn9sm10anap1j"))))
3867 (properties `((upstream-name . "RcppML")))
3868 (build-system r-build-system)
3869 (propagated-inputs (list r-matrix r-rcpp r-rcppeigen))
3870 (native-inputs (list r-knitr))
3871 (home-page "https://github.com/zdebruine/RcppML")
3872 (synopsis "Rcpp machine learning library")
3873 (description
3874 "This package provides fast machine learning algorithms including matrix
3875 factorization and divisive clustering for large sparse and dense matrices.")
3876 (license license:gpl2+)))
3877
3878 (define-public r-rcppthread
3879 (package
3880 (name "r-rcppthread")
3881 (version "2.1.3")
3882 (source
3883 (origin
3884 (method url-fetch)
3885 (uri (cran-uri "RcppThread" version))
3886 (sha256
3887 (base32
3888 "0iprpidf7q1wlrgr9dwiikb6apqk80pyjcyni56k64nl7lrkszhj"))))
3889 (properties `((upstream-name . "RcppThread")))
3890 (build-system r-build-system)
3891 (home-page
3892 "https://github.com/tnagler/RcppThread")
3893 (synopsis "R threading in C++")
3894 (description
3895 "This package provides a C++11-style thread class and thread pool that can
3896 safely be interrupted from R.")
3897 (license license:expat)))
3898
3899 (define-public r-rcppnumerical
3900 (package
3901 (name "r-rcppnumerical")
3902 (version "0.4-0")
3903 (source (origin
3904 (method url-fetch)
3905 (uri (cran-uri "RcppNumerical" version))
3906 (sha256
3907 (base32
3908 "1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
3909 (build-system r-build-system)
3910 (propagated-inputs
3911 (list r-rcpp r-rcppeigen))
3912 (home-page "https://github.com/yixuan/RcppNumerical")
3913 (synopsis"Numerical computing libraries integration with @code{Rcpp}")
3914 (description "This package provides a collection of libraries for numerical
3915 computing (numerical integration, optimization, etc.) and their integration
3916 with @code{Rcpp}.")
3917 (license license:gpl2+)))
3918
3919 (define-public r-rcppxptrutils
3920 (package
3921 (name "r-rcppxptrutils")
3922 (version "0.1.2")
3923 (source
3924 (origin
3925 (method url-fetch)
3926 (uri (cran-uri "RcppXPtrUtils" version))
3927 (sha256
3928 (base32 "0hm57nf4dzgsmg4hjj6wikwjx93fgfwkmybw6ly4b58wi6qwml1l"))))
3929 (properties `((upstream-name . "RcppXPtrUtils")))
3930 (build-system r-build-system)
3931 (propagated-inputs (list r-rcpp))
3932 (home-page "https://github.com/Enchufa2/RcppXPtrUtils")
3933 (synopsis "XPtr add-ons for Rcpp")
3934 (description
3935 "This package provides the means to compile user-supplied C++ functions
3936 with Rcpp and retrieve an @code{XPtr} that can be passed to other C++
3937 components.")
3938 (license license:expat)))
3939
3940 (define-public r-bindr
3941 (package
3942 (name "r-bindr")
3943 (version "0.1.1")
3944 (source
3945 (origin
3946 (method url-fetch)
3947 (uri (cran-uri "bindr" version))
3948 (sha256
3949 (base32
3950 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
3951 (build-system r-build-system)
3952 (home-page "https://github.com/krlmlr/bindr")
3953 (synopsis "Parametrized active bindings")
3954 (description
3955 "This package provides a simple interface for creating active bindings
3956 where the bound function accepts additional arguments.")
3957 (license license:expat)))
3958
3959 (define-public r-bindrcpp
3960 (package
3961 (name "r-bindrcpp")
3962 (version "0.2.2")
3963 (source
3964 (origin
3965 (method url-fetch)
3966 (uri (cran-uri "bindrcpp" version))
3967 (sha256
3968 (base32
3969 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
3970 (build-system r-build-system)
3971 (propagated-inputs
3972 (list r-bindr r-plogr r-rcpp))
3973 (home-page "https://github.com/krlmlr/bindrcpp")
3974 (synopsis "Rcpp interface to active bindings")
3975 (description
3976 "This package provides an easy way to fill an environment with active
3977 bindings that call a C++ function.")
3978 (license license:expat)))
3979
3980 (define-public r-auc
3981 (package
3982 (name "r-auc")
3983 (version "0.3.2")
3984 (source
3985 (origin
3986 (method url-fetch)
3987 (uri (cran-uri "AUC" version))
3988 (sha256
3989 (base32
3990 "07xf47kypqbsg2mixmq6mnh4s89aqan9bgl6kfv6lbx8ajv2asw3"))))
3991 (properties `((upstream-name . "AUC")))
3992 (build-system r-build-system)
3993 (home-page "https://cran.r-project.org/web/packages/AUC")
3994 (synopsis "Compute the area under the curve of selected measures")
3995 (description
3996 "This package includes functions to compute the area under the curve of
3997 selected measures: the area under the sensitivity curve (AUSEC), the area
3998 under the specificity curve (AUSPC), the area under the accuracy
3999 curve (AUACC), and the area under the receiver operating characteristic
4000 curve (AUROC). The curves can also be visualized. Support for partial areas
4001 is provided.")
4002 (license license:gpl2+)))
4003
4004 (define-public r-calibrate
4005 (package
4006 (name "r-calibrate")
4007 (version "1.7.7")
4008 (source
4009 (origin
4010 (method url-fetch)
4011 (uri (cran-uri "calibrate" version))
4012 (sha256
4013 (base32 "19kgrnsyq67iqv1biyssqi30a6v2836ql20nabpy2m692ns0jfvi"))))
4014 (build-system r-build-system)
4015 (propagated-inputs
4016 (list r-mass))
4017 (home-page "https://cran.r-project.org/web/packages/calibrate")
4018 (synopsis "Calibration of scatterplot and biplot axes")
4019 (description
4020 "This is a package for drawing calibrated scales with tick marks
4021 on (non-orthogonal) variable vectors in scatterplots and biplots.")
4022 (license license:gpl2)))
4023
4024 (define-public r-shape
4025 (package
4026 (name "r-shape")
4027 (version "1.4.6")
4028 (source
4029 (origin
4030 (method url-fetch)
4031 (uri (cran-uri "shape" version))
4032 (sha256
4033 (base32
4034 "0yqbrrx2ywmfl99s6d1n6jblc63k1mxbiqyv8y0kq8jws1g3w45r"))))
4035 (build-system r-build-system)
4036 (home-page "https://cran.r-project.org/web/packages/shape")
4037 (synopsis "Functions for plotting graphical shapes")
4038 (description
4039 "This package provides functions for plotting graphical shapes such as
4040 ellipses, circles, cylinders, arrows, ...")
4041 (license license:gpl3+)))
4042
4043 (define-public r-globaloptions
4044 (package
4045 (name "r-globaloptions")
4046 (version "0.1.2")
4047 (source
4048 (origin
4049 (method url-fetch)
4050 (uri (cran-uri "GlobalOptions" version))
4051 (sha256
4052 (base32 "0gkm77w6db9ajyncy1xdcivplap06a51zi99m009kylccschd2a7"))))
4053 (properties `((upstream-name . "GlobalOptions")))
4054 (build-system r-build-system)
4055 (native-inputs
4056 (list r-knitr))
4057 (home-page "https://github.com/jokergoo/GlobalOptions")
4058 (synopsis "Generate functions to get or set global options")
4059 (description
4060 "This package provides more controls on the option values such as
4061 validation and filtering on the values, making options invisible or private.")
4062 (license license:gpl2+)))
4063
4064 (define-public r-circlize
4065 (package
4066 (name "r-circlize")
4067 (version "0.4.15")
4068 (source
4069 (origin
4070 (method url-fetch)
4071 (uri (cran-uri "circlize" version))
4072 (sha256
4073 (base32
4074 "1iswb7dy08as3pbzxvhx5qlsbnwvp79nwg8m158nfz7y2d9xa0nn"))))
4075 (build-system r-build-system)
4076 (propagated-inputs
4077 (list r-colorspace r-globaloptions r-shape))
4078 (native-inputs
4079 (list r-knitr))
4080 (home-page "https://github.com/jokergoo/circlize")
4081 (synopsis "Circular visualization")
4082 (description
4083 "Circular layout is an efficient way to visualise huge amounts of
4084 information. This package provides an implementation of circular layout
4085 generation in R as well as an enhancement of available software. Its
4086 flexibility is based on the usage of low-level graphics functions such that
4087 self-defined high-level graphics can be easily implemented by users for
4088 specific purposes. Together with the seamless connection between the powerful
4089 computational and visual environment in R, it gives users more convenience and
4090 freedom to design figures for better understanding complex patterns behind
4091 multi-dimensional data.")
4092 (license license:gpl2+)))
4093
4094 (define-public r-powerlaw
4095 (package
4096 (name "r-powerlaw")
4097 (version "0.70.6")
4098 (source
4099 (origin
4100 (method url-fetch)
4101 (uri (cran-uri "poweRlaw" version))
4102 (sha256
4103 (base32 "14d1myxllvm1grnfiszzzxaiqpb2jpmsi19wq70r8r2wki293h7g"))))
4104 (properties `((upstream-name . "poweRlaw")))
4105 (build-system r-build-system)
4106 (propagated-inputs
4107 (list r-pracma))
4108 (native-inputs
4109 (list r-knitr))
4110 (home-page "https://github.com/csgillespie/poweRlaw")
4111 (synopsis "Tools for the analysis of heavy tailed distributions")
4112 (description
4113 "This package provides an implementation of maximum likelihood estimators
4114 for a variety of heavy tailed distributions, including both the discrete and
4115 continuous power law distributions. Additionally, a goodness-of-fit based
4116 approach is used to estimate the lower cut-off for the scaling region.")
4117 ;; Any of these GPL versions.
4118 (license (list license:gpl2 license:gpl3))))
4119
4120 (define-public r-compare
4121 (package
4122 (name "r-compare")
4123 (version "0.2-6")
4124 (source
4125 (origin
4126 (method url-fetch)
4127 (uri (cran-uri "compare" version))
4128 (sha256
4129 (base32
4130 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
4131 (build-system r-build-system)
4132 (home-page "https://cran.r-project.org/web/packages/compare")
4133 (synopsis "Comparing objects for differences")
4134 (description
4135 "This package provides functions to compare a model object to a
4136 comparison object. If the objects are not identical, the functions can be
4137 instructed to explore various modifications of the objects (e.g., sorting
4138 rows, dropping names) to see if the modified versions are identical.")
4139 (license license:gpl2+)))
4140
4141 (define-public r-dendextend
4142 (package
4143 (name "r-dendextend")
4144 (version "1.15.2")
4145 (source
4146 (origin
4147 (method url-fetch)
4148 (uri (cran-uri "dendextend" version))
4149 (sha256
4150 (base32
4151 "06wjs8451hmnimzgngpzbai3yrgy33133vzzapa8jib9crdqi8sb"))))
4152 (build-system r-build-system)
4153 (propagated-inputs
4154 (list r-ggplot2 r-magrittr r-viridis))
4155 (native-inputs
4156 (list r-knitr))
4157 (home-page "https://cran.r-project.org/web/packages/dendextend")
4158 (synopsis "Extending 'dendrogram' functionality in R")
4159 (description
4160 "This package offers a set of functions for extending @code{dendrogram}
4161 objects in R, letting you visualize and compare trees of hierarchical
4162 clusterings. You can adjust a tree's graphical parameters (the color, size,
4163 type, etc of its branches, nodes and labels) and visually and statistically
4164 compare different dendrograms to one another.")
4165 ;; Any of these versions
4166 (license (list license:gpl2 license:gpl3))))
4167
4168 (define-public r-getoptlong
4169 (package
4170 (name "r-getoptlong")
4171 (version "1.0.5")
4172 (source
4173 (origin
4174 (method url-fetch)
4175 (uri (cran-uri "GetoptLong" version))
4176 (sha256
4177 (base32
4178 "00fpm6nd3kqa2ikasxa62jzywi46fvvmx1mdavcp5yrxxn37j8wc"))))
4179 (properties `((upstream-name . "GetoptLong")))
4180 (build-system r-build-system)
4181 (inputs
4182 (list perl))
4183 (propagated-inputs
4184 (list r-crayon r-globaloptions r-rjson))
4185 (native-inputs
4186 (list r-knitr))
4187 (home-page "https://github.com/jokergoo/GetoptLong")
4188 (synopsis "Parsing command-line arguments and variable interpolation")
4189 (description
4190 "This is yet another command-line argument parser which wraps the
4191 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
4192 use in R. It also provides a simple way for variable interpolation in R.")
4193 (license license:gpl2+)))
4194
4195 (define-public r-fastmatch
4196 (package
4197 (name "r-fastmatch")
4198 (version "1.1-3")
4199 (source
4200 (origin
4201 (method url-fetch)
4202 (uri (cran-uri "fastmatch" version))
4203 (sha256
4204 (base32
4205 "0qcq1gwl9pijgp34giyq5y9rk0ly3d7xza2b7r68xx63ifqa1vqx"))))
4206 (build-system r-build-system)
4207 (home-page "https://www.rforge.net/fastmatch")
4208 (synopsis "Fast match function")
4209 (description
4210 "This package provides a fast @code{match} replacement for cases that
4211 require repeated look-ups. It is slightly faster that R's built-in
4212 @code{match} function on first match against a table, but extremely fast on
4213 any subsequent lookup as it keeps the hash table in memory.")
4214 (license license:gpl2)))
4215
4216 (define-public r-ff
4217 (package
4218 (name "r-ff")
4219 (version "4.0.7")
4220 (source
4221 (origin
4222 (method url-fetch)
4223 (uri (cran-uri "ff" version))
4224 (sha256
4225 (base32
4226 "1yl3ipzz9bjkfy9bbna7xz5n7iz4lchnw5l7agww7by764yk6iqa"))))
4227 (build-system r-build-system)
4228 (propagated-inputs (list r-bit))
4229 (home-page "http://ff.r-forge.r-project.org/")
4230 (synopsis "Memory-efficient storage of large data on disk and access functions")
4231 (description
4232 "This package provides data structures that are stored on disk but
4233 behave (almost) as if they were in RAM by transparently mapping only a section
4234 in main memory.")
4235 ;; error Architecture not supported.
4236 (supported-systems (delete "aarch64-linux" %supported-systems))
4237 (license license:gpl2)))
4238
4239 (define-public r-ffbase
4240 (package
4241 (name "r-ffbase")
4242 (version "0.13.3")
4243 (source
4244 (origin
4245 (method url-fetch)
4246 (uri (cran-uri "ffbase" version))
4247 (sha256
4248 (base32
4249 "1dp6lblfq2j7r1b4b8ls47jlx8j27n88d5vp8w116lb8pa01zxmk"))))
4250 (build-system r-build-system)
4251 (propagated-inputs
4252 (list r-bit r-fastmatch r-ff))
4253 (home-page "https://github.com/edwindj/ffbase")
4254 (synopsis "Basic statistical functions for package 'ff'")
4255 (description
4256 "This package extends the out of memory vectors of @code{ff} with
4257 statistical functions and other utilities to ease their usage.")
4258 (license license:gpl3)))
4259
4260 (define-public r-prettyunits
4261 (package
4262 (name "r-prettyunits")
4263 (version "1.1.1")
4264 (source
4265 (origin
4266 (method url-fetch)
4267 (uri (cran-uri "prettyunits" version))
4268 (sha256
4269 (base32
4270 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
4271 (build-system r-build-system)
4272 (home-page "https://github.com/gaborcsardi/prettyunits")
4273 (synopsis "Pretty, human readable formatting of quantities")
4274 (description
4275 "This package provides tools for pretty, human readable formatting of
4276 quantities.")
4277 (license license:expat)))
4278
4279 (define-public r-princurve
4280 (package
4281 (name "r-princurve")
4282 (version "2.1.6")
4283 (source (origin
4284 (method url-fetch)
4285 (uri (cran-uri "princurve" version))
4286 (sha256
4287 (base32
4288 "0wzk329bxljkzz57y220lsfckpsn45w348m6dcxh29zbj0ik65h2"))))
4289 (build-system r-build-system)
4290 (propagated-inputs
4291 (list r-rcpp))
4292 (home-page "https://github.com/rcannood/princurve")
4293 (synopsis "Fit a principal curve in arbitrary dimension")
4294 (description "This package provides procedures for fitting a principal
4295 curve to a data matrix in arbitrary dimensions.")
4296 (license license:gpl2)))
4297
4298 (define-public r-reshape
4299 (package
4300 (name "r-reshape")
4301 (version "0.8.9")
4302 (source
4303 (origin
4304 (method url-fetch)
4305 (uri (cran-uri "reshape" version))
4306 (sha256
4307 (base32
4308 "0j203qmc076x5lp6q2xi4dq4xdb73jmsa42rpxp1c37knnrph4br"))))
4309 (build-system r-build-system)
4310 (propagated-inputs
4311 (list r-plyr))
4312 (home-page "http://had.co.nz/reshape")
4313 (synopsis "Flexibly reshape data")
4314 (description
4315 "Flexibly restructure and aggregate data using just two functions:
4316 @code{melt} and @code{cast}. This package provides them.")
4317 (license license:expat)))
4318
4319 (define-public r-restrserve
4320 (package
4321 (name "r-restrserve")
4322 (version "1.1.1")
4323 (source
4324 (origin
4325 (method url-fetch)
4326 (uri (cran-uri "RestRserve" version))
4327 (sha256
4328 (base32 "1ydsdgy6mxl0zqk7xqf4v6if5nf2qv7k48q340fhaqyjk2gd60p7"))))
4329 (build-system r-build-system)
4330 (propagated-inputs
4331 (list r-checkmate
4332 r-digest
4333 r-jsonlite
4334 r-mime
4335 r-r6
4336 r-rcpp
4337 r-rserve
4338 r-uuid))
4339 (native-inputs
4340 (list r-knitr))
4341 (home-page "https://restrserve.org")
4342 (synopsis "R web API framework")
4343 (description
4344 "RestRserve is an R web API framework for building high-performance AND
4345 robust microservices and app backends. With Rserve backend on UNIX-like
4346 systems it is parallel by design. It will handle incoming requests in
4347 parallel - each request in a separate fork.")
4348 (license license:gpl2+)))
4349
4350 (define-public r-progress
4351 (package
4352 (name "r-progress")
4353 (version "1.2.2")
4354 (source
4355 (origin
4356 (method url-fetch)
4357 (uri (cran-uri "progress" version))
4358 (sha256
4359 (base32
4360 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
4361 (build-system r-build-system)
4362 (propagated-inputs
4363 (list r-crayon r-hms r-prettyunits r-r6))
4364 (home-page "https://github.com/gaborcsardi/progress")
4365 (synopsis "Terminal progress bars")
4366 (description
4367 "This package provides configurable progress bars. They may include
4368 percentage, elapsed time, and/or the estimated completion time. They work in
4369 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
4370 package also provides a C++ API, that works with or without Rcpp.")
4371 (license license:expat)))
4372
4373 (define-public r-ggally
4374 (package
4375 (name "r-ggally")
4376 (version "2.1.2")
4377 (source
4378 (origin
4379 (method url-fetch)
4380 (uri (cran-uri "GGally" version))
4381 (sha256
4382 (base32
4383 "1r98zgh2grn8330cf26r1c20gl131zm778szvn5wj6q6pwv2yd9h"))))
4384 (properties `((upstream-name . "GGally")))
4385 (build-system r-build-system)
4386 (inputs
4387 (list openssl))
4388 (propagated-inputs
4389 (list r-dplyr
4390 r-forcats
4391 r-ggplot2
4392 r-gtable
4393 r-lifecycle
4394 r-plyr
4395 r-progress
4396 r-rcolorbrewer
4397 r-reshape
4398 r-rlang
4399 r-scales
4400 r-tidyr))
4401 (home-page "https://ggobi.github.io/ggally")
4402 (synopsis "Extension to ggplot2")
4403 (description
4404 "The R package ggplot2 is a plotting system based on the grammar of
4405 graphics. GGally extends ggplot2 by adding several functions to reduce the
4406 complexity of combining geometric objects with transformed data. Some of
4407 these functions include a pairwise plot matrix, a two group pairwise plot
4408 matrix, a parallel coordinates plot, a survival plot, and several functions to
4409 plot networks.")
4410 (license license:gpl2+)))
4411
4412 (define-public r-proxy
4413 (package
4414 (name "r-proxy")
4415 (version "0.4-26")
4416 (source
4417 (origin
4418 (method url-fetch)
4419 (uri (cran-uri "proxy" version))
4420 (sha256
4421 (base32
4422 "0k8sr24mjfvxp12sf1j9228ah3ngy15nqmm0jw14x5s32f1assv7"))))
4423 (build-system r-build-system)
4424 (home-page "https://cran.r-project.org/web/packages/proxy")
4425 (synopsis "Distance and similarity measures")
4426 (description
4427 "This package provides an extensible framework for the efficient
4428 calculation of auto- and cross-proximities, along with implementations of the
4429 most popular ones.")
4430 (license license:gpl2)))
4431
4432 (define-public r-sp
4433 (package
4434 (name "r-sp")
4435 (version "1.4-7")
4436 (source
4437 (origin
4438 (method url-fetch)
4439 (uri (cran-uri "sp" version))
4440 (sha256
4441 (base32 "1bdi06n5zkjnnyh0rallf04s0vlcx9rg9p5q7s6vfqvkf19nk501"))))
4442 (build-system r-build-system)
4443 (propagated-inputs
4444 (list r-lattice))
4445 (native-inputs
4446 (list r-knitr))
4447 (home-page "https://cran.r-project.org/web/packages/sp")
4448 (synopsis "Classes and methods for spatial data")
4449 (description
4450 "This package provides classes and methods for spatial data; the classes
4451 document where the spatial location information resides, for 2D or 3D data.
4452 Utility functions are provided, e.g. for plotting data as maps, spatial
4453 selection, as well as methods for retrieving coordinates, for subsetting,
4454 print, summary, etc.")
4455 (license license:gpl2+)))
4456
4457 (define-public r-laplacesdemon
4458 (package
4459 (name "r-laplacesdemon")
4460 (version "16.1.6")
4461 (source
4462 (origin
4463 (method url-fetch)
4464 (uri (cran-uri "LaplacesDemon" version))
4465 (sha256
4466 (base32 "1dsfp65cg06f25zjzd5ib4qyn1alfhbhpgyvpcw5n6bszn13idap"))))
4467 (properties `((upstream-name . "LaplacesDemon")))
4468 (build-system r-build-system)
4469 (home-page "https://github.com/LaplacesDemonR/LaplacesDemon")
4470 (synopsis "Complete environment for Bayesian inference")
4471 (description
4472 "This package provides a complete environment for Bayesian inference using
4473 a variety of different samplers.")
4474 (license license:expat)))
4475
4476 (define-public r-rmtstat
4477 (package
4478 (name "r-rmtstat")
4479 (version "0.3.1")
4480 (source
4481 (origin
4482 (method url-fetch)
4483 (uri (cran-uri "RMTstat" version))
4484 (sha256
4485 (base32
4486 "1r1a2sdqv64m9cpm2pz6r8abf7l810126ayd8iq3gx86c7bjfj5v"))))
4487 (properties `((upstream-name . "RMTstat")))
4488 (build-system r-build-system)
4489 (home-page "https://cran.r-project.org/web/packages/RMTstat")
4490 (synopsis "Distributions, statistics and tests derived from random matrix theory")
4491 (description
4492 "This package provides functions for working with the Tracy-Widom laws
4493 and other distributions related to the eigenvalues of large Wishart
4494 matrices.")
4495 (license license:bsd-3)))
4496
4497 (define-public r-rmpi
4498 (package
4499 (name "r-rmpi")
4500 (version "0.6-9.2")
4501 (source (origin
4502 (method url-fetch)
4503 (uri (cran-uri "Rmpi" version))
4504 (sha256
4505 (base32
4506 "06mxqgrimhfsag5giv810c7ycdbaycqs4qcj41pnfbj0jypw32im"))))
4507 (properties `((upstream-name . "Rmpi")))
4508 (build-system r-build-system)
4509 (arguments
4510 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
4511 #:phases (modify-phases %standard-phases
4512 (add-before 'install 'mpi-setup
4513 ,%openmpi-setup))))
4514 (inputs
4515 (list openmpi))
4516 (native-inputs
4517 (list pkg-config))
4518 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
4519 (synopsis "R interface to message-passing interface (MPI)")
4520 (description
4521 "This package provides an interface (wrapper) to MPI APIs. It also
4522 provides an interactive R manager and worker environment.")
4523 (license license:gpl2+)))
4524
4525 (define-public r-lmoments
4526 (package
4527 (name "r-lmoments")
4528 (version "1.3-1")
4529 (source
4530 (origin
4531 (method url-fetch)
4532 (uri (cran-uri "Lmoments" version))
4533 (sha256
4534 (base32
4535 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
4536 (properties `((upstream-name . "Lmoments")))
4537 (build-system r-build-system)
4538 (propagated-inputs
4539 (list r-rcpp r-rcpparmadillo))
4540 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
4541 (synopsis "L-moments and quantile mixtures")
4542 (description
4543 "This package contains functions to estimate L-moments and trimmed
4544 L-moments from the data. It also contains functions to estimate the
4545 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
4546 quantile mixture from L-moments and trimmed L-moments.")
4547 (license license:gpl2)))
4548
4549 (define-public r-distillery
4550 (package
4551 (name "r-distillery")
4552 (version "1.2-1")
4553 (source
4554 (origin
4555 (method url-fetch)
4556 (uri (cran-uri "distillery" version))
4557 (sha256
4558 (base32
4559 "1ymmxyamkq0zbz2m4gllln1ihks2hcib6gs0mls92as79srz122b"))))
4560 (build-system r-build-system)
4561 (home-page "https://ral.ucar.edu/staff/ericg/")
4562 (synopsis "Functions for confidence intervals and object information")
4563 (description
4564 "This package provides some very simple method functions for confidence
4565 interval calculation and to distill pertinent information from a potentially
4566 complex object; primarily used in common with the packages extRemes and
4567 SpatialVx.")
4568 (license license:gpl2+)))
4569
4570 (define-public r-etrunct
4571 (package
4572 (name "r-etrunct")
4573 (version "0.1")
4574 (source (origin
4575 (method url-fetch)
4576 (uri (cran-uri "etrunct" version))
4577 (sha256
4578 (base32
4579 "0ayazgyqlc8jcqr03cwfmfhm4pck6xri1r6vkgqy4arqkrrnrcqr"))))
4580 (properties `((upstream-name . "etrunct")))
4581 (build-system r-build-system)
4582 (home-page "https://cran.r-project.org/web/packages/etrunct")
4583 (synopsis "Computes moments of univariate truncated T distribution")
4584 (description "This package computes moments of univariate truncated
4585 T distribution. There is only one exported function, @code{e_trunct},
4586 which should be seen for details.")
4587 (license license:expat)))
4588
4589 (define-public r-excelr
4590 (package
4591 (name "r-excelr")
4592 (version "0.4.0")
4593 (source
4594 (origin
4595 (method url-fetch)
4596 (uri (cran-uri "excelR" version))
4597 (sha256
4598 (base32 "1pb4sy54zjv5vrh7gjjv7qlpab74km6mfsmfyl0yhmr0jx01hrw0"))
4599 (snippet
4600 '(delete-file "inst/htmlwidgets/lib/jexcel/js/jexcel.min.js"))))
4601 (properties `((upstream-name . "excelR")))
4602 (build-system r-build-system)
4603 (arguments
4604 `(#:phases
4605 (modify-phases %standard-phases
4606 (add-after 'unpack 'process-javascript
4607 (lambda* (#:key inputs #:allow-other-keys)
4608 (with-directory-excursion "inst/htmlwidgets/lib/jexcel/js/"
4609 (let ((source (assoc-ref inputs "js-jexcel"))
4610 (target "jexcel.min.js"))
4611 (format #true "Processing ~a --> ~a~%"
4612 source target)
4613 (invoke "esbuild" source "--minify"
4614 (string-append "--outfile=" target)))))))))
4615 (native-inputs
4616 `(("esbuild" ,esbuild)
4617 ;; There is no tag for this particular commit, but comparison of the
4618 ;; contents of the JavaScript files point to this commit as the most
4619 ;; likely source.
4620 ("js-jexcel"
4621 ,(origin
4622 (method url-fetch)
4623 (uri (string-append "https://raw.githubusercontent.com/jspreadsheet/ce/"
4624 "8af1960f76e6803bebc5750013d2ebe95354e88a/dist/jexcel.js"))
4625 (sha256
4626 (base32
4627 "0y88hsr9d8cpnvdmbm17m328pc4kc5wbcv02kzmhm0bryzhviw7h"))))))
4628 (propagated-inputs (list r-htmlwidgets r-jsonlite))
4629 (home-page "https://github.com/Swechhya/excelR")
4630 (synopsis "Wrapper of the JavaScript library jExcel")
4631 (description
4632 "This package provides an R interface to the jExcel library to
4633 create web-based interactive tables and spreadsheets compatible with
4634 spreadsheet software.")
4635 (license license:expat)))
4636
4637 (define-public r-extremes
4638 (package
4639 (name "r-extremes")
4640 (version "2.1-2")
4641 (source
4642 (origin
4643 (method url-fetch)
4644 (uri (cran-uri "extRemes" version))
4645 (sha256
4646 (base32
4647 "19q560prq02h3bwk01jb68693qb5bhsv8wiqhia7v5knm34qv8x7"))))
4648 (properties `((upstream-name . "extRemes")))
4649 (build-system r-build-system)
4650 (propagated-inputs
4651 (list r-distillery r-lmoments))
4652 (home-page "https://www.assessment.ucar.edu/toolkit/")
4653 (synopsis "Extreme value analysis")
4654 (description
4655 "ExtRemes is a suite of functions for carrying out analyses on the
4656 extreme values of a process of interest; be they block maxima over long blocks
4657 or excesses over a high threshold.")
4658 (license license:gpl2+)))
4659
4660 (define-public r-lmtest
4661 (package
4662 (name "r-lmtest")
4663 (version "0.9-40")
4664 (source
4665 (origin
4666 (method url-fetch)
4667 (uri (cran-uri "lmtest" version))
4668 (sha256
4669 (base32
4670 "15yr2kx08wy085bnziqmj1p6hf9mg3qp2a8465jk2df6di6hsh34"))))
4671 (build-system r-build-system)
4672 (propagated-inputs
4673 (list r-zoo))
4674 (native-inputs
4675 (list gfortran))
4676 (home-page "https://cran.r-project.org/web/packages/lmtest")
4677 (synopsis "Testing linear regression models")
4678 (description
4679 "This package provides a collection of tests, data sets, and examples for
4680 diagnostic checking in linear regression models. Furthermore, some generic
4681 tools for inference in parametric models are provided.")
4682 ;; Either version is okay
4683 (license (list license:gpl2 license:gpl3))))
4684
4685 (define-public r-idr
4686 (package
4687 (name "r-idr")
4688 (version "1.2")
4689 (source (origin
4690 (method url-fetch)
4691 (uri (cran-uri "idr" version))
4692 (sha256
4693 (base32
4694 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
4695 (build-system r-build-system)
4696 (home-page "https://cran.r-project.org/web/packages/idr/")
4697 (synopsis "Irreproducible discovery rate")
4698 (description
4699 "This is a package for estimating the copula mixture model and plotting
4700 correspondence curves in \"Measuring reproducibility of high-throughput
4701 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
4702 by Li, Brown, Huang, and Bickel")
4703 (license license:gpl2+)))
4704
4705 (define-public r-inline
4706 (package
4707 (name "r-inline")
4708 (version "0.3.19")
4709 (source (origin
4710 (method url-fetch)
4711 (uri (cran-uri "inline" version))
4712 (sha256
4713 (base32
4714 "1mcr9hgq6kkq03n7pkcccxa7vg8jma0q7lfxc5vvkc6snydk1s8f"))))
4715 (build-system r-build-system)
4716 (home-page "https://cran.r-project.org/web/packages/inline")
4717 (synopsis "Functions to inline C, C++, Fortran function calls from R")
4718 (description
4719 "This package provides functionality to dynamically define R functions
4720 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
4721 @code{.Call} calling conventions.")
4722 ;; Any version of the LGPL.
4723 (license license:lgpl3+)))
4724
4725 (define-public r-inum
4726 (package
4727 (name "r-inum")
4728 (version "1.0-4")
4729 (source (origin
4730 (method url-fetch)
4731 (uri (cran-uri "inum" version))
4732 (sha256
4733 (base32
4734 "1khkzja8lwn9075864vbyajqina9m588ahf1fsrrajrsqilyzssz"))))
4735 (build-system r-build-system)
4736 (propagated-inputs
4737 (list r-libcoin))
4738 (home-page "https://cran.r-project.org/web/packages/inum/")
4739 (synopsis "Interval and enum-type representation of vectors")
4740 (description
4741 "This package provides an enum-type representation of vectors and
4742 representation of intervals, including a method of coercing variables
4743 in data frames.")
4744 (license license:gpl2)))
4745 (define-public r-invgamma
4746 (package
4747 (name "r-invgamma")
4748 (version "1.1")
4749 (source (origin
4750 (method url-fetch)
4751 (uri (cran-uri "invgamma" version))
4752 (sha256
4753 (base32
4754 "12ga2y4wc9bc5zz6vimvxwgjpsx3ys3209nq63gscbw559ydxa5a"))))
4755 (properties `((upstream-name . "invgamma")))
4756 (build-system r-build-system)
4757 (home-page "https://github.com/dkahle/invgamma")
4758 (synopsis "Inverse gamma distribution")
4759 (description "This package provides a light weight implementation of the
4760 standard distribution functions for the inverse gamma distribution, wrapping
4761 those for the gamma distribution in the @code{stats} package.")
4762 (license license:gpl2)))
4763
4764 (define-public r-bdsmatrix
4765 (package
4766 (name "r-bdsmatrix")
4767 (version "1.3-4")
4768 (source
4769 (origin
4770 (method url-fetch)
4771 (uri (cran-uri "bdsmatrix" version))
4772 (sha256
4773 (base32
4774 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
4775 (properties `((upstream-name . "bdsmatrix")))
4776 (build-system r-build-system)
4777 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
4778 (synopsis "Routines for block diagonal symmetric matrices")
4779 (description
4780 "This package provides procedures to work with block diagonal symmetric
4781 matrices, a special case of sparse matrices.")
4782 (license license:lgpl2.0)))
4783
4784 (define-public r-bbmle
4785 (package
4786 (name "r-bbmle")
4787 (version "1.0.25")
4788 (source
4789 (origin
4790 (method url-fetch)
4791 (uri (cran-uri "bbmle" version))
4792 (sha256
4793 (base32
4794 "0mdj21q7k0fp4cj7la14vmcjmp49zqm57g7r6zrwmxpv0acwda46"))))
4795 (build-system r-build-system)
4796 (propagated-inputs
4797 (list r-bdsmatrix
4798 r-lattice
4799 r-mass
4800 r-matrix
4801 r-mvtnorm
4802 r-numderiv))
4803 (native-inputs
4804 (list r-knitr))
4805 (home-page "https://cran.r-project.org/web/packages/bbmle")
4806 (synopsis "Tools for General Maximum Likelihood Estimation")
4807 (description
4808 "This package provides methods and functions for fitting maximum
4809 likelihood models in R. This package modifies and extends the @code{mle}
4810 classes in the @code{stats4} package.")
4811 ;; Any version of the GPL
4812 (license license:gpl2+)))
4813
4814 (define-public r-emdbook
4815 (package
4816 (name "r-emdbook")
4817 (version "1.3.12")
4818 (source
4819 (origin
4820 (method url-fetch)
4821 (uri (cran-uri "emdbook" version))
4822 (sha256
4823 (base32
4824 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
4825 (build-system r-build-system)
4826 (propagated-inputs
4827 (list r-bbmle r-coda r-lattice r-mass r-plyr))
4828 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
4829 (synopsis "Support functions and data for \"Ecological Models and Data\"")
4830 (description
4831 "This package provides auxiliary functions and data sets for \"Ecological
4832 Models and Data\", a book presenting maximum likelihood estimation and related
4833 topics for ecologists (ISBN 978-0-691-12522-0).")
4834 ;; Any GPL version
4835 (license (list license:gpl2 license:gpl3))))
4836
4837 (define-public r-lpsolve
4838 (package
4839 (name "r-lpsolve")
4840 (version "5.6.15")
4841 (source
4842 (origin
4843 (method url-fetch)
4844 (uri (cran-uri "lpSolve" version))
4845 (sha256
4846 (base32
4847 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
4848 (properties `((upstream-name . "lpSolve")))
4849 (build-system r-build-system)
4850 (home-page "https://cran.r-project.org/web/packages/lpSolve")
4851 (synopsis "R interface to Lp_solve to solve linear/integer programs")
4852 (description
4853 "Lp_solve is software for solving linear, integer and mixed integer
4854 programs. This implementation supplies a \"wrapper\" function in C and some R
4855 functions that solve general linear/integer problems, assignment problems, and
4856 transportation problems.")
4857 (license license:lgpl2.0)))
4858
4859 (define-public r-limsolve
4860 (package
4861 (name "r-limsolve")
4862 (version "1.5.6")
4863 (source
4864 (origin
4865 (method url-fetch)
4866 (uri (cran-uri "limSolve" version))
4867 (sha256
4868 (base32
4869 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
4870 (properties `((upstream-name . "limSolve")))
4871 (build-system r-build-system)
4872 (propagated-inputs
4873 (list r-lpsolve r-mass r-quadprog))
4874 (native-inputs (list gfortran))
4875 (home-page "https://cran.r-project.org/web/packages/limSolve")
4876 (synopsis "Solving linear inverse models")
4877 (description
4878 "This package provides functions that:
4879
4880 @enumerate
4881 @item find the minimum/maximum of a linear or quadratic function,
4882 @item sample an underdetermined or overdetermined system,
4883 @item solve a linear system Ax=B for the unknown x.
4884 @end enumerate
4885
4886 It includes banded and tridiagonal linear systems. The package calls Fortran
4887 functions from LINPACK.")
4888 ;; Any GPL version.
4889 (license (list license:gpl2+ license:gpl3+))))
4890
4891 (define-public r-fitdistrplus
4892 (package
4893 (name "r-fitdistrplus")
4894 (version "1.1-8")
4895 (source
4896 (origin
4897 (method url-fetch)
4898 (uri (cran-uri "fitdistrplus" version))
4899 (sha256
4900 (base32
4901 "0nhgjvwya95v6b9khbsgp44lw10xg35w61lmka1v6wq7yh827izk"))))
4902 (build-system r-build-system)
4903 (propagated-inputs
4904 (list r-mass r-survival))
4905 (native-inputs
4906 (list r-knitr))
4907 (home-page "http://riskassessment.r-forge.r-project.org")
4908 (synopsis "Fitting a parametric distribution from data")
4909 (description
4910 "This package extends the @code{fitdistr} function of the MASS package
4911 with several functions to help the fit of a parametric distribution to
4912 non-censored or censored data. Censored data may contain left-censored,
4913 right-censored and interval-censored values, with several lower and upper
4914 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
4915 provides moment matching (MME), quantile matching (QME) and maximum
4916 goodness-of-fit estimation (MGE) methods (available only for non-censored
4917 data). Weighted versions of MLE, MME and QME are available.")
4918 (license license:gpl2+)))
4919
4920 (define-public r-energy
4921 (package
4922 (name "r-energy")
4923 (version "1.7-10")
4924 (source
4925 (origin
4926 (method url-fetch)
4927 (uri (cran-uri "energy" version))
4928 (sha256
4929 (base32
4930 "19xyw5bkyzfk22gly2ca2nsznqnrhaq4a77727kr1k26bj3y8gal"))))
4931 (build-system r-build-system)
4932 (propagated-inputs
4933 (list r-boot r-gsl r-rcpp))
4934 (home-page "https://cran.r-project.org/web/packages/energy")
4935 (synopsis "Multivariate inference via the energy of data")
4936 (description
4937 "This package provides e-statistics (energy) tests and statistics for
4938 multivariate and univariate inference, including distance correlation,
4939 one-sample, two-sample, and multi-sample tests for comparing multivariate
4940 distributions, are implemented. Measuring and testing multivariate
4941 independence based on distance correlation, partial distance correlation,
4942 multivariate goodness-of-fit tests, clustering based on energy distance,
4943 testing for multivariate normality, distance components (disco) for
4944 non-parametric analysis of structured data, and other energy
4945 statistics/methods are implemented.")
4946 (license license:gpl2+)))
4947
4948 (define-public r-suppdists
4949 (package
4950 (name "r-suppdists")
4951 (version "1.1-9.7")
4952 (source
4953 (origin
4954 (method url-fetch)
4955 (uri (cran-uri "SuppDists" version))
4956 (sha256
4957 (base32
4958 "025b9nlxz62wk84295csyzbncpn80i3iby3sxdigf3swcgi2fmbb"))))
4959 (properties `((upstream-name . "SuppDists")))
4960 (build-system r-build-system)
4961 (home-page "https://cran.r-project.org/web/packages/SuppDists")
4962 (synopsis "Supplementary distributions")
4963 (description
4964 "This package provides ten distributions supplementing those built into
4965 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
4966 Spearman's rho, maximum F ratio, the Pearson product moment correlation
4967 coefficient, Johnson distributions, normal scores and generalized
4968 hypergeometric distributions. In addition two random number generators of
4969 George Marsaglia are included.")
4970 (license license:gpl2+)))
4971
4972 (define-public r-ksamples
4973 (package
4974 (name "r-ksamples")
4975 (version "1.2-9")
4976 (source
4977 (origin
4978 (method url-fetch)
4979 (uri (cran-uri "kSamples" version))
4980 (sha256
4981 (base32
4982 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
4983 (properties `((upstream-name . "kSamples")))
4984 (build-system r-build-system)
4985 (propagated-inputs
4986 (list r-suppdists))
4987 (home-page "https://cran.r-project.org/web/packages/kSamples")
4988 (synopsis "K-Sample rank tests and their combinations")
4989 (description
4990 "This package provides tools to compares k samples using the
4991 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
4992 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
4993 test. It computes asymptotic, simulated or (limited) exact P-values, all
4994 valid under randomization, with or without ties, or conditionally under random
4995 sampling from populations, given the observed tie pattern. Except for Steel's
4996 test and the JT test it also combines these tests across several blocks of
4997 samples.")
4998 (license license:gpl2+)))
4999
5000 (define-public r-cvst
5001 (package
5002 (name "r-cvst")
5003 (version "0.2-3")
5004 (source
5005 (origin
5006 (method url-fetch)
5007 (uri (cran-uri "CVST" version))
5008 (sha256
5009 (base32
5010 "0bgk0d6w3dyhb5s30idnp6jpb3m8wf3b79wqlg127wwm0cird8pg"))))
5011 (properties `((upstream-name . "CVST")))
5012 (build-system r-build-system)
5013 (propagated-inputs
5014 (list r-kernlab r-matrix))
5015 (home-page "https://cran.r-project.org/web/packages/CVST")
5016 (synopsis "Fast cross-validation via sequential testing")
5017 (description
5018 "This package implements the fast cross-validation via sequential
5019 testing (CVST) procedure. CVST is an improved cross-validation procedure
5020 which uses non-parametric testing coupled with sequential analysis to
5021 determine the best parameter set on linearly increasing subsets of the data.
5022 Additionally to the CVST the package contains an implementation of the
5023 ordinary k-fold cross-validation with a flexible and powerful set of helper
5024 objects and methods to handle the overall model selection process. The
5025 implementations of the Cochran's Q test with permutations and the sequential
5026 testing framework of Wald are generic and can therefore also be used in other
5027 contexts.")
5028 (license license:gpl2+)))
5029
5030 (define-public r-squarem
5031 (package
5032 (name "r-squarem")
5033 (version "2021.1")
5034 (source
5035 (origin
5036 (method url-fetch)
5037 (uri (cran-uri "SQUAREM" version))
5038 (sha256
5039 (base32
5040 "0n1s32l9p4vdm3h5q6g43s0qbpzry08difsh0yay80wrla6f3rb6"))))
5041 (properties `((upstream-name . "SQUAREM")))
5042 (build-system r-build-system)
5043 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
5044 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
5045 (description
5046 "This package provides algorithms for accelerating the convergence of
5047 slow, monotone sequences from smooth, contraction mapping such as the EM
5048 algorithm. It can be used to accelerate any smooth, linearly convergent
5049 acceleration scheme. A tutorial style introduction to this package is
5050 available in a vignette.")
5051 (license license:gpl2+)))
5052
5053 (define-public r-progressr
5054 (package
5055 (name "r-progressr")
5056 (version "0.10.0")
5057 (source
5058 (origin
5059 (method url-fetch)
5060 (uri (cran-uri "progressr" version))
5061 (sha256
5062 (base32 "1p5s35rzh28n2id2lipgyqmh3wzib66m7x0pz9028y8cql8xr5ac"))))
5063 (properties `((upstream-name . "progressr")))
5064 (build-system r-build-system)
5065 (propagated-inputs
5066 (list r-digest))
5067 (home-page "https://progressr.futureverse.org")
5068 (synopsis "Inclusive, unifying API for progress updates")
5069 (description
5070 "This package provides a minimal, unifying API for scripts and packages
5071 to report progress updates from anywhere including when using parallel
5072 processing. The package is designed such that the developer can to focus on
5073 what progress should be reported on without having to worry about how to
5074 present it. The end user has full control of how, where, and when to render
5075 these progress updates.")
5076 (license license:gpl3+)))
5077
5078 (define-public r-lava
5079 (package
5080 (name "r-lava")
5081 (version "1.6.10")
5082 (source
5083 (origin
5084 (method url-fetch)
5085 (uri (cran-uri "lava" version))
5086 (sha256
5087 (base32
5088 "0bi3c1aqwlq7jbz4raz6vga4r264w7lldi0i62xjlbl7hnlgi23s"))))
5089 (build-system r-build-system)
5090 (propagated-inputs
5091 (list r-future-apply r-numderiv r-progressr r-squarem r-survival))
5092 (native-inputs
5093 (list r-knitr))
5094 (home-page "https://github.com/kkholst/lava")
5095 (synopsis "Latent variable models")
5096 (description
5097 "This package provides tools for the estimation and simulation of latent
5098 variable models.")
5099 (license license:gpl3)))
5100
5101 (define-public r-drr
5102 (package
5103 (name "r-drr")
5104 (version "0.0.4")
5105 (source
5106 (origin
5107 (method url-fetch)
5108 (uri (cran-uri "DRR" version))
5109 (sha256
5110 (base32
5111 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
5112 (properties `((upstream-name . "DRR")))
5113 (build-system r-build-system)
5114 (propagated-inputs
5115 (list r-cvst r-kernlab r-matrix))
5116 (home-page "https://cran.r-project.org/web/packages/DRR")
5117 (synopsis "Dimensionality reduction via regression")
5118 (description
5119 "This package provides an implementation of dimensionality reduction via
5120 regression using Kernel Ridge Regression.")
5121 (license license:gpl3)))
5122
5123 (define-public r-prodlim
5124 (package
5125 (name "r-prodlim")
5126 (version "2019.11.13")
5127 (source
5128 (origin
5129 (method url-fetch)
5130 (uri (cran-uri "prodlim" version))
5131 (sha256
5132 (base32
5133 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
5134 (build-system r-build-system)
5135 (propagated-inputs
5136 (list r-kernsmooth r-lava r-rcpp r-survival))
5137 (home-page "https://cran.r-project.org/web/packages/prodlim")
5138 (synopsis "Product-limit estimation for censored event history analysis")
5139 (description
5140 "This package provides a fast and user-friendly implementation of
5141 nonparametric estimators for censored event history (survival) analysis with
5142 the Kaplan-Meier and Aalen-Johansen methods.")
5143 (license license:gpl2+)))
5144
5145 (define-public r-dimred
5146 (package
5147 (name "r-dimred")
5148 (version "0.2.5")
5149 (source
5150 (origin
5151 (method url-fetch)
5152 (uri (cran-uri "dimRed" version))
5153 (sha256
5154 (base32
5155 "1z8fqdc8mslvfix8ngxs1y2yrvlanp5581hwp2nzldj6mk5kn15b"))))
5156 (properties `((upstream-name . "dimRed")))
5157 (build-system r-build-system)
5158 (propagated-inputs
5159 (list r-drr r-magrittr))
5160 (native-inputs
5161 (list r-knitr))
5162 (home-page "https://github.com/gdkrmr/dimRed")
5163 (synopsis "Framework for dimensionality reduction")
5164 (description
5165 "This package provides a collection of dimensionality reduction
5166 techniques from R packages and provides a common interface for calling the
5167 methods.")
5168 (license license:gpl3)))
5169
5170 (define-public r-timedate
5171 (package
5172 (name "r-timedate")
5173 (version "3043.102")
5174 (source
5175 (origin
5176 (method url-fetch)
5177 (uri (cran-uri "timeDate" version))
5178 (sha256
5179 (base32
5180 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
5181 (properties `((upstream-name . "timeDate")))
5182 (build-system r-build-system)
5183 (home-page "https://www.rmetrics.org")
5184 (synopsis "Chronological and calendar objects")
5185 (description
5186 "This package provides an environment for teaching \"Financial
5187 Engineering and Computational Finance\" and for managing chronological and
5188 calendar objects.")
5189 (license license:gpl2+)))
5190
5191 (define-public r-magic
5192 (package
5193 (name "r-magic")
5194 (version "1.6-0")
5195 (source
5196 (origin
5197 (method url-fetch)
5198 (uri (cran-uri "magic" version))
5199 (sha256
5200 (base32
5201 "1gybia2aq80ldk1d845y5srncfzbbmpqhgl7vfaz7qqqjs6d85j5"))))
5202 (build-system r-build-system)
5203 (propagated-inputs
5204 (list r-abind))
5205 (home-page "https://github.com/RobinHankin/magic.git")
5206 (synopsis "Create and investigate magic squares")
5207 (description
5208 "This package provides a collection of efficient, vectorized algorithms
5209 for the creation and investigation of magic squares and hypercubes, including
5210 a variety of functions for the manipulation and analysis of arbitrarily
5211 dimensioned arrays.")
5212 (license license:gpl2)))
5213
5214 (define-public r-rmysql
5215 (package
5216 (name "r-rmysql")
5217 (version "0.10.23")
5218 (source
5219 (origin
5220 (method url-fetch)
5221 (uri (cran-uri "RMySQL" version))
5222 (sha256
5223 (base32
5224 "05aavyggyjv46awa7ggbxlfcy9707vak5kh7kj0ljdx8zga7xb7l"))))
5225 (properties `((upstream-name . "RMySQL")))
5226 (build-system r-build-system)
5227 (inputs
5228 (list `(,mariadb "dev") zlib))
5229 (propagated-inputs
5230 (list r-dbi))
5231 (home-page "https://github.com/r-dbi/RMySQL")
5232 (synopsis "Database interface and MySQL driver for R")
5233 (description
5234 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
5235 package contains an old implementation based on legacy code from S-PLUS which
5236 is being phased out. A modern MySQL client based on Rcpp is available from
5237 the RMariaDB package.")
5238 (license license:gpl2)))
5239
5240 (define-public r-rpostgresql
5241 (package
5242 (name "r-rpostgresql")
5243 (version "0.7-3")
5244 (source
5245 (origin
5246 (method url-fetch)
5247 (uri (cran-uri "RPostgreSQL" version))
5248 (sha256
5249 (base32
5250 "1fbixmnjp1kh6yiv8zhg8zi5ryvdf5j2jxv4agq5gcxf541s3g5x"))))
5251 (properties `((upstream-name . "RPostgreSQL")))
5252 (build-system r-build-system)
5253 (inputs
5254 (list postgresql))
5255 (propagated-inputs
5256 (list r-dbi))
5257 (home-page "https://github.com/tomoakin/RPostgreSQL")
5258 (synopsis "R interface to the PostgreSQL database system")
5259 (description
5260 "This package provides a Database Interface (DBI) compliant driver for R
5261 to access PostgreSQL database systems.")
5262 ;; The whole package is released under GPL version 2. It includes code
5263 ;; under the PostgreSQL license.
5264 (license license:gpl2)))
5265
5266 (define-public r-linprog
5267 (package
5268 (name "r-linprog")
5269 (version "0.9-4")
5270 (source
5271 (origin
5272 (method url-fetch)
5273 (uri (cran-uri "linprog" version))
5274 (sha256
5275 (base32
5276 "1d34m2nyk7m6j2dci69bhy5mlw479xax1517j7f14pq7vhpsm9l1"))))
5277 (build-system r-build-system)
5278 (propagated-inputs (list r-lpsolve))
5279 (home-page "http://linprog.r-forge.r-project.org/")
5280 (synopsis "Linear programming and optimization")
5281 (description
5282 "This package can be used to solve Linear Programming / Linear
5283 Optimization problems by using the simplex algorithm.")
5284 (license license:gpl2+)))
5285
5286 (define-public r-geometry
5287 (package
5288 (name "r-geometry")
5289 (version "0.4.6")
5290 (source
5291 (origin
5292 (method url-fetch)
5293 (uri (cran-uri "geometry" version))
5294 (sha256
5295 (base32
5296 "1n7m0djqlhrv01l98r76grkki6cv4k4q2z6c7fksqgq4r2l6a14i"))))
5297 (build-system r-build-system)
5298 (propagated-inputs
5299 (list r-magic r-linprog r-lpsolve r-rcpp r-rcppprogress))
5300 (home-page "http://geometry.r-forge.r-project.org/")
5301 (synopsis "Mesh generator and surface tessellator")
5302 (description
5303 "This package makes the qhull library available in R, in a similar manner
5304 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
5305 intersections about a point, Voronoi diagrams, furthest-site Delaunay
5306 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
5307 and higher dimensions. It implements the Quickhull algorithm for computing
5308 the convex hull. Qhull does not support constrained Delaunay triangulations,
5309 or mesh generation of non-convex objects, but the package does include some R
5310 functions that allow for this. Currently the package only gives access to
5311 Delaunay triangulation and convex hull computation.")
5312 ;; The Qhull sources are included and are distributed under a custom
5313 ;; non-copyleft license. The R sources are released under GPL version 2.
5314 (license (list license:gpl2
5315 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
5316
5317 (define-public r-ddalpha
5318 (package
5319 (name "r-ddalpha")
5320 (version "1.3.13")
5321 (source
5322 (origin
5323 (method url-fetch)
5324 (uri (cran-uri "ddalpha" version))
5325 (sha256
5326 (base32
5327 "1bjfgb3lbzhjb5wx9hzp90jppq7vnj59bmd2n9ymi8sh1570m9p4"))))
5328 (build-system r-build-system)
5329 (propagated-inputs
5330 (list r-bh
5331 r-class
5332 r-geometry
5333 r-mass
5334 r-rcpp
5335 r-robustbase
5336 r-sfsmisc))
5337 (native-inputs
5338 (list gfortran))
5339 (home-page "https://cran.r-project.org/web/packages/ddalpha")
5340 (synopsis "Depth-Based classification and calculation of data depth")
5341 (description
5342 "This package contains procedures for depth-based supervised learning,
5343 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
5344 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
5345 statistical depth function to a compact low-dimensional space, where the final
5346 classification is done. It also offers an extension to functional data and
5347 routines for calculating certain notions of statistical depth functions. 50
5348 multivariate and 5 functional classification problems are included.")
5349 (license license:gpl2)))
5350
5351 (define-public r-gower
5352 (package
5353 (name "r-gower")
5354 (version "1.0.0")
5355 (source
5356 (origin
5357 (method url-fetch)
5358 (uri (cran-uri "gower" version))
5359 (sha256
5360 (base32
5361 "0p9qx9aafkdm7wibfwk59jzw6vspsff6zwp84bc40lg0myxbf737"))))
5362 (build-system r-build-system)
5363 (home-page "https://github.com/markvanderloo/gower")
5364 (synopsis "Gower's distance")
5365 (description
5366 "This package provides tools to compute Gower's distance (or similarity)
5367 coefficient between records, and to compute the top-n matches between records.
5368 Core algorithms are executed in parallel on systems supporting OpenMP.")
5369 (license license:gpl3)))
5370
5371 (define-public r-rcpproll
5372 (package
5373 (name "r-rcpproll")
5374 (version "0.3.0")
5375 (source
5376 (origin
5377 (method url-fetch)
5378 (uri (cran-uri "RcppRoll" version))
5379 (sha256
5380 (base32
5381 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
5382 (properties `((upstream-name . "RcppRoll")))
5383 (build-system r-build-system)
5384 (propagated-inputs
5385 (list r-rcpp))
5386 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
5387 (synopsis "Efficient rolling and windowed operations")
5388 (description
5389 "This package provides fast and efficient routines for common rolling /
5390 windowed operations. Routines for the efficient computation of windowed mean,
5391 median, sum, product, minimum, maximum, standard deviation and variance are
5392 provided.")
5393 (license license:gpl2+)))
5394
5395 (define-public r-ipred
5396 (package
5397 (name "r-ipred")
5398 (version "0.9-12")
5399 (source
5400 (origin
5401 (method url-fetch)
5402 (uri (cran-uri "ipred" version))
5403 (sha256
5404 (base32
5405 "0hsq00382pfd9hzpcgphjxazbxm4zx0k2r6pk6kib56k0ibm7qfn"))))
5406 (build-system r-build-system)
5407 (propagated-inputs
5408 (list r-class
5409 r-mass
5410 r-nnet
5411 r-prodlim
5412 r-rpart
5413 r-survival))
5414 (home-page "https://cran.r-project.org/web/packages/ipred")
5415 (synopsis "Improved predictors")
5416 (description
5417 "This package provides improved predictive models by indirect
5418 classification and bagging for classification, regression and survival
5419 problems as well as resampling based estimators of prediction error.")
5420 (license license:gpl2+)))
5421
5422 (define-public r-psych
5423 (package
5424 (name "r-psych")
5425 (version "2.2.5")
5426 (source
5427 (origin
5428 (method url-fetch)
5429 (uri (cran-uri "psych" version))
5430 (sha256
5431 (base32
5432 "08f3byqwabgkqcxwpjbsxdcjkdg012iraqinw0fzskfl1srzkhyw"))))
5433 (build-system r-build-system)
5434 (propagated-inputs
5435 (list r-lattice r-mnormt r-nlme))
5436 (native-inputs
5437 (list r-knitr))
5438 (home-page "https://cran.r-project.org/web/packages/psych/")
5439 (synopsis "Procedures for psychological, psychometric, and personality research")
5440 (description
5441 "This package provides a general purpose toolbox for personality,
5442 psychometric theory and experimental psychology. Functions are primarily for
5443 multivariate analysis and scale construction using factor analysis, principal
5444 component analysis, cluster analysis and reliability analysis, although others
5445 provide basic descriptive statistics. Item Response Theory is done using
5446 factor analysis of tetrachoric and polychoric correlations. Functions for
5447 analyzing data at multiple levels include within and between group statistics,
5448 including correlations and factor analysis. Functions for simulating and
5449 testing particular item and test structures are included. Several functions
5450 serve as a useful front end for structural equation modeling. Graphical
5451 displays of path diagrams, factor analysis and structural equation models are
5452 created using basic graphics.")
5453 (license license:gpl2+)))
5454
5455 (define-public r-generics
5456 (package
5457 (name "r-generics")
5458 (version "0.1.2")
5459 (source
5460 (origin
5461 (method url-fetch)
5462 (uri (cran-uri "generics" version))
5463 (sha256
5464 (base32
5465 "162q9hdsnfcwjj255ahbi6v9vnyynvda7gb75p721y28j5xb7sk3"))))
5466 (build-system r-build-system)
5467 (home-page "https://github.com/r-lib/generics")
5468 (synopsis "Common S3 generics not provided by base R methods")
5469 (description
5470 "In order to reduce potential package dependencies and conflicts,
5471 generics provides a number of commonly used S3 generics that are not provided
5472 by base R methods related to model fitting.")
5473 (license license:gpl2)))
5474
5475 (define-public r-broom
5476 (package
5477 (name "r-broom")
5478 (version "0.8.0")
5479 (source
5480 (origin
5481 (method url-fetch)
5482 (uri (cran-uri "broom" version))
5483 (sha256
5484 (base32
5485 "16grzja9hz5mqpfzbp1r6zif1gp7swfadkm52340si9h8ifhk8b6"))))
5486 (build-system r-build-system)
5487 (propagated-inputs
5488 (list r-backports
5489 r-dplyr
5490 r-ellipsis
5491 r-generics
5492 r-ggplot2
5493 r-glue
5494 r-purrr
5495 r-rlang
5496 r-stringr
5497 r-tibble
5498 r-tidyr))
5499 (native-inputs
5500 (list r-knitr))
5501 (home-page "https://github.com/tidyverse/broom")
5502 (synopsis "Convert statistical analysis objects into tidy data frames")
5503 (description
5504 "This package provides tools to convert statistical analysis objects from
5505 R into tidy data frames, so that they can more easily be combined, reshaped
5506 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
5507 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
5508 summarizes a model's statistical findings such as coefficients of a
5509 regression; @code{augment}, which adds columns to the original data such as
5510 predictions, residuals and cluster assignments; and @code{glance}, which
5511 provides a one-row summary of model-level statistics.")
5512 (license license:expat)))
5513
5514 (define-public r-recipes
5515 (package
5516 (name "r-recipes")
5517 (version "0.2.0")
5518 (source
5519 (origin
5520 (method url-fetch)
5521 (uri (cran-uri "recipes" version))
5522 (sha256
5523 (base32
5524 "1950rvva19ms6xy9d3jx94gzy589qprk115zjjd0ib4qxgip601x"))))
5525 (build-system r-build-system)
5526 (propagated-inputs
5527 (list r-dplyr
5528 r-ellipsis
5529 r-generics
5530 r-glue
5531 r-gower
5532 r-hardhat
5533 r-ipred
5534 r-lifecycle
5535 r-lubridate
5536 r-magrittr
5537 r-matrix
5538 r-purrr
5539 r-rlang
5540 r-tibble
5541 r-tidyr
5542 r-tidyselect
5543 r-timedate
5544 r-vctrs
5545 r-withr))
5546 (native-inputs
5547 (list r-knitr))
5548 (home-page "https://github.com/topepo/recipes")
5549 (synopsis "Preprocessing tools to create design matrices")
5550 (description
5551 "Recipes is an extensible framework to create and preprocess design
5552 matrices. Recipes consist of one or more data manipulation and analysis
5553 \"steps\". Statistical parameters for the steps can be estimated from an
5554 initial data set and then applied to other data sets. The resulting design
5555 matrices can then be used as inputs into statistical or machine learning
5556 models.")
5557 (license license:gpl2)))
5558
5559 (define-public r-pdist
5560 (package
5561 (name "r-pdist")
5562 (version "1.2.1")
5563 (source
5564 (origin
5565 (method url-fetch)
5566 (uri (cran-uri "pdist" version))
5567 (sha256
5568 (base32
5569 "0bvg8si81hs79v39d7svv4zbv2p0sk2r6m9vamibvkh9qvl4x406"))))
5570 (build-system r-build-system)
5571 (home-page "https://github.com/jeffwong/pdist")
5572 (synopsis "Partitioned distance function")
5573 (description
5574 "Pdist computes the euclidean distance between rows of a matrix X and
5575 rows of another matrix Y. Previously, this could be done by binding the two
5576 matrices together and calling @code{dist}, but this creates unnecessary
5577 computation by computing the distances between a row of X and another row of
5578 X, and likewise for Y. Pdist strictly computes distances across the two
5579 matrices, not within the same matrix, making computations significantly faster
5580 for certain use cases.")
5581 (license license:gpl3+)))
5582
5583 (define-public r-ggrepel
5584 (package
5585 (name "r-ggrepel")
5586 (version "0.9.1")
5587 (source
5588 (origin
5589 (method url-fetch)
5590 (uri (cran-uri "ggrepel" version))
5591 (sha256
5592 (base32
5593 "1z5xyr5f4aryy0v1gzz9m8m4s5fzzwbrf0fxll1nbflr8xnr3yr9"))))
5594 (build-system r-build-system)
5595 (propagated-inputs
5596 (list r-ggplot2 r-rcpp r-rlang r-scales))
5597 (native-inputs
5598 (list r-knitr)) ; for vignettes
5599 (home-page "https://github.com/slowkow/ggrepel")
5600 (synopsis "Repulsive text and label geometries for ggplot2")
5601 (description
5602 "This package provides text and label geometries for ggplot2 that help to
5603 avoid overlapping text labels. Labels repel away from each other and away
5604 from the data points.")
5605 (license license:gpl3)))
5606
5607 (define-public r-coro
5608 (package
5609 (name "r-coro")
5610 (version "1.0.2")
5611 (source
5612 (origin
5613 (method url-fetch)
5614 (uri (cran-uri "coro" version))
5615 (sha256
5616 (base32 "14irld29dipgfd34y0k351daqg9vqpnpdx8m3pxmqr1aiyj5f5cv"))))
5617 (properties `((upstream-name . "coro")))
5618 (build-system r-build-system)
5619 (propagated-inputs (list r-rlang))
5620 (native-inputs (list r-knitr))
5621 (home-page "https://github.com/r-lib/coro")
5622 (synopsis "Coroutines for R")
5623 (description
5624 "This package provides coroutines for R, a family of functions that can
5625 be suspended and resumed later on. This includes async functions (which
5626 await) and generators (which yield). Async functions are based on the
5627 concurrency framework of the @code{promises} package. Generators are based on
5628 a dependency free iteration protocol defined in @code{coro} and are compatible
5629 with iterators from the @code{reticulate} package.")
5630 (license license:expat)))
5631
5632 (define-public r-corrplot
5633 (package
5634 (name "r-corrplot")
5635 (version "0.92")
5636 (source
5637 (origin
5638 (method url-fetch)
5639 (uri (cran-uri "corrplot" version))
5640 (sha256
5641 (base32
5642 "1g98jk6xsl08z4n6sy5vriif99m31zhbz7j3dh1kfj4w7yb9zh78"))))
5643 (build-system r-build-system)
5644 (native-inputs
5645 (list r-knitr))
5646 (home-page "https://github.com/taiyun/corrplot")
5647 (synopsis "Visualization of a correlation matrix")
5648 (description
5649 "This package provides a graphical display of a correlation matrix or
5650 general matrix. It also contains some algorithms to do matrix reordering. In
5651 addition, corrplot is good at details, including choosing color, text labels,
5652 color labels, layout, etc.")
5653 ;; Any version of the GPL
5654 (license license:gpl2+)))
5655
5656 (define-public r-stringdist
5657 (package
5658 (name "r-stringdist")
5659 (version "0.9.8")
5660 (source
5661 (origin
5662 (method url-fetch)
5663 (uri (cran-uri "stringdist" version))
5664 (sha256
5665 (base32 "1fv1hbdlm8qwx57b2aj50mw0say5k48awzavx65mfk67qp6ddk7g"))))
5666 (build-system r-build-system)
5667 (home-page "https://github.com/markvanderloo/stringdist")
5668 (synopsis "Approximate string matching and string distance functions")
5669 (description
5670 "This package implements an approximate string matching version of R's
5671 native @code{match} function. It can calculate various string distances based
5672 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal string alignment),
5673 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
5674 Jaro-Winkler). An implementation of soundex is provided as well. Distances
5675 can be computed between character vectors while taking proper care of encoding
5676 or between integer vectors representing generic sequences.")
5677 (license license:gpl3+)))
5678
5679 (define-public r-ucminf
5680 (package
5681 (name "r-ucminf")
5682 (version "1.1-4")
5683 (source
5684 (origin
5685 (method url-fetch)
5686 (uri (cran-uri "ucminf" version))
5687 (sha256
5688 (base32
5689 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
5690 (build-system r-build-system)
5691 (native-inputs (list gfortran))
5692 (home-page "https://cran.r-project.org/web/packages/ucminf/")
5693 (synopsis "General-purpose unconstrained non-linear optimization")
5694 (description
5695 "This package provides an implementation of an algorithm for
5696 general-purpose unconstrained non-linear optimization. The algorithm is of
5697 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
5698 search with a trust region type monitoring of the input to the line search
5699 algorithm. The interface of @code{ucminf} is designed for easy interchange
5700 with the package @code{optim}.")
5701 (license license:gpl2+)))
5702
5703 (define-public r-usedist
5704 (package
5705 (name "r-usedist")
5706 (version "0.4.0")
5707 (source
5708 (origin
5709 (method url-fetch)
5710 (uri (cran-uri "usedist" version))
5711 (sha256
5712 (base32 "0ddf1zcalbrn293qmr9kdzz3x16fzc4k1bwb1pjmwnspisqfi8kj"))))
5713 (properties `((upstream-name . "usedist")))
5714 (build-system r-build-system)
5715 (home-page "https://cran.r-project.org/package=usedist")
5716 (synopsis "Distance matrix utilities")
5717 (description
5718 "This package provides functions to re-arrange, extract, and work with
5719 distances.")
5720 (license license:gpl3)))
5721
5722 (define-public r-useful
5723 (package
5724 (name "r-useful")
5725 (version "1.2.6")
5726 (source (origin
5727 (method url-fetch)
5728 (uri (cran-uri "useful" version))
5729 (sha256
5730 (base32
5731 "0n50v1q75k518sq23id14jphwla35q4sasahrnrnllwrachl67v1"))))
5732 (properties `((upstream-name . "useful")))
5733 (build-system r-build-system)
5734 (propagated-inputs
5735 (list r-assertthat
5736 r-dplyr
5737 r-ggplot2
5738 r-magrittr
5739 r-matrix
5740 r-plyr
5741 r-purrr
5742 r-scales))
5743 (home-page "https://github.com/jaredlander/useful")
5744 (synopsis "Collection of handy, useful functions")
5745 (description "This package provides a set of little functions that have been
5746 found useful to do little odds and ends such as plotting the results of K-means
5747 clustering, substituting special text characters, viewing parts of a
5748 @code{data.frame}, constructing formulas from text and building design and
5749 response matrices.")
5750 (license license:bsd-3)))
5751
5752 (define-public r-ordinal
5753 (package
5754 (name "r-ordinal")
5755 (version "2019.12-10")
5756 (source
5757 (origin
5758 (method url-fetch)
5759 (uri (cran-uri "ordinal" version))
5760 (sha256
5761 (base32
5762 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
5763 (build-system r-build-system)
5764 (propagated-inputs
5765 (list r-mass r-matrix r-numderiv r-ucminf))
5766 (home-page "https://github.com/runehaubo/ordinal")
5767 (synopsis "Regression models for ordinal data")
5768 (description
5769 "This package provides an implementation of cumulative link (mixed)
5770 models also known as ordered regression models, proportional odds models,
5771 proportional hazards models for grouped survival times and ordered models.
5772 Estimation is via maximum likelihood and mixed models are fitted with the
5773 Laplace approximation and adaptive Gauss-Hermite quadrature.")
5774 (license license:gpl2+)))
5775
5776 (define-public r-jomo
5777 (package
5778 (name "r-jomo")
5779 (version "2.7-3")
5780 (source
5781 (origin
5782 (method url-fetch)
5783 (uri (cran-uri "jomo" version))
5784 (sha256
5785 (base32
5786 "0qq03zspmh8x2c8w882ynsw7wshr9b0fyrpwnqx5yc1xlzrqffcx"))))
5787 (build-system r-build-system)
5788 (propagated-inputs
5789 (list r-lme4 r-mass r-ordinal r-survival r-tibble))
5790 (home-page "https://cran.r-project.org/web/packages/jomo/")
5791 (synopsis "Multilevel Joint Modelling Multiple Imputation")
5792 (description
5793 "Similarly to Schafer's package pan, jomo is a package for multilevel
5794 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
5795 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
5796 possibility of handling binary and categorical data through latent normal
5797 variables, the option to use cluster-specific covariance matrices and to
5798 impute compatibly with the substantive model.")
5799 (license license:gpl2)))
5800
5801 (define-public r-pan
5802 (package
5803 (name "r-pan")
5804 (version "1.6")
5805 (source
5806 (origin
5807 (method url-fetch)
5808 (uri (cran-uri "pan" version))
5809 (sha256
5810 (base32
5811 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
5812 (build-system r-build-system)
5813 (native-inputs (list gfortran))
5814 (home-page "https://cran.r-project.org/web/packages/pan/")
5815 (synopsis "Multiple imputation for multivariate panel or clustered data")
5816 (description
5817 "This package implements multiple imputation for multivariate panel or
5818 clustered data.")
5819 (license license:gpl3)))
5820
5821 (define-public r-mitml
5822 (package
5823 (name "r-mitml")
5824 (version "0.4-3")
5825 (source
5826 (origin
5827 (method url-fetch)
5828 (uri (cran-uri "mitml" version))
5829 (sha256
5830 (base32
5831 "00i18nnvrdrg91crgcp2a431xs71cawaip3xkqk2myv0iav3xga9"))))
5832 (build-system r-build-system)
5833 (propagated-inputs
5834 (list r-haven r-jomo r-pan))
5835 (native-inputs
5836 (list r-knitr))
5837 (home-page "https://cran.r-project.org/web/packages/mitml/")
5838 (synopsis "Tools for multiple imputation in multilevel modeling")
5839 (description
5840 "This package provides tools for multiple imputation of missing data in
5841 multilevel modeling. It includes a user-friendly interface to the packages
5842 pan and jomo, and several functions for visualization, data management and the
5843 analysis of multiply imputed data sets.")
5844 (license license:gpl2+)))
5845
5846 (define-public r-mice
5847 (package
5848 (name "r-mice")
5849 (version "3.14.0")
5850 (source
5851 (origin
5852 (method url-fetch)
5853 (uri (cran-uri "mice" version))
5854 (sha256
5855 (base32
5856 "01fnfrr7adp29s5kic95r9q0rdznkz2pjmziyimnrqzyicyvfyzq"))))
5857 (build-system r-build-system)
5858 (propagated-inputs
5859 (list r-broom
5860 r-cpp11
5861 r-dplyr
5862 r-generics
5863 r-lattice
5864 r-rcpp
5865 r-rlang
5866 r-tidyr
5867 r-withr))
5868 (home-page "https://cran.r-project.org/web/packages/mice/")
5869 (synopsis "Multivariate imputation by chained equations")
5870 (description
5871 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
5872 implemented by the MICE algorithm as described in @url{Van Buuren and
5873 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
5874 variable has its own imputation model. Built-in imputation models are
5875 provided for continuous data (predictive mean matching, normal), binary
5876 data (logistic regression), unordered categorical data (polytomous logistic
5877 regression) and ordered categorical data (proportional odds). MICE can also
5878 impute continuous two-level data (normal model, pan, second-level variables).
5879 Passive imputation can be used to maintain consistency between variables.
5880 Various diagnostic plots are available to inspect the quality of the
5881 imputations.")
5882 ;; Any of these two versions.
5883 (license (list license:gpl2 license:gpl3))))
5884
5885 (define-public r-truncnorm
5886 (package
5887 (name "r-truncnorm")
5888 (version "1.0-8")
5889 (source
5890 (origin
5891 (method url-fetch)
5892 (uri (cran-uri "truncnorm" version))
5893 (sha256
5894 (base32
5895 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
5896 (build-system r-build-system)
5897 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
5898 (synopsis "Truncated normal distribution")
5899 (description "This package provides functions for the truncated normal
5900 distribution with mean equal to @code{mean} and standard deviation equal to
5901 @code{sd}. It includes density, distribution, quantile, and expected value
5902 functions, as well as a random generation function.")
5903 (license license:gpl2)))
5904
5905 (define-public r-rsolnp
5906 (package
5907 (name "r-rsolnp")
5908 (version "1.16")
5909 (source
5910 (origin
5911 (method url-fetch)
5912 (uri (cran-uri "Rsolnp" version))
5913 (sha256
5914 (base32
5915 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
5916 (properties `((upstream-name . "Rsolnp")))
5917 (build-system r-build-system)
5918 (propagated-inputs
5919 (list r-truncnorm))
5920 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
5921 (synopsis "General non-linear optimization")
5922 (description "The Rsolnp package implements a general non-linear augmented
5923 Lagrange multiplier method solver, a @dfn{sequential quadratic
5924 programming} (SQP) based solver).")
5925 ;; Any version of the GPL.
5926 (license license:gpl2+)))
5927
5928 (define-public r-hardyweinberg
5929 (package
5930 (name "r-hardyweinberg")
5931 (version "1.7.5")
5932 (source
5933 (origin
5934 (method url-fetch)
5935 (uri (cran-uri "HardyWeinberg" version))
5936 (sha256
5937 (base32
5938 "0b3szw090dsc3bkas2kvx787ww2i6zzg2qmdyivmqc8amx5arn6g"))))
5939 (properties `((upstream-name . "HardyWeinberg")))
5940 (build-system r-build-system)
5941 (propagated-inputs
5942 (list r-mice r-nnet r-rcpp r-rsolnp))
5943 (home-page "https://cran.r-project.org/package=HardyWeinberg")
5944 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
5945 (description
5946 "This package contains tools for exploring Hardy-Weinberg equilibrium for
5947 diallelic genetic marker data. All classical tests (chi-square, exact,
5948 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
5949 included in the package, as well as functions for power computation and for
5950 the simulation of marker data under equilibrium and disequilibrium. Routines
5951 for dealing with markers on the X-chromosome are included. Functions for
5952 testing equilibrium in the presence of missing data by using multiple
5953 imputation are also provided. Implements several graphics for exploring the
5954 equilibrium status of a large set of diallelic markers: ternary plots with
5955 acceptance regions, log-ratio plots and Q-Q plots.")
5956 (license license:gpl2+)))
5957
5958 (define-public r-sm
5959 (package
5960 (name "r-sm")
5961 (version "2.2-5.7")
5962 (source
5963 (origin
5964 (method url-fetch)
5965 (uri (cran-uri "sm" version))
5966 (sha256
5967 (base32
5968 "03z8igsjqr32x407asxvkrbayvm6yhv9xyfs0n8fkmv8zk5a41r6"))))
5969 (build-system r-build-system)
5970 (native-inputs (list gfortran))
5971 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
5972 (synopsis "Smoothing methods for nonparametric regression and density estimation")
5973 (description
5974 "This is software accompanying the book 'Applied Smoothing Techniques for
5975 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
5976 University Press. It provides smoothing methods for nonparametric regression
5977 and density estimation")
5978 (license license:gpl2+)))
5979
5980 (define-public r-venndiagram
5981 (package
5982 (name "r-venndiagram")
5983 (version "1.7.3")
5984 (source (origin
5985 (method url-fetch)
5986 (uri (cran-uri "VennDiagram" version))
5987 (sha256
5988 (base32
5989 "0ilcxcp8qskmb5cp7fyb7i0qizg42lrx0ny8ws3if90kfrglghp7"))))
5990 (properties `((upstream-name . "VennDiagram")))
5991 (build-system r-build-system)
5992 (propagated-inputs
5993 (list r-futile-logger))
5994 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
5995 (synopsis "Generate High-Resolution Venn and Euler Plots")
5996 (description
5997 "This package provides a set of functions to generate high-resolution
5998 Venn and Euler plots. It includes handling for several special cases,
5999 including two-case scaling, and extensive customization of plot shape and
6000 structure.")
6001 (license license:gpl2+)))
6002
6003 (define-public r-vioplot
6004 (package
6005 (name "r-vioplot")
6006 (version "0.3.7")
6007 (source
6008 (origin
6009 (method url-fetch)
6010 (uri (cran-uri "vioplot" version))
6011 (sha256
6012 (base32
6013 "1dmdasp3jldc41233z6r08w3j76vyyp9m3jrj7n4ahk48yd5siq6"))))
6014 (build-system r-build-system)
6015 (propagated-inputs
6016 (list r-sm r-zoo))
6017 (native-inputs
6018 (list r-knitr))
6019 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
6020 (synopsis "Violin plot")
6021 (description
6022 "This package provides a violin plot, which is a combination of a box
6023 plot and a kernel density plot.")
6024 (license license:bsd-3)))
6025
6026 (define-public r-rsofia
6027 (package
6028 (name "r-rsofia")
6029 (version "1.1")
6030 (source (origin
6031 (method url-fetch)
6032 ;; This package has been removed from CRAN, so we can
6033 ;; only fetch it from the archives.
6034 (uri (string-append "https://cran.r-project.org/src/"
6035 "contrib/Archive/RSofia/RSofia_"
6036 version ".tar.gz"))
6037 (sha256
6038 (base32
6039 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
6040 (properties `((upstream-name . "RSofia")))
6041 (build-system r-build-system)
6042 (propagated-inputs
6043 (list r-rcpp))
6044 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
6045 (synopsis "Port of sofia-ml to R")
6046 (description "This package is a port of sofia-ml to R. Sofia-ml is a
6047 suite of fast incremental algorithms for machine learning that can be used for
6048 training models for classification or ranking.")
6049 (license license:asl2.0)))
6050
6051 (define-public r-xts
6052 (package
6053 (name "r-xts")
6054 (version "0.12.1")
6055 (source
6056 (origin
6057 (method url-fetch)
6058 (uri (cran-uri "xts" version))
6059 (sha256
6060 (base32
6061 "0b6a7mpyk9aw6axas7nz01gadczprwwfhii01fz31z26z555i06n"))))
6062 (build-system r-build-system)
6063 (propagated-inputs (list r-zoo))
6064 (home-page "https://github.com/joshuaulrich/xts")
6065 (synopsis "Extensible time series")
6066 (description
6067 "This package provides for uniform handling of R's different time-based
6068 data classes by extending @code{zoo}, maximizing native format information
6069 preservation and allowing for user-level customization and extension, while
6070 simplifying cross-class interoperability.")
6071 (license license:gpl2+)))
6072
6073 (define-public r-performanceanalytics
6074 (package
6075 (name "r-performanceanalytics")
6076 (version "2.0.4")
6077 (source
6078 (origin
6079 (method url-fetch)
6080 (uri (cran-uri "PerformanceAnalytics" version))
6081 (sha256
6082 (base32
6083 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
6084 (properties
6085 `((upstream-name . "PerformanceAnalytics")))
6086 (build-system r-build-system)
6087 (propagated-inputs
6088 (list r-quadprog r-xts r-zoo))
6089 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
6090 (synopsis "Econometric tools for performance and risk analysis")
6091 (description "This is a collection of econometric functions for
6092 performance and risk analysis. This package aims to aid practitioners and
6093 researchers in utilizing the latest research in analysis of non-normal return
6094 streams. In general, it is most tested on return (rather than price) data on
6095 a regular scale, but most functions will work with irregular return data as
6096 well, and increasing numbers of functions will work with P&L or price data
6097 where possible.")
6098 ;; Either version may be picked.
6099 (license (list license:gpl2 license:gpl3))))
6100
6101 (define-public r-laeken
6102 (package
6103 (name "r-laeken")
6104 (version "0.5.2")
6105 (source
6106 (origin
6107 (method url-fetch)
6108 (uri (cran-uri "laeken" version))
6109 (sha256
6110 (base32
6111 "1p3ccbaydlr52p8qmgmm2l6kryvq6jjjx7mqn2vv0gpjaxqhyy92"))))
6112 (build-system r-build-system)
6113 (propagated-inputs
6114 (list r-boot r-mass))
6115 (home-page "https://cran.r-project.org/web/packages/laeken/")
6116 (synopsis "Estimation of indicators on social exclusion and poverty")
6117 (description "This package provides tools for the estimation of indicators
6118 on social exclusion and poverty, as well as an implementation of Pareto tail
6119 modeling for empirical income distributions.")
6120 (license license:gpl2+)))
6121
6122 (define-public r-vcd
6123 (package
6124 (name "r-vcd")
6125 (version "1.4-9")
6126 (source
6127 (origin
6128 (method url-fetch)
6129 (uri (cran-uri "vcd" version))
6130 (sha256
6131 (base32
6132 "13sn77qdcyll9lz7nab0bxzfvpgj8f5rl2cq5ylpz8pibynj1d55"))))
6133 (build-system r-build-system)
6134 (propagated-inputs
6135 (list r-colorspace r-lmtest r-mass))
6136 (home-page "https://cran.r-project.org/web/packages/vcd/")
6137 (synopsis "Visualizing categorical data")
6138 (description "This package provides visualization techniques, data sets,
6139 summary and inference procedures aimed particularly at categorical data.
6140 Special emphasis is given to highly extensible grid graphics. The package was
6141 originally inspired by the book \"Visualizing Categorical Data\" by Michael
6142 Friendly and is now the main support package for a new book, \"Discrete Data
6143 Analysis with R\" by Michael Friendly and David Meyer (2015).")
6144 (license license:gpl2)))
6145
6146 (define-public r-vcfr
6147 (package
6148 (name "r-vcfr")
6149 (version "1.12.0")
6150 (source (origin
6151 (method url-fetch)
6152 (uri (cran-uri "vcfR" version))
6153 (sha256
6154 (base32
6155 "0lhxb3ac4fafwik9q3cds46svzf0hyca8k54chw3dpk50c0zz1yx"))))
6156 (build-system r-build-system)
6157 (native-inputs
6158 (list r-knitr))
6159 (inputs
6160 (list zlib))
6161 (propagated-inputs
6162 (list r-ape
6163 r-dplyr
6164 r-magrittr
6165 r-memuse
6166 r-pinfsc50
6167 r-rcpp
6168 r-stringr
6169 r-tibble
6170 r-vegan
6171 r-viridislite))
6172 (home-page "https://github.com/knausb/vcfR")
6173 (synopsis "Manipulate and visualize VCF data")
6174 (description "This package facilitates easy manipulation of variant call
6175 format (VCF) data. Functions are provided to rapidly read from and write to
6176 VCF files. Once VCF data is read into R, a parser function extracts matrices
6177 of data. This information can then be used for quality control or other
6178 purposes. Additional functions provide visualization of genomic data. Once
6179 processing is complete data may be written to a VCF file. It also may be
6180 converted into other popular R objects. This package provides a link between
6181 VCF data and familiar R software.")
6182 (license license:gpl3)))
6183
6184 (define-public r-ica
6185 (package
6186 (name "r-ica")
6187 (version "1.0-2")
6188 (source
6189 (origin
6190 (method url-fetch)
6191 (uri (cran-uri "ica" version))
6192 (sha256
6193 (base32
6194 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
6195 (build-system r-build-system)
6196 (home-page "https://cran.r-project.org/web/packages/ica/")
6197 (synopsis "Independent component analysis")
6198 (description "This package provides tools for @dfn{Independent Component
6199 Analysis} (ICA) using various algorithms: FastICA,
6200 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
6201 of Eigenmatrices} (JADE).")
6202 (license license:gpl2+)))
6203
6204 (define-public r-dtw
6205 (package
6206 (name "r-dtw")
6207 (version "1.22-3")
6208 (source
6209 (origin
6210 (method url-fetch)
6211 (uri (cran-uri "dtw" version))
6212 (sha256
6213 (base32
6214 "004gm4mzgdzdj807j3bwqsv5lizmnmz5jq514bdjshhkysnzjz6z"))))
6215 (build-system r-build-system)
6216 (propagated-inputs (list r-proxy))
6217 (home-page "http://dtw.r-forge.r-project.org/")
6218 (synopsis "Dynamic Time Warping Algorithms")
6219 (description "This package provides a comprehensive implementation of
6220 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
6221 optimal (least cumulative distance) alignment between points of two time
6222 series. Common DTW variants covered include local (slope) and global (window)
6223 constraints, subsequence matches, arbitrary distance definitions,
6224 normalizations, minimum variance matching, and so on.")
6225 (license license:gpl2+)))
6226
6227 (define-public r-sdmtools
6228 (package
6229 (name "r-sdmtools")
6230 (version "1.1-221.2")
6231 (source
6232 (origin
6233 (method url-fetch)
6234 (uri (cran-uri "SDMTools" version))
6235 (sha256
6236 (base32
6237 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
6238 (properties `((upstream-name . "SDMTools")))
6239 (build-system r-build-system)
6240 (propagated-inputs (list r-r-utils))
6241 (home-page "https://www.rforge.net/SDMTools/")
6242 (synopsis "Species distribution modelling tools")
6243 (description "This package provides a set of tools for post processing
6244 the outcomes of species distribution modeling exercises. It includes novel
6245 methods for comparing models and tracking changes in distributions through
6246 time. It further includes methods for visualizing outcomes, selecting
6247 thresholds, calculating measures of accuracy and landscape fragmentation
6248 statistics, etc.")
6249 (license license:gpl3+)))
6250
6251 (define-public r-scatterplot3d
6252 (package
6253 (name "r-scatterplot3d")
6254 (version "0.3-41")
6255 (source
6256 (origin
6257 (method url-fetch)
6258 (uri (cran-uri "scatterplot3d" version))
6259 (sha256
6260 (base32
6261 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
6262 (build-system r-build-system)
6263 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
6264 (synopsis "3D scatter plot")
6265 (description "This package provides an implementation of scatter plots for
6266 plotting. a three dimensional point cloud.")
6267 (license license:gpl2)))
6268
6269 (define-public r-ggridges
6270 (package
6271 (name "r-ggridges")
6272 (version "0.5.3")
6273 (source
6274 (origin
6275 (method url-fetch)
6276 (uri (cran-uri "ggridges" version))
6277 (sha256
6278 (base32
6279 "0bmlqy1p6rac90af97ffpdi6php7dblx66l2hcm8ljidgyqzmspm"))))
6280 (build-system r-build-system)
6281 (propagated-inputs
6282 (list r-ggplot2 r-plyr r-scales r-withr))
6283 (native-inputs
6284 (list r-knitr))
6285 (home-page "https://github.com/clauswilke/ggridges")
6286 (synopsis "Ridgeline plots in ggplot2")
6287 (description
6288 "Ridgeline plots provide a convenient way of visualizing changes in
6289 distributions over time or space. This package enables the creation of such
6290 plots in @code{ggplot2}.")
6291 (license license:gpl2)))
6292
6293 (define-public r-ggjoy
6294 (package
6295 (name "r-ggjoy")
6296 (version "0.4.1")
6297 (source
6298 (origin
6299 (method url-fetch)
6300 (uri (cran-uri "ggjoy" version))
6301 (sha256
6302 (base32
6303 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
6304 (build-system r-build-system)
6305 (propagated-inputs
6306 (list r-ggplot2 r-ggridges))
6307 (home-page "https://github.com/clauswilke/ggjoy")
6308 (synopsis "Joyplots in ggplot2")
6309 (description "Joyplots provide a convenient way of visualizing changes in
6310 distributions over time or space. This package enables the creation of such
6311 plots in @code{ggplot2}.")
6312 (license license:gpl2)))
6313
6314 (define-public r-cli
6315 (package
6316 (name "r-cli")
6317 (version "3.3.0")
6318 (source
6319 (origin
6320 (method url-fetch)
6321 (uri (cran-uri "cli" version))
6322 (sha256
6323 (base32
6324 "0qqd4mscv8ndjbji7knprdlv2hhyk35gazagvapbjzq1p6yfpaf3"))))
6325 (build-system r-build-system)
6326 (propagated-inputs
6327 (list r-glue))
6328 (home-page "https://github.com/r-lib/cli#readme")
6329 (synopsis "Helpers for developing command line interfaces")
6330 (description "This package provides a suite of tools designed to build
6331 attractive command line interfaces (CLIs). It includes tools for drawing
6332 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
6333 (license license:expat)))
6334
6335 (define-public r-argparser
6336 (package
6337 (name "r-argparser")
6338 (version "0.7.1")
6339 (source
6340 (origin
6341 (method url-fetch)
6342 (uri (cran-uri "argparser" version))
6343 (sha256
6344 (base32
6345 "0xcl0ivsbc4iw8s7027q4cx68j6s5lihbby0xa9pmlv4wjmcvdr6"))))
6346 (build-system r-build-system)
6347 (home-page "https://bitbucket.org/djhshih/argparser")
6348 (synopsis "Command-line argument parser")
6349 (description
6350 "This package provides a cross-platform command-line argument parser
6351 written purely in R with no external dependencies. It is useful with the
6352 Rscript front-end and facilitates turning an R script into an executable
6353 script.")
6354 (license license:gpl3+)))
6355
6356 (define-public r-debugme
6357 (package
6358 (name "r-debugme")
6359 (version "1.1.0")
6360 (source
6361 (origin
6362 (method url-fetch)
6363 (uri (cran-uri "debugme" version))
6364 (sha256
6365 (base32
6366 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
6367 (build-system r-build-system)
6368 (propagated-inputs (list r-crayon))
6369 (home-page "https://github.com/r-lib/debugme#readme")
6370 (synopsis "Debug R packages")
6371 (description
6372 "This package allows the user to specify debug messages as special string
6373 constants, and control debugging of packages via environment variables.")
6374 (license license:expat)))
6375
6376 (define-public r-processx
6377 (package
6378 (name "r-processx")
6379 (version "3.5.3")
6380 (source
6381 (origin
6382 (method url-fetch)
6383 (uri (cran-uri "processx" version))
6384 (sha256
6385 (base32 "0ail3w8n5g1ibdamgpxcfpla18kqkilmppiasm7ms67cavx2k5k7"))))
6386 (build-system r-build-system)
6387 (propagated-inputs
6388 (list r-ps r-r6))
6389 (home-page "https://github.com/r-lib/processx3")
6390 (synopsis "Execute and control system processes")
6391 (description
6392 "This package provides portable tools to run system processes in the
6393 background. It can check if a background process is running; wait on a
6394 background process to finish; get the exit status of finished processes; kill
6395 background processes and their children; restart processes. It can read the
6396 standard output and error of the processes, using non-blocking connections.
6397 @code{processx} can poll a process for standard output or error, with a
6398 timeout. It can also poll several processes at once.")
6399 (license license:expat)))
6400
6401 (define-public r-tsp
6402 (package
6403 (name "r-tsp")
6404 (version "1.2-0")
6405 (source
6406 (origin
6407 (method url-fetch)
6408 (uri (cran-uri "TSP" version))
6409 (sha256
6410 (base32
6411 "022k0972kcxb0w6qhx09l9cif8fmpkpvwddvgxiy60bx343ywzia"))))
6412 (properties `((upstream-name . "TSP")))
6413 (build-system r-build-system)
6414 (propagated-inputs (list r-foreach))
6415 (home-page "https://cran.r-project.org/web/packages/TSP/")
6416 (synopsis "Traveling salesperson problem (TSP)")
6417 (description "This package provides basic infrastructure and some
6418 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
6419 traveling salesman problem).")
6420 (license license:gpl3)))
6421
6422 (define-public r-qap
6423 (package
6424 (name "r-qap")
6425 (version "0.1-1")
6426 (source
6427 (origin
6428 (method url-fetch)
6429 (uri (cran-uri "qap" version))
6430 (sha256
6431 (base32
6432 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
6433 (build-system r-build-system)
6434 (native-inputs (list gfortran))
6435 (home-page "https://cran.r-project.org/web/packages/qap/")
6436 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
6437 (description "This package implements heuristics for the @dfn{quadratic
6438 assignment problem} (QAP). Currently only a simulated annealing heuristic is
6439 available.")
6440 (license license:gpl3)))
6441
6442 (define-public r-gclus
6443 (package
6444 (name "r-gclus")
6445 (version "1.3.2")
6446 (source
6447 (origin
6448 (method url-fetch)
6449 (uri (cran-uri "gclus" version))
6450 (sha256
6451 (base32
6452 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
6453 (build-system r-build-system)
6454 (propagated-inputs (list r-cluster))
6455 (home-page "https://cran.r-project.org/web/packages/gclus/")
6456 (synopsis "Clustering graphics")
6457 (description "This package orders panels in scatterplot matrices and
6458 parallel coordinate displays by some merit index. It contains various indices
6459 of merit, ordering functions, and enhanced versions of @code{pairs} and
6460 @code{parcoord} which color panels according to their merit level.")
6461 (license license:gpl2+)))
6462
6463 (define-public r-webshot
6464 (package
6465 (name "r-webshot")
6466 (version "0.5.3")
6467 (source
6468 (origin
6469 (method url-fetch)
6470 (uri (cran-uri "webshot" version))
6471 (sha256
6472 (base32
6473 "1h6v94zwq0ypgi4vf8xlhp5k13j7f9061hx908177i68c6zg5i5p"))))
6474 (build-system r-build-system)
6475 (propagated-inputs
6476 (list r-callr r-jsonlite r-magrittr))
6477 (home-page "https://github.com/wch/webshot/")
6478 (synopsis "Take screenshots of web pages")
6479 (description
6480 "Webshot makes it easy to take screenshots of web pages from within R.
6481 It can also run Shiny applications locally and take screenshots of the
6482 application; and it can render and screenshot static as well as interactive R
6483 Markdown documents.")
6484 (license license:gpl2)))
6485
6486 (define-public r-seriation
6487 (package
6488 (name "r-seriation")
6489 (version "1.3.5")
6490 (source
6491 (origin
6492 (method url-fetch)
6493 (uri (cran-uri "seriation" version))
6494 (sha256
6495 (base32
6496 "0dlj0mqpg585m6i7yn0h878i8ag6pyqph98xkk42i2nvghpy01gr"))))
6497 (build-system r-build-system)
6498 (propagated-inputs
6499 (list r-cluster
6500 r-colorspace
6501 r-gclus
6502 r-mass
6503 r-qap
6504 r-registry
6505 r-tsp))
6506 (native-inputs (list gfortran))
6507 (home-page "https://s2.smu.edu/IDA/seriation/")
6508 (synopsis "Infrastructure for ordering objects using seriation")
6509 (description
6510 "This package provides infrastructure for seriation with an
6511 implementation of several seriation/sequencing techniques to reorder matrices,
6512 dissimilarity matrices, and dendrograms. It also provides (optimally)
6513 reordered heatmaps, color images and clustering visualizations like
6514 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
6515 iVAT).")
6516 (license license:gpl3)))
6517
6518 (define-public r-xfun
6519 (package
6520 (name "r-xfun")
6521 (version "0.31")
6522 (source
6523 (origin
6524 (method url-fetch)
6525 (uri (cran-uri "xfun" version))
6526 (sha256
6527 (base32 "0dgjkrlwl6rxmvdn6s1xrbiaa53hkfx2s7rqrbrc7c6shbkg6sfi"))))
6528 (build-system r-build-system)
6529 ;; knitr itself depends on xfun
6530 #;
6531 (native-inputs
6532 `(("r-knitr" ,r-knitr)))
6533 (home-page "https://github.com/yihui/xfun")
6534 (synopsis "Miscellaneous functions")
6535 (description
6536 "This package provides miscellaneous functions commonly used in other
6537 packages maintained by Yihui Xie.")
6538 (license license:expat)))
6539
6540 (define-public r-utf8
6541 (package
6542 (name "r-utf8")
6543 (version "1.2.2")
6544 (source
6545 (origin
6546 (method url-fetch)
6547 (uri (cran-uri "utf8" version))
6548 (sha256
6549 (base32
6550 "1x6qg19z4qih9lk3mvnmx0vailm1khp5lylw4hlwz6rssj3yw6m7"))))
6551 (build-system r-build-system)
6552 (native-inputs
6553 (list r-knitr r-rmarkdown)) ; for vignettes
6554 (home-page "https://github.com/patperry/r-utf8")
6555 (synopsis "Unicode text processing")
6556 (description
6557 "This package provides tools to process and print UTF-8 encoded
6558 international text (Unicode). Input, validate, normalize, encode, format, and
6559 display.")
6560 (license license:asl2.0)))
6561
6562 (define-public r-zeallot
6563 (package
6564 (name "r-zeallot")
6565 (version "0.1.0")
6566 (source
6567 (origin
6568 (method url-fetch)
6569 (uri (cran-uri "zeallot" version))
6570 (sha256
6571 (base32
6572 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
6573 (build-system r-build-system)
6574 (home-page "https://github.com/nteetor/zeallot")
6575 (synopsis "Multiple, unpacking, and destructuring assignment")
6576 (description
6577 "This package provides a @code{%<-%} operator to perform multiple,
6578 unpacking, and destructuring assignment in R. The operator unpacks the
6579 right-hand side of an assignment into multiple values and assigns these values
6580 to variables on the left-hand side of the assignment.")
6581 (license license:expat)))
6582
6583 (define-public r-zlog
6584 (package
6585 (name "r-zlog")
6586 (version "1.0.0")
6587 (source (origin
6588 (method url-fetch)
6589 (uri (cran-uri "zlog" version))
6590 (sha256
6591 (base32
6592 "1d5j31p0h3rrn230087h3ngpvwknlisjv0f1qdbicdj9m177spci"))))
6593 (properties `((upstream-name . "zlog")))
6594 (build-system r-build-system)
6595 (native-inputs (list r-knitr))
6596 (home-page "https://cran.r-project.org/package=zlog")
6597 (synopsis "Transformation for laboratory easurements")
6598 (description
6599 "The @code{zlog} package offers functions to transform laboratory
6600 measurements into standardised z or @math{z(log)-values}. Therefore the lower
6601 and upper reference limits are needed. If these are not known they could be
6602 estimated from a given sample.")
6603 (license license:gpl3+)))
6604
6605 (define-public r-vctrs
6606 (package
6607 (name "r-vctrs")
6608 (version "0.4.1")
6609 (source
6610 (origin
6611 (method url-fetch)
6612 (uri (cran-uri "vctrs" version))
6613 (sha256
6614 (base32
6615 "1pb0wjpwix29q8d8p3wi72a9mp9mif7369pk31w238cs00g8hxln"))))
6616 (build-system r-build-system)
6617 (propagated-inputs
6618 (list r-cli r-glue r-rlang))
6619 (native-inputs
6620 (list r-knitr))
6621 (home-page "https://github.com/r-lib/vctrs")
6622 (synopsis "Vector helpers")
6623 (description
6624 "There are three main goals to the @code{vctrs} package:
6625
6626 @enumerate
6627 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
6628 @code{length()} and @code{class()}. These definitions are paired with a
6629 framework for type-coercion and size-recycling.
6630 @item To define type- and size-stability as desirable function properties, use
6631 them to analyse existing base function, and to propose better alternatives.
6632 This work has been particularly motivated by thinking about the ideal
6633 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
6634 @item To provide a new @code{vctr} base class that makes it easy to create new
6635 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
6636 a few new @code{vctrs} generics, making implementation considerably simpler
6637 and more robust.
6638 @end enumerate\n")
6639 (license license:gpl3)))
6640
6641 (define-public r-pillar
6642 (package
6643 (name "r-pillar")
6644 (version "1.7.0")
6645 (source
6646 (origin
6647 (method url-fetch)
6648 (uri (cran-uri "pillar" version))
6649 (sha256
6650 (base32
6651 "1fqk18vc9ashf12gdqkdi6n1nj5lh324vwhgiib3b2fcb2bghhbq"))))
6652 (build-system r-build-system)
6653 (propagated-inputs
6654 (list r-cli
6655 r-crayon
6656 r-ellipsis
6657 r-fansi
6658 r-glue
6659 r-lifecycle
6660 r-rlang
6661 r-utf8
6662 r-vctrs))
6663 (native-inputs
6664 (list r-knitr))
6665 (home-page "https://github.com/r-lib/pillar")
6666 (synopsis "Coloured formatting for columns")
6667 (description
6668 "This package provides a @code{pillar} generic designed for formatting
6669 columns of data using the full range of colours provided by modern
6670 terminals.")
6671 (license license:gpl3)))
6672
6673 (define-public r-pinfsc50
6674 (package
6675 (name "r-pinfsc50")
6676 (version "1.2.0")
6677 (source (origin
6678 (method url-fetch)
6679 (uri (cran-uri "pinfsc50" version))
6680 (sha256
6681 (base32
6682 "1547xyxmfb7zi8h9bsm6k67dcw4hpp129xzvmgwfw7r6p4af47zd"))))
6683 (build-system r-build-system)
6684 (home-page "https://cran.r-project.org/web/packages/pinfsc50/")
6685 (synopsis "Genomic data for the plant pathogen Phytophthora infestans")
6686 (description "This package contains genomic data for the plant pathogen
6687 Phytophthora infestans. It includes a variant file, a sequence file and an
6688 annotation file. This package is intended to be used as example data for
6689 packages that work with genomic data.")
6690 (license license:gpl2+)))
6691
6692 (define-public r-uuid
6693 (package
6694 (name "r-uuid")
6695 (version "1.1-0")
6696 (source
6697 (origin
6698 (method url-fetch)
6699 (uri (cran-uri "uuid" version))
6700 (sha256
6701 (base32
6702 "0bzlc2knmr338h4ykx8v8c2a1inizxafj8rh13kwii68gpp50nz7"))))
6703 (build-system r-build-system)
6704 (home-page "https://www.rforge.net/uuid")
6705 (synopsis "Tools for generating and handling of UUIDs")
6706 (description
6707 "This package provides tools for generating and handling of
6708 @dfn{Universally Unique Identifiers} (UUIDs).")
6709 (license license:expat)))
6710
6711 (define-public r-tinytex
6712 (package
6713 (name "r-tinytex")
6714 (version "0.39")
6715 (source
6716 (origin
6717 (method url-fetch)
6718 (uri (cran-uri "tinytex" version))
6719 (sha256
6720 (base32
6721 "1v95pjxdq0ma90jji5yqh8ihlcf35cmrqx9v0z649zh0q9vrnbpj"))))
6722 (build-system r-build-system)
6723 (propagated-inputs
6724 (list r-xfun))
6725 (home-page "https://github.com/yihui/tinytex")
6726 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
6727 (description
6728 "This package provides helper functions to install and maintain the LaTeX
6729 distribution named TinyTeX, a lightweight, cross-platform, portable, and
6730 easy-to-maintain version of TeX Live. This package also contains helper
6731 functions to compile LaTeX documents, and install missing LaTeX packages
6732 automatically.")
6733 (license license:expat)))
6734
6735 (define-public r-tinytest
6736 (package
6737 (name "r-tinytest")
6738 (version "1.3.1")
6739 (source
6740 (origin
6741 (method url-fetch)
6742 (uri (cran-uri "tinytest" version))
6743 (sha256
6744 (base32
6745 "1mq31f7bzcz5bkgzl9khm1i80axfzra7gcjqxd2yqb4wrw1m3x4s"))))
6746 (properties `((upstream-name . "tinytest")))
6747 (build-system r-build-system)
6748 (home-page "https://github.com/markvanderloo/tinytest")
6749 (synopsis "Lightweight unit testing framework")
6750 (description
6751 "This package provides a lightweight unit testing framework. Main
6752 features:
6753
6754 @enumerate
6755 @item install tests with the package;
6756 @item test results are treated as data that can be stored and manipulated;
6757 @item test files are R scripts interspersed with test commands, that can be
6758 programmed over;
6759 @item fully automated build-install-test sequence for packages;
6760 @item skip tests when not run locally (e.g. on CRAN);
6761 @item flexible and configurable output printing;
6762 @item compare computed output with output stored with the package;
6763 @item run tests in parallel;
6764 @item extensible by other packages;
6765 @item report side effects.
6766 @end enumerate
6767 ")
6768 (license license:gpl3)))
6769
6770 (define-public r-network
6771 (package
6772 (name "r-network")
6773 (version "1.17.2")
6774 (source
6775 (origin
6776 (method url-fetch)
6777 (uri (cran-uri "network" version))
6778 (sha256
6779 (base32
6780 "1xrhzbci7ls4h05skdlirxl49jsvmylrqivz2kd6i33wh2ca324m"))))
6781 (build-system r-build-system)
6782 (propagated-inputs
6783 (list r-magrittr r-statnet-common r-tibble))
6784 (home-page "https://statnet.org/")
6785 (synopsis "Classes for relational data")
6786 (description
6787 "This package provides tools to create and modify network objects. The
6788 @code{network} class can represent a range of relational data types, and
6789 supports arbitrary vertex/edge/graph attributes.")
6790 (license license:gpl2+)))
6791
6792 (define-public r-stabs
6793 (package
6794 (name "r-stabs")
6795 (version "0.6-4")
6796 (source
6797 (origin
6798 (method url-fetch)
6799 (uri (cran-uri "stabs" version))
6800 (sha256
6801 (base32
6802 "1nf1yg14cgxrs4np1yghpzw1nczaslfv3rvf3918wrlzg0vp6l7q"))))
6803 (build-system r-build-system)
6804 (native-inputs
6805 (list r-knitr))
6806 (home-page "https://github.com/hofnerb/stabs")
6807 (synopsis "Stability selection with error control")
6808 (description
6809 "This package provides resampling procedures to assess the stability of
6810 selected variables with additional finite sample error control for
6811 high-dimensional variable selection procedures such as Lasso or boosting.
6812 Both, standard stability selection (Meinshausen & Buhlmann, 2010) and
6813 complementary pairs stability selection with improved error bounds
6814 (Shah & Samworth, 2013) are implemented. The package can be combined with
6815 arbitrary user specified variable selection approaches.")
6816 (license license:gpl2)))
6817
6818 (define-public r-rle
6819 (package
6820 (name "r-rle")
6821 (version "0.9.2")
6822 (source
6823 (origin
6824 (method url-fetch)
6825 (uri (cran-uri "rle" version))
6826 (sha256
6827 (base32
6828 "0sagl0jggg40lihzy7pfq4593rfvc3b3f7g6ggi85s7n18qvwg40"))))
6829 (properties `((upstream-name . "rle")))
6830 (build-system r-build-system)
6831 (home-page "https://cran.r-project.org/web/packages/rle/")
6832 (synopsis "Common functions for run-length encoded vectors")
6833 (description
6834 "This package provides common @code{base} and @code{stats} methods for
6835 @code{rle} objects, aiming to make it possible to treat them transparently as
6836 vectors.")
6837 (license license:gpl3)))
6838
6839 (define-public r-statnet-common
6840 (package
6841 (name "r-statnet-common")
6842 (version "4.6.0")
6843 (source
6844 (origin
6845 (method url-fetch)
6846 (uri (cran-uri "statnet.common" version))
6847 (sha256
6848 (base32
6849 "07djgc6qbxahiy5v15lfayxbj4188lxsb8xcs7hnbm2hic953bfx"))))
6850 (properties
6851 `((upstream-name . "statnet.common")))
6852 (build-system r-build-system)
6853 (propagated-inputs
6854 (list r-coda))
6855 (home-page "https://statnet.org")
6856 (synopsis "R scripts and utilities used by the Statnet software")
6857 (description "This package provides non-statistical utilities used by the
6858 software developed by the Statnet Project.")
6859 (license license:gpl3)))
6860
6861 (define-public r-statcheck
6862 (package
6863 (name "r-statcheck")
6864 (version "1.3.0")
6865 (source
6866 (origin
6867 (method url-fetch)
6868 (uri (cran-uri "statcheck" version))
6869 (sha256
6870 (base32
6871 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
6872 (build-system r-build-system)
6873 (propagated-inputs
6874 (list r-ggplot2 r-plyr r-rmarkdown))
6875 (home-page "https://cran.r-project.org/web/packages/statcheck/")
6876 (synopsis "Extract statistics from articles and recompute p-values")
6877 (description "This package can automatically extract statistical
6878 null-hypothesis significant testing (NHST) results from articles and recompute
6879 the p-values based on the reported test statistic and degrees of freedom to
6880 detect possible inconsistencies.")
6881 (license license:gpl2)))
6882
6883 (define-public r-sna
6884 (package
6885 (name "r-sna")
6886 (version "2.6")
6887 (source
6888 (origin
6889 (method url-fetch)
6890 (uri (cran-uri "sna" version))
6891 (sha256
6892 (base32
6893 "0ai0v4538d30m4wks5s3lch1yfmx1ml0nnrz7ihs097lv586a09s"))))
6894 (build-system r-build-system)
6895 (propagated-inputs
6896 (list r-network r-statnet-common))
6897 (home-page "https://statnet.org")
6898 (synopsis "Tools for social network analysis")
6899 (description
6900 "This package provides a range of tools for social network analysis,
6901 including node and graph-level indices, structural distance and covariance
6902 methods, structural equivalence detection, network regression, random graph
6903 generation, and 2D/3D network visualization.")
6904 (license license:gpl2+)))
6905
6906 (define-public r-tfisher
6907 (package
6908 (name "r-tfisher")
6909 (version "0.2.0")
6910 (source
6911 (origin
6912 (method url-fetch)
6913 (uri (cran-uri "TFisher" version))
6914 (sha256
6915 (base32
6916 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
6917 (properties `((upstream-name . "TFisher")))
6918 (build-system r-build-system)
6919 (propagated-inputs
6920 (list r-matrix r-mvtnorm r-sn))
6921 (home-page "https://cran.r-project.org/web/packages/TFisher/")
6922 (synopsis "Optimal thresholding Fisher's p-value combination method")
6923 (description
6924 "This package provides the @dfn{cumulative distribution function} (CDF),
6925 quantile, and statistical power calculator for a collection of thresholding
6926 Fisher's p-value combination methods, including Fisher's p-value combination
6927 method, truncated product method and, in particular, soft-thresholding
6928 Fisher's p-value combination method which is proven to be optimal in some
6929 context of signal detection. The p-value calculator for the omnibus version
6930 of these tests are also included.")
6931 (license license:gpl2)))
6932
6933 (define-public r-ttr
6934 (package
6935 (name "r-ttr")
6936 (version "0.24.3")
6937 (source
6938 (origin
6939 (method url-fetch)
6940 (uri (cran-uri "TTR" version))
6941 (sha256
6942 (base32
6943 "11xsmbvmxq2j119j2z58bx1fkkb2xlhmzc35z5fbwr3nchrfz6jd"))))
6944 (properties `((upstream-name . "TTR")))
6945 (build-system r-build-system)
6946 (propagated-inputs
6947 (list r-curl r-xts r-zoo))
6948 (home-page "https://github.com/joshuaulrich/TTR")
6949 (synopsis "Technical trading rules")
6950 (description
6951 "This package provides functions and data to construct technical trading
6952 rules with R.")
6953 (license license:gpl2)))
6954
6955 (define-public r-leaflet-providers
6956 (package
6957 (name "r-leaflet-providers")
6958 (version "1.9.0")
6959 (source
6960 (origin
6961 (method url-fetch)
6962 (uri (cran-uri "leaflet.providers" version))
6963 (sha256
6964 (base32 "0yynrwv4xd5cdh49cwvfxm4ranarah9iiry2cd3b4fiihdfcg3wy"))))
6965 (properties `((upstream-name . "leaflet.providers")))
6966 (build-system r-build-system)
6967 (home-page "https://github.com/rstudio/leaflet.providers")
6968 (synopsis "Leaflet map tile providers")
6969 (description
6970 "This package contains third-party map tile provider information from
6971 Leaflet.js, to be used with the @code{leaflet} R package. Additionally,
6972 @code{leaflet.providers} enables users to retrieve up-to-date provider
6973 information between package updates.")
6974 (license license:bsd-2)))
6975
6976 ;; This package contains a lot of minified JavaScript with unclear provenance.
6977 ;; When upgrading please make sure that all minified JavaScript files are
6978 ;; removed in a snippet and that the replacement sources correspond to the
6979 ;; original minified scripts.
6980 (define-public r-leaflet
6981 (package
6982 (name "r-leaflet")
6983 (version "2.1.1")
6984 (source
6985 (origin
6986 (method url-fetch)
6987 (uri (cran-uri "leaflet" version))
6988 (sha256
6989 (base32 "0xsng9n08i1w7qj4hbi706m6d8jm9ixrnwq5xac2s3csfm1s1xij"))
6990 (snippet
6991 '(for-each
6992 delete-file
6993 (list "inst/htmlwidgets/lib/leaflet/leaflet.js"
6994 "inst/htmlwidgets/lib/leaflet-measure/leaflet-measure.min.js"
6995 "inst/htmlwidgets/lib/leaflet-omnivore/leaflet-omnivore.min.js"
6996 "inst/htmlwidgets/lib/jquery/jquery.min.js"
6997 "inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.min.js"
6998 "inst/htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap.min.js"
6999 "inst/htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.min.js"
7000 "inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.js"
7001 "inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.freezable.js"
7002 "inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport.js"
7003 "inst/legacy/www/leaflet.js")))))
7004 (properties `((upstream-name . "leaflet")))
7005 (build-system r-build-system)
7006 (arguments
7007 `(#:modules ((guix build utils)
7008 (guix build r-build-system)
7009 (srfi srfi-1))
7010 #:phases
7011 (modify-phases %standard-phases
7012 (add-after 'unpack 'process-javascript
7013 (lambda* (#:key inputs #:allow-other-keys)
7014 ;; The inst directory contains some minified JavaScript files.
7015 ;; Regenerate them from sources.
7016 (invoke "unzip" "-d" "/tmp" (assoc-ref inputs "js-leaflet"))
7017 (with-directory-excursion "inst/"
7018 (call-with-values
7019 (lambda ()
7020 (unzip2
7021 `(("/tmp/leaflet-src.js"
7022 "htmlwidgets/lib/leaflet/leaflet.js")
7023 (,(assoc-ref inputs "js-leaflet-measure")
7024 "htmlwidgets/lib/leaflet-measure/leaflet-measure.min.js")
7025 (,(assoc-ref inputs "js-leaflet-omnivore")
7026 "htmlwidgets/lib/leaflet-omnivore/leaflet-omnivore.min.js")
7027 (,(assoc-ref inputs "js-jquery")
7028 "htmlwidgets/lib/jquery/jquery.min.js")
7029 ("htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.js"
7030 "htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.min.js")
7031 (,(assoc-ref inputs "js-bootstrap3")
7032 "htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap.min.js")
7033 ("htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.js"
7034 "htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.min.js")
7035 (,(string-append (assoc-ref inputs "js-leaflet-markercluster")
7036 "/dist/leaflet.markercluster-src.js")
7037 "htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.js")
7038 (,(assoc-ref inputs "js-leaflet-markercluster-freezable")
7039 "htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.freezable.js")
7040 (,(assoc-ref inputs "js-leaflet-markercluster-layersupport")
7041 "htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport.js")
7042 (,(assoc-ref inputs "js-proj4leaflet")
7043 "htmlwidgets/plugins/Proj4Leaflet/proj4.min.js")
7044 ("legacy/www/leaflet-src.js"
7045 "legacy/www/leaflet.js"))))
7046 (lambda (sources targets)
7047 (for-each (lambda (source target)
7048 (format #true "Processing ~a --> ~a~%"
7049 source target)
7050 (invoke "esbuild" source "--minify"
7051 (string-append "--outfile=" target)))
7052 sources targets)))))))))
7053 (native-inputs
7054 `(("esbuild" ,esbuild)
7055 ("unzip" ,unzip)
7056 ("js-bootstrap3"
7057 ,(origin
7058 (method url-fetch)
7059 (uri "https://raw.githubusercontent.com/twbs/bootstrap/v3.3.7/dist/js/bootstrap.js")
7060 (sha256
7061 (base32
7062 "1j1qjagwj0m3q322z9wxxnpkd8zbk6g3kl047dsbmqad6gmqvgha"))))
7063 ("js-jquery"
7064 ,(origin
7065 (method url-fetch)
7066 (uri "https://code.jquery.com/jquery-1.12.4.js")
7067 (sha256
7068 (base32
7069 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
7070 ("js-leaflet"
7071 ,(origin
7072 (method url-fetch)
7073 (uri "http://cdn.leafletjs.com/leaflet/v1.3.1/leaflet.zip")
7074 (sha256
7075 (base32
7076 "10phzd2vczy3zm1b64whp2nna69cf9hlj2bndc9yq47vf3ddqx8f"))))
7077 ("js-leaflet-omnivore"
7078 ,(origin
7079 (method url-fetch)
7080 (uri (string-append "https://api.tiles.mapbox.com/mapbox.js/plugins/"
7081 "leaflet-omnivore/v0.3.1/leaflet-omnivore.js"))
7082 (sha256
7083 (base32
7084 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
7085 ("js-leaflet-markercluster"
7086 ,(origin
7087 (method git-fetch)
7088 (uri (git-reference
7089 (url "https://github.com/Leaflet/Leaflet.markercluster.git")
7090 (commit "v1.1.0")))
7091 (file-name (git-file-name "js-leaflet-markercluster" "1.1.0"))
7092 (sha256
7093 (base32
7094 "0ds8c7picqjmc86bm5n6hm8k71fwsa2cpgib19sbdamzr9hm0rs1"))))
7095 ("js-leaflet-markercluster-freezable"
7096 ,(origin
7097 (method url-fetch)
7098 (uri (string-append
7099 "https://raw.githubusercontent.com/ghybs/Leaflet.MarkerCluster.Freezable/"
7100 "9db80a3fba7dff4aee940e05d3d4dceaa1fffcf9/src/freezable.js"))
7101 (file-name "leaflet-markercluster-freezable.js")
7102 (sha256
7103 (base32
7104 "1k6sn5n0z2x3an91vwvkzmqq4b8ppswgk5hi5qrr79klas1hbx1k"))))
7105 ("js-leaflet-markercluster-layersupport"
7106 ,(origin
7107 (method url-fetch)
7108 (uri (string-append
7109 "https://raw.githubusercontent.com/ghybs/Leaflet.MarkerCluster.LayerSupport/"
7110 "87f3848b92e0516d9c98f6d4cd175f7b8a4e3805/src/layersupport.js"))
7111 (file-name "leaflet-markercluster-layersupport.js")
7112 (sha256
7113 (base32
7114 "15qa21xif94y762c65yxxysxykz3mma6y6agw3nxpr3s7wbb75ff"))))
7115 ("js-leaflet-measure"
7116 ,(origin
7117 (method url-fetch)
7118 (uri "https://unpkg.com/leaflet-measure@1.5.2/dist/leaflet-measure.js")
7119 (file-name "js-leaflet-measure-1.5.2.js")
7120 (sha256
7121 (base32
7122 "0ggg3ffmm7pj9ry4gssrh0a17pnad3p6gwi0dg98y819pmpqa7y0"))))
7123 ("js-proj4leaflet"
7124 ,(origin
7125 (method url-fetch)
7126 (uri "https://raw.githubusercontent.com/kartena/Proj4Leaflet/1.0.2/lib/proj4.js")
7127 (file-name "js-proj4leaflet-1.0.2.js")
7128 (sha256
7129 (base32
7130 "0vyrbf6gv2lyh4c2bzp5349ivwvvg28gpn87y52a7jdb13rlkpab"))))))
7131 (propagated-inputs
7132 (list r-base64enc
7133 r-crosstalk
7134 r-htmltools
7135 r-htmlwidgets
7136 r-leaflet-providers
7137 r-magrittr
7138 r-markdown
7139 r-png
7140 r-raster
7141 r-rcolorbrewer
7142 r-scales
7143 r-sp
7144 r-viridis))
7145 (home-page "https://rstudio.github.io/leaflet/")
7146 (synopsis "Create interactive web maps with the JavaScript Leaflet library")
7147 (description
7148 "Create and customize interactive maps using the Leaflet JavaScript
7149 library and the @code{htmlwidgets} package. These maps can be used directly
7150 from the R console, from RStudio, in Shiny applications and R Markdown
7151 documents.")
7152 (license license:gpl3)))
7153
7154 (define-public r-leaps
7155 (package
7156 (name "r-leaps")
7157 (version "3.1")
7158 (source
7159 (origin
7160 (method url-fetch)
7161 (uri (cran-uri "leaps" version))
7162 (sha256
7163 (base32
7164 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
7165 (build-system r-build-system)
7166 (native-inputs (list gfortran))
7167 (home-page "https://cran.r-project.org/web/packages/leaps/")
7168 (synopsis "Regression subset selection")
7169 (description
7170 "This package provides tools for regression subset selection, including
7171 exhaustive search.")
7172 (license license:gpl2+)))
7173
7174 (define-public r-splus2r
7175 (package
7176 (name "r-splus2r")
7177 (version "1.3-3")
7178 (source
7179 (origin
7180 (method url-fetch)
7181 (uri (cran-uri "splus2R" version))
7182 (sha256
7183 (base32
7184 "035zd22zcpkh74rik9ws6g8al6vjz7jgrqs5si361bzb5n290p3x"))))
7185 (properties `((upstream-name . "splus2R")))
7186 (build-system r-build-system)
7187 (home-page "https://cran.r-project.org/web/packages/splus2R/")
7188 (synopsis "Supplemental S-PLUS functionality in R")
7189 (description
7190 "Currently there are many functions in S-PLUS that are missing in R. To
7191 facilitate the conversion of S-PLUS packages to R packages, this package
7192 provides some missing S-PLUS functionality in R.")
7193 (license license:gpl2)))
7194
7195 (define-public r-ifultools
7196 (package
7197 (name "r-ifultools")
7198 (version "2.0-23")
7199 (source
7200 (origin
7201 (method url-fetch)
7202 (uri (cran-uri "ifultools" version))
7203 (sha256
7204 (base32
7205 "16a7rbvlym3bnfm93ikr5kl0l86ppk0s41fva6idvcx765g3fqkk"))))
7206 (build-system r-build-system)
7207 (propagated-inputs
7208 (list r-mass r-splus2r))
7209 (home-page "https://cran.r-project.org/web/packages/ifultools/")
7210 (synopsis "Insightful research tools")
7211 (description "This package provides C code used by the wmtsa, fractal, and
7212 sapa R packages.")
7213 (license license:gpl2)))
7214
7215 (define-public r-sapa
7216 (package
7217 (name "r-sapa")
7218 (version "2.0-3")
7219 (source
7220 (origin
7221 (method url-fetch)
7222 (uri (cran-uri "sapa" version))
7223 (sha256
7224 (base32
7225 "0kj681rd4c2lvqr926lb6f4qwp281x5274dg6vbk8pf5y7s0qlpc"))))
7226 (build-system r-build-system)
7227 (propagated-inputs
7228 (list r-ifultools r-splus2r))
7229 (home-page "https://cran.r-project.org/web/packages/sapa/")
7230 (synopsis "Spectral analysis for physical applications")
7231 (description "This package provides software for the book Spectral
7232 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
7233 Cambridge University Press, 1993.")
7234 (license license:gpl2)))
7235
7236 (define-public r-aggregation
7237 (package
7238 (name "r-aggregation")
7239 (version "1.0.1")
7240 (source
7241 (origin
7242 (method url-fetch)
7243 (uri (cran-uri "aggregation" version))
7244 (sha256
7245 (base32
7246 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
7247 (build-system r-build-system)
7248 (home-page "https://cran.r-project.org/web/packages/aggregation/")
7249 (synopsis "Methods for p-value aggregation")
7250 (description
7251 "This package contains functionality for performing the following methods
7252 of p-value aggregation: Fisher's method, the Lancaster method (weighted
7253 Fisher's method), and Sidak correction.")
7254 (license license:gpl3)))
7255
7256 (define-public r-quantmod
7257 (package
7258 (name "r-quantmod")
7259 (version "0.4.20")
7260 (source
7261 (origin
7262 (method url-fetch)
7263 (uri (cran-uri "quantmod" version))
7264 (sha256
7265 (base32
7266 "154fqhw46kc7r08zsj5fsg97hg93phsli3z14xwmz22xb50xymzp"))))
7267 (build-system r-build-system)
7268 (propagated-inputs
7269 (list r-curl r-ttr r-xts r-zoo))
7270 (home-page "https://cran.r-project.org/web/packages/quantmod/")
7271 (synopsis "Quantitative financial modelling framework")
7272 (description "This package provides a quantitative financial modelling
7273 framework to allow users to specify, build, trade, and analyse quantitative
7274 financial trading strategies.")
7275 (license license:gpl3)))
7276
7277 (define-public r-tseries
7278 (package
7279 (name "r-tseries")
7280 (version "0.10-51")
7281 (source
7282 (origin
7283 (method url-fetch)
7284 (uri (cran-uri "tseries" version))
7285 (sha256
7286 (base32
7287 "0zr09ikaz96djcvnjbr8ah6waqzjy06f4yd4isshlwc391q20px5"))))
7288 (build-system r-build-system)
7289 (propagated-inputs
7290 (list r-quadprog r-quantmod r-zoo))
7291 (native-inputs
7292 (list gfortran))
7293 (home-page "https://cran.r-project.org/web/packages/tseries/")
7294 (synopsis "Time series analysis and computational finance")
7295 (description
7296 "This package provides functions relating to time series analysis and
7297 computational finance.")
7298 (license license:gpl2)))
7299
7300 (define-public r-wmtsa
7301 (package
7302 (name "r-wmtsa")
7303 (version "2.0-3")
7304 (source
7305 (origin
7306 (method url-fetch)
7307 (uri (cran-uri "wmtsa" version))
7308 (sha256
7309 (base32
7310 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
7311 (build-system r-build-system)
7312 (propagated-inputs
7313 (list r-ifultools r-mass r-splus2r))
7314 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
7315 (synopsis "Wavelet methods for time series analysis")
7316 (description
7317 "This package provides software to accompany the book \"Wavelet Methods
7318 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
7319 University Press, 2000.")
7320 (license license:gpl2)))
7321
7322 (define-public r-tsa
7323 (package
7324 (name "r-tsa")
7325 (version "1.3")
7326 (source
7327 (origin
7328 (method url-fetch)
7329 (uri (cran-uri "TSA" version))
7330 (sha256
7331 (base32
7332 "1bv5q609lhmrcxnjnvcj497fbjlv89zwa8q918hw4iki5nkvwwdb"))))
7333 (properties `((upstream-name . "TSA")))
7334 (build-system r-build-system)
7335 (propagated-inputs
7336 (list r-leaps r-locfit r-mgcv r-tseries))
7337 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
7338 (synopsis "Time series analysis")
7339 (description
7340 "This package contains R functions and datasets detailed in the book
7341 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
7342 Cryer and Kung-Sik Chan.")
7343 (license license:gpl2+)))
7344
7345 (define-public r-extradistr
7346 (package
7347 (name "r-extradistr")
7348 (version "1.9.1")
7349 (source
7350 (origin
7351 (method url-fetch)
7352 (uri (cran-uri "extraDistr" version))
7353 (sha256
7354 (base32
7355 "1gypnbvdzczl0mvznvy8r7hzsvc5gvdvi2mmzj21cqdw9n63944r"))))
7356 (properties `((upstream-name . "extraDistr")))
7357 (build-system r-build-system)
7358 (propagated-inputs
7359 (list r-rcpp))
7360 (home-page "https://github.com/twolodzko/extraDistr")
7361 (synopsis "Additional univariate and multivariate distributions")
7362 (description
7363 "This package implements density, distribution functions, quantile
7364 functions and random generation functions for a large number of univariate and
7365 multivariate distributions.")
7366 (license license:gpl2)))
7367
7368 (define-public r-fractal
7369 (package
7370 (name "r-fractal")
7371 (version "2.0-4")
7372 (source
7373 (origin
7374 (method url-fetch)
7375 (uri (cran-uri "fractal" version))
7376 (sha256
7377 (base32
7378 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
7379 (build-system r-build-system)
7380 (propagated-inputs
7381 (list r-ifultools
7382 r-mass
7383 r-sapa
7384 r-scatterplot3d
7385 r-splus2r
7386 r-wmtsa))
7387 (home-page "https://cran.r-project.org/web/packages/fractal/")
7388 (synopsis "Fractal time series modeling and analysis")
7389 (description
7390 "This package provides tools for stochastic fractal and deterministic
7391 chaotic time series analysis.")
7392 (license license:gpl2)))
7393
7394 (define-public r-urca
7395 (package
7396 (name "r-urca")
7397 (version "1.3-0")
7398 (source
7399 (origin
7400 (method url-fetch)
7401 (uri (cran-uri "urca" version))
7402 (sha256
7403 (base32
7404 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
7405 (build-system r-build-system)
7406 (propagated-inputs (list r-nlme))
7407 (native-inputs (list gfortran))
7408 (home-page "https://cran.r-project.org/web/packages/urca/")
7409 (synopsis "Unit root and cointegration tests for time series data")
7410 (description
7411 "This package provides unit root and cointegration tests encountered in
7412 applied econometric analysis.")
7413 (license license:gpl2+)))
7414
7415 (define-public r-cubature
7416 (package
7417 (name "r-cubature")
7418 (version "2.0.4.4")
7419 (source
7420 (origin
7421 (method url-fetch)
7422 (uri (cran-uri "cubature" version))
7423 (sha256
7424 (base32
7425 "0sfmcy5xpa40w3qn0jbg7b802wksl5k8glz9jpx77n159wn3nyq8"))))
7426 (build-system r-build-system)
7427 (propagated-inputs
7428 (list r-rcpp))
7429 (native-inputs
7430 (list r-knitr))
7431 (home-page "https://github.com/bnaras/cubature")
7432 (synopsis "Adaptive multivariate integration over hypercubes")
7433 (description
7434 "This package is an R wrapper around the cubature C library for adaptive
7435 multivariate integration over hypercubes. This version provides both
7436 @code{hcubature} and @code{pcubature} routines in addition to a vector
7437 interface.")
7438 ;; The included cubature C library is released under GPLv2+, but the
7439 ;; wrapper declares the license to be GPLv3+.
7440 (license (list license:gpl2+ license:gpl3+))))
7441
7442 (define-public r-trend
7443 (package
7444 (name "r-trend")
7445 (version "1.1.4")
7446 (source
7447 (origin
7448 (method url-fetch)
7449 (uri (cran-uri "trend" version))
7450 (sha256
7451 (base32
7452 "1mr5g5gaxiqj6x83ngcbwwh57vhrhcz0x9dh0rmvs9y2ivk29ccs"))))
7453 (build-system r-build-system)
7454 (propagated-inputs
7455 (list r-extradistr))
7456 (native-inputs
7457 (list gfortran))
7458 (home-page "https://cran.r-project.org/web/packages/trend/")
7459 (synopsis "Non-parametric trend tests and change-point detection")
7460 (description
7461 "The analysis of environmental data often requires the detection of
7462 trends and change-points. This package includes tests for trend
7463 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
7464 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
7465 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
7466 correlation trend test), change-point detection (Lanzante's test procedures,
7467 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
7468 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
7469 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
7470 sample Robust Rank-Order Distributional Test.")
7471 (license license:gpl3)))
7472
7473 (define-public r-expm
7474 (package
7475 (name "r-expm")
7476 (version "0.999-6")
7477 (source
7478 (origin
7479 (method url-fetch)
7480 (uri (cran-uri "expm" version))
7481 (sha256
7482 (base32
7483 "1p5dapwv8ycxaysgi6imnby04i4kh1c5a2czqa4wygz0s8pr2y9c"))))
7484 (build-system r-build-system)
7485 (propagated-inputs (list r-matrix))
7486 (native-inputs (list gfortran))
7487 (home-page "https://r-forge.r-project.org/projects/expm/")
7488 (synopsis "Tools for matrix exponentials and related quantities")
7489 (description
7490 "This package provides tools for the computation of the matrix
7491 exponential, logarithm, square root, and related quantities.")
7492 (license license:gpl2+)))
7493
7494 (define-public r-complexplus
7495 (package
7496 (name "r-complexplus")
7497 (version "2.1")
7498 (source
7499 (origin
7500 (method url-fetch)
7501 (uri (cran-uri "complexplus" version))
7502 (sha256
7503 (base32
7504 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
7505 (build-system r-build-system)
7506 (propagated-inputs
7507 (list r-expm r-matrix))
7508 (home-page "https://cran.r-project.org/web/packages/complexplus/")
7509 (synopsis "Functions of complex or real variables")
7510 (description
7511 "This package extends several functions to the complex domain, including
7512 the matrix exponential and logarithm, and the determinant.")
7513 (license license:gpl2)))
7514
7515 (define-public r-phontools
7516 (package
7517 (name "r-phontools")
7518 (version "0.2-2.1")
7519 (source
7520 (origin
7521 (method url-fetch)
7522 (uri (cran-uri "phonTools" version))
7523 (sha256
7524 (base32
7525 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
7526 (properties `((upstream-name . "phonTools")))
7527 (build-system r-build-system)
7528 (home-page "http://www.santiagobarreda.com/rscripts.html")
7529 (synopsis "Tools for phonetic and acoustic analyses")
7530 (description
7531 "This package contains tools for the organization, display, and analysis
7532 of the sorts of data frequently encountered in phonetics research and
7533 experimentation, including the easy creation of IPA vowel plots, and the
7534 creation and manipulation of WAVE audio files.")
7535 (license license:bsd-2)))
7536
7537 (define-public r-np
7538 (package
7539 (name "r-np")
7540 (version "0.60-11")
7541 (source
7542 (origin
7543 (method url-fetch)
7544 (uri (cran-uri "np" version))
7545 (sha256
7546 (base32
7547 "1a9kzn37cddwfdki5zjmzanxp75pccdjnsvqfrh84hhcsy51pcx3"))))
7548 (build-system r-build-system)
7549 (propagated-inputs
7550 (list r-boot r-cubature r-quadprog r-quantreg))
7551 (home-page "https://github.com/JeffreyRacine/R-Package-np")
7552 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
7553 (description "This package provides non-parametric (and semi-parametric)
7554 kernel methods that seamlessly handle a mix of continuous, unordered, and
7555 ordered factor data types.")
7556 ;; Any version of the GPL.
7557 (license license:gpl3+)))
7558
7559 (define-public r-powerplus
7560 (package
7561 (name "r-powerplus")
7562 (version "3.1")
7563 (source
7564 (origin
7565 (method url-fetch)
7566 (uri (cran-uri "powerplus" version))
7567 (sha256
7568 (base32
7569 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
7570 (build-system r-build-system)
7571 (propagated-inputs
7572 (list r-complexplus r-expm r-mass r-matrix r-phontools))
7573 (home-page "https://cran.r-project.org/web/packages/powerplus/")
7574 (synopsis "Exponentiation operations")
7575 (description
7576 "This package provides tools for the computation of matrix and scalar
7577 exponentiation.")
7578 (license license:gpl2)))
7579
7580 (define-public r-egg
7581 (package
7582 (name "r-egg")
7583 (version "0.4.5")
7584 (source
7585 (origin
7586 (method url-fetch)
7587 (uri (cran-uri "egg" version))
7588 (sha256
7589 (base32
7590 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
7591 (properties `((upstream-name . "egg")))
7592 (build-system r-build-system)
7593 (propagated-inputs
7594 (list r-ggplot2 r-gridextra r-gtable))
7595 (home-page "https://cran.r-project.org/web/packages/egg")
7596 (synopsis "Extensions for ggplot2")
7597 (description
7598 "This package provides miscellaneous functions to help customize ggplot2
7599 objects. High-level functions are provided to post-process ggplot2 layouts
7600 and allow alignment between plot panels, as well as setting panel sizes to
7601 fixed values. Other functions include a custom @code{geom}, and helper
7602 functions to enforce symmetric scales or add tags to facetted plots.")
7603 (license license:gpl3)))
7604
7605 (define-public r-heatmap3
7606 (package
7607 (name "r-heatmap3")
7608 (version "1.1.9")
7609 (source
7610 (origin
7611 (method url-fetch)
7612 (uri (cran-uri "heatmap3" version))
7613 (sha256
7614 (base32
7615 "0sfvizmmwfk1bjhn6zfx5a4qqfgj1ldg8x90b65crqibgfa36k2r"))))
7616 (build-system r-build-system)
7617 (propagated-inputs
7618 (list r-fastcluster))
7619 (native-inputs
7620 (list r-knitr))
7621 (home-page "https://cran.r-project.org/web/packages/heatmap3/")
7622 (synopsis "Improved heatmap package")
7623 (description
7624 "This package provides an improved heatmap package. It is completely
7625 compatible with the original R function @code{heatmap}, and provides more
7626 powerful and convenient features.")
7627 (license license:gpl2+)))
7628
7629 (define-public r-heatmaply
7630 (package
7631 (name "r-heatmaply")
7632 (version "1.3.0")
7633 (source
7634 (origin
7635 (method url-fetch)
7636 (uri (cran-uri "heatmaply" version))
7637 (sha256
7638 (base32
7639 "1w8yyzb68laxd4zxycvgmpqj5wnyidjgv1vbzbxndp9p92f2cp8a"))))
7640 (build-system r-build-system)
7641 (propagated-inputs
7642 (list r-assertthat
7643 r-colorspace
7644 r-dendextend
7645 r-egg
7646 r-ggplot2
7647 r-htmlwidgets
7648 r-magrittr
7649 r-plotly
7650 r-rcolorbrewer
7651 r-reshape2
7652 r-scales
7653 r-seriation
7654 r-viridis
7655 r-webshot))
7656 (native-inputs
7657 (list r-knitr))
7658 (home-page "https://cran.r-project.org/package=heatmaply")
7659 (synopsis "Interactive cluster heat maps using plotly")
7660 (description
7661 "This package enables you to create interactive cluster heatmaps that can
7662 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
7663 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
7664 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
7665 a popular graphical method for visualizing high-dimensional data, in which a
7666 table of numbers is encoded as a grid of colored cells. The rows and columns
7667 of the matrix are ordered to highlight patterns and are often accompanied by
7668 dendrograms.")
7669 ;; Either version of the license.
7670 (license (list license:gpl2 license:gpl3))))
7671
7672 (define-public r-h5
7673 (package
7674 (name "r-h5")
7675 (version "0.9.9")
7676 (source
7677 (origin
7678 (method url-fetch)
7679 (uri (cran-uri "h5" version))
7680 (sha256
7681 (base32
7682 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
7683 (build-system r-build-system)
7684 (inputs
7685 (list zlib hdf5))
7686 (native-inputs
7687 (list which))
7688 (propagated-inputs
7689 (list r-rcpp))
7690 (home-page "https://github.com/mannau/h5")
7691 (synopsis "Interface to the HDF5 Library")
7692 (description
7693 "This package provides an S4 interface to the HDF5 library supporting
7694 fast storage and retrieval of R-objects like vectors, matrices and arrays to
7695 binary files in a language independent format. The HDF5 format can therefore
7696 be used as an alternative to R's save/load mechanism. Since h5 is able to
7697 access only subsets of stored data it can also handle data sets which do not
7698 fit into memory.")
7699 (license license:bsd-2)))
7700
7701 (define-public r-cgdsr
7702 (package
7703 (name "r-cgdsr")
7704 (version "1.3.0")
7705 (source
7706 (origin
7707 (method url-fetch)
7708 (uri (cran-uri "cgdsr" version))
7709 (sha256
7710 (base32
7711 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
7712 (build-system r-build-system)
7713 (propagated-inputs
7714 (list r-httr r-r-methodss3 r-r-oo))
7715 (home-page "https://github.com/cBioPortal/cgdsr")
7716 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
7717 (description
7718 "This package provides a basic set of R functions for querying the Cancer
7719 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
7720 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
7721 (license license:lgpl3)))
7722
7723 (define-public r-import
7724 (package
7725 (name "r-import")
7726 (version "1.3.0")
7727 (source
7728 (origin
7729 (method url-fetch)
7730 (uri (cran-uri "import" version))
7731 (sha256
7732 (base32
7733 "19g4jnfg9pkvvsncw62yc15xlb97hfbdqxivpjd9jqi36i6mdjrg"))))
7734 (build-system r-build-system)
7735 (native-inputs
7736 (list r-knitr))
7737 (home-page "https://github.com/smbache/import")
7738 (synopsis "Import mechanism for R")
7739 (description
7740 "This is an alternative mechanism for importing objects from packages.
7741 The syntax allows for importing multiple objects from a package with a single
7742 command in an expressive way. The import package bridges some of the gap
7743 between using @code{library} (or @code{require}) and direct (single-object)
7744 imports. Furthermore the imported objects are not placed in the current
7745 environment. It is also possible to import objects from stand-alone @code{.R}
7746 files.")
7747 (license license:expat)))
7748
7749 (define-public r-shinyace
7750 (package
7751 (name "r-shinyace")
7752 (version "0.4.2")
7753 (source
7754 (origin
7755 (method url-fetch)
7756 (uri (cran-uri "shinyAce" version))
7757 (sha256
7758 (base32
7759 "12mqvdh6rxsr61pc3pzla95r5f4l7xagjs2rcdr7c2lbqyxpx6aa"))))
7760 (properties `((upstream-name . "shinyAce")))
7761 (build-system r-build-system)
7762 (propagated-inputs
7763 (list r-shiny r-jsonlite))
7764 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
7765 (synopsis "Ace editor bindings for Shiny")
7766 (description
7767 "This package provides Ace editor bindings to enable a rich text editing
7768 environment within Shiny.")
7769 (license license:expat)))
7770
7771 (define-public r-rafalib
7772 (package
7773 (name "r-rafalib")
7774 (version "1.0.0")
7775 (source
7776 (origin
7777 (method url-fetch)
7778 (uri (cran-uri "rafalib" version))
7779 (sha256
7780 (base32 "1dmxjl66bfdgrybhwyaa8d4i460liqcdw8b29a6w7shgksh29m0k"))))
7781 (properties `((upstream-name . "rafalib")))
7782 (build-system r-build-system)
7783 (propagated-inputs (list r-rcolorbrewer))
7784 (home-page "https://cran.r-project.org/package=rafalib")
7785 (synopsis "Convenience functions for routine data exploration")
7786 (description
7787 "This package provides a series of shortcuts for routine tasks to
7788 facilitate data exploration.")
7789 (license license:artistic2.0)))
7790
7791 (define-public r-randomizr
7792 (package
7793 (name "r-randomizr")
7794 (version "0.22.0")
7795 (source
7796 (origin
7797 (method url-fetch)
7798 (uri (cran-uri "randomizr" version))
7799 (sha256
7800 (base32
7801 "1grm0h3xkb0pdbbv0gd531g1kn6njp0gcy5fh153rrmajxgd8hhw"))))
7802 (properties `((upstream-name . "randomizr")))
7803 (build-system r-build-system)
7804 (native-inputs
7805 (list r-knitr))
7806 (home-page "https://declaredesign.org/r/randomizr/")
7807 (synopsis "Tools for common forms of random assignment and sampling")
7808 (description
7809 "This package provides tools for generating random assignments for common
7810 experimental designs and random samples for common sampling designs.")
7811 (license license:expat)))
7812
7813 (define-public r-base64url
7814 (package
7815 (name "r-base64url")
7816 (version "1.4")
7817 (source
7818 (origin
7819 (method url-fetch)
7820 (uri (cran-uri "base64url" version))
7821 (sha256
7822 (base32
7823 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
7824 (build-system r-build-system)
7825 (propagated-inputs
7826 (list r-backports))
7827 (home-page "https://github.com/mllg/base64url")
7828 (synopsis "Fast and URL-safe base64 encoder and decoder")
7829 (description
7830 "This package provides a URL-safe base64 encoder and decoder. In
7831 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
7832 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
7833 encoder does not fill the string with trailing @code{=}. The resulting
7834 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
7835 and thus are safe to use in URLs or for file names. The package also comes
7836 with a simple base32 encoder/decoder suited for case insensitive file
7837 systems.")
7838 (license license:gpl3)))
7839
7840 (define-public r-radiant-data
7841 (package
7842 (name "r-radiant-data")
7843 (version "1.4.2")
7844 (source
7845 (origin
7846 (method url-fetch)
7847 (uri (cran-uri "radiant.data" version))
7848 (sha256
7849 (base32
7850 "0c5c99q13pwv6k0b07x3r2bxmh0h2w15h02xb1pincgs61qwi15k"))
7851 (modules '((guix build utils)))
7852 (snippet
7853 '(begin
7854 ;; Delete files that are under CC-NC-SA.
7855 (delete-file-recursively "inst/app/tools/help")
7856 #t))))
7857 (properties `((upstream-name . "radiant.data")))
7858 (build-system r-build-system)
7859 (propagated-inputs
7860 (list r-base64enc
7861 r-broom
7862 r-car
7863 r-curl
7864 r-dplyr
7865 r-dt
7866 r-glue
7867 r-ggplot2
7868 r-import
7869 r-jsonlite
7870 r-knitr
7871 r-lubridate
7872 r-magrittr
7873 r-markdown
7874 r-mass
7875 r-patchwork
7876 r-plotly
7877 r-psych
7878 r-randomizr
7879 r-readr
7880 r-readxl
7881 r-rlang
7882 r-rmarkdown
7883 r-rstudioapi
7884 r-scales
7885 r-shiny
7886 r-shinyfiles
7887 r-shinyace
7888 r-stringi
7889 r-tibble
7890 r-tidyr
7891 r-writexl))
7892 (home-page "https://github.com/radiant-rstats/radiant.data")
7893 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
7894 (description
7895 "The Radiant Data menu includes interfaces for loading, saving, viewing,
7896 visualizing, summarizing, transforming, and combining data. It also contains
7897 functionality to generate reproducible reports of the analyses conducted in
7898 the application.")
7899 (license license:agpl3)))
7900
7901 (define-public r-algdesign
7902 (package
7903 (name "r-algdesign")
7904 (version "1.2.1")
7905 (source
7906 (origin
7907 (method url-fetch)
7908 (uri (cran-uri "AlgDesign" version))
7909 (sha256
7910 (base32 "01cx63wqr6yvgl5ml1lj6gh9p1sn42b6qcnsppcw7mvba9n652ar"))))
7911 (properties `((upstream-name . "AlgDesign")))
7912 (build-system r-build-system)
7913 (home-page "https://github.com/jvbraun/AlgDesign")
7914 (synopsis "Algorithmic experimental design")
7915 (description
7916 "This package provides tools to calculate exact and approximate theory
7917 experimental designs for D, A, and I criteria. Very large designs may be
7918 created. Experimental designs may be blocked or blocked designs created from
7919 a candidate list, using several criteria. The blocking can be done when whole
7920 and within plot factors interact.")
7921 (license license:gpl2+)))
7922
7923 (define-public r-alluvial
7924 (package
7925 (name "r-alluvial")
7926 (version "0.1-2")
7927 (source
7928 (origin
7929 (method url-fetch)
7930 (uri (cran-uri "alluvial" version))
7931 (sha256
7932 (base32 "039frwrsxq1lb97s7vf2vbyyadimkigs628ymym06fxka53drdkp"))))
7933 (properties `((upstream-name . "alluvial")))
7934 (build-system r-build-system)
7935 (native-inputs (list r-knitr))
7936 (home-page "https://github.com/mbojan/alluvial")
7937 (synopsis "Create parallel sets plots (Alluvial Diagrams)")
7938 (description
7939 "This package creates alluvial diagrams (also known as parallel sets
7940 plots) for multivariate and time series-like data.")
7941 (license license:expat)))
7942
7943 (define-public r-signal
7944 (package
7945 (name "r-signal")
7946 (version "0.7-7")
7947 (source
7948 (origin
7949 (method url-fetch)
7950 (uri (cran-uri "signal" version))
7951 (sha256
7952 (base32
7953 "0qaf39vfmhn3d0bdjqd805ayfkaj48dkmf5dqd47bpk7dp21b837"))))
7954 (build-system r-build-system)
7955 (propagated-inputs (list r-mass))
7956 (native-inputs (list gfortran))
7957 (home-page "https://cran.r-project.org/web/packages/signal/")
7958 (synopsis "Signal processing")
7959 (description
7960 "This package provides a set of signal processing functions originally
7961 written for Matlab and GNU Octave. It includes filter generation utilities,
7962 filtering functions, resampling routines, and visualization of filter models.
7963 It also includes interpolation functions.")
7964 (license license:gpl2)))
7965
7966 (define-public r-gsubfn
7967 (package
7968 (name "r-gsubfn")
7969 (version "0.7")
7970 (source
7971 (origin
7972 (method url-fetch)
7973 (uri (cran-uri "gsubfn" version))
7974 (sha256
7975 (base32
7976 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
7977 (build-system r-build-system)
7978 (propagated-inputs (list r-proto))
7979 (home-page "https://code.google.com/archive/p/gsubfn/")
7980 (synopsis "Utilities for strings and function arguments")
7981 (description
7982 "This package provides @code{gsubfn} which is like @code{gsub} but can
7983 take a replacement function or certain other objects instead of the
7984 replacement string. Matches and back references are input to the replacement
7985 function and replaced by the function output. @code{gsubfn} can be used to
7986 split strings based on content rather than delimiters and for quasi-perl-style
7987 string interpolation. The package also has facilities for translating
7988 formulas to functions and allowing such formulas in function calls instead of
7989 functions.")
7990 (license license:gpl2+)))
7991
7992 (define-public r-sqldf
7993 (package
7994 (name "r-sqldf")
7995 (version "0.4-11")
7996 (source
7997 (origin
7998 (method url-fetch)
7999 (uri (cran-uri "sqldf" version))
8000 (sha256
8001 (base32
8002 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
8003 (build-system r-build-system)
8004 (propagated-inputs
8005 (list r-chron r-dbi r-gsubfn r-proto r-rsqlite))
8006 (home-page "https://github.com/ggrothendieck/sqldf")
8007 (synopsis "Manipulate R data frames using SQL")
8008 (description
8009 "The @code{sqldf} function is typically passed a single argument which is
8010 an SQL select statement where the table names are ordinary R data frame names.
8011 @code{sqldf} transparently sets up a database, imports the data frames into
8012 that database, performs the SQL statement and returns the result using a
8013 heuristic to determine which class to assign to each column of the returned
8014 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
8015 used to read filtered files into R even if the original files are larger than
8016 R itself can handle.")
8017 (license license:gpl2)))
8018
8019 (define-public r-abind
8020 (package
8021 (name "r-abind")
8022 (version "1.4-5")
8023 (source
8024 (origin
8025 (method url-fetch)
8026 (uri (cran-uri "abind" version))
8027 (sha256
8028 (base32
8029 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
8030 (build-system r-build-system)
8031 (home-page "https://cran.r-project.org/web/packages/abind/")
8032 (synopsis "Combine multidimensional arrays")
8033 (description
8034 "This package provides tools to combine multidimensional arrays into a
8035 single array. This is a generalization of @code{cbind} and @code{rbind}. It
8036 works with vectors, matrices, and higher-dimensional arrays. It also provides
8037 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
8038 extracting and replacing data in arrays.")
8039 (license license:lgpl2.0+)))
8040
8041 (define-public r-prroc
8042 (package
8043 (name "r-prroc")
8044 (version "1.3.1")
8045 (source
8046 (origin
8047 (method url-fetch)
8048 (uri (cran-uri "PRROC" version))
8049 (sha256
8050 (base32
8051 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
8052 (properties `((upstream-name . "PRROC")))
8053 (build-system r-build-system)
8054 (home-page "https://cran.r-project.org/web/packages/PRROC/")
8055 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
8056 (description
8057 "This package computes the areas under the @dfn{precision-recall} (PR)
8058 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
8059 contrast to other implementations, the interpolation between points of the PR
8060 curve is done by a non-linear piecewise function. In addition to the areas
8061 under the curves, the curves themselves can also be computed and plotted by a
8062 specific S3-method.")
8063 (license license:gpl3)))
8064
8065 (define-public r-vim
8066 (package
8067 (name "r-vim")
8068 (version "6.1.1")
8069 (source
8070 (origin
8071 (method url-fetch)
8072 (uri (cran-uri "VIM" version))
8073 (sha256
8074 (base32
8075 "0fbpm6y3hhiw8srnbc38k19b859jcqzsh78ib8yvj86gck5av0bm"))))
8076 (properties `((upstream-name . "VIM")))
8077 (build-system r-build-system)
8078 (propagated-inputs
8079 (list r-car
8080 r-colorspace
8081 r-data-table
8082 r-e1071
8083 r-laeken
8084 r-magrittr
8085 r-mass
8086 r-nnet
8087 r-ranger
8088 r-rcpp
8089 r-robustbase
8090 r-sp
8091 r-vcd))
8092 (native-inputs
8093 (list r-knitr))
8094 (home-page "https://github.com/alexkowa/VIM")
8095 (synopsis "Visualization and imputation of missing values")
8096 (description
8097 "This package provides tools for the visualization of missing and/or
8098 imputed values are introduced, which can be used for exploring the data and
8099 the structure of the missing and/or imputed values. Depending on this
8100 structure of the missing values, the corresponding methods may help to
8101 identify the mechanism generating the missing values and explore the
8102 data including missing values. In addition, the quality of imputation can be
8103 visually explored using various univariate, bivariate, multiple and
8104 multivariate plot methods.")
8105 (license license:gpl2+)))
8106
8107 (define-public r-fnn
8108 (package
8109 (name "r-fnn")
8110 (version "1.1.3.1")
8111 (source
8112 (origin
8113 (method url-fetch)
8114 (uri (cran-uri "FNN" version))
8115 (sha256
8116 (base32
8117 "0nmynpiy3d2dnd5ngjf4m79jy02byhk43gj0xny9a6j8243f5c2j"))))
8118 (properties `((upstream-name . "FNN")))
8119 (build-system r-build-system)
8120 (home-page "https://cran.r-project.org/web/packages/FNN")
8121 (synopsis "Fast nearest neighbor search algorithms and applications")
8122 (description
8123 "This package provides cover-tree and kd-tree fast k-nearest neighbor
8124 search algorithms. Related applications including KNN classification,
8125 regression and information measures are implemented.")
8126 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
8127 ;; later can be used.
8128 (license license:gpl2+)))
8129
8130 (define-public r-smoother
8131 (package
8132 (name "r-smoother")
8133 (version "1.1")
8134 (source
8135 (origin
8136 (method url-fetch)
8137 (uri (cran-uri "smoother" version))
8138 (sha256
8139 (base32
8140 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
8141 (build-system r-build-system)
8142 (propagated-inputs
8143 (list r-ttr))
8144 (home-page "https://cran.r-project.org/web/packages/smoother")
8145 (synopsis "Functions relating to the smoothing of numerical data")
8146 (description
8147 "This package provides a collection of methods for smoothing numerical
8148 data, commencing with a port of the Matlab gaussian window smoothing function.
8149 In addition, several functions typically used in smoothing of financial data
8150 are included.")
8151 (license license:gpl2)))
8152
8153 (define-public r-riverplot
8154 (package
8155 (name "r-riverplot")
8156 (version "0.10")
8157 (source
8158 (origin
8159 (method url-fetch)
8160 (uri (cran-uri "riverplot" version))
8161 (sha256
8162 (base32
8163 "04ap1dsa7fx03l73jhv1ql3adaaaz2100qawdplxa9xmrllgcgbj"))))
8164 (build-system r-build-system)
8165 (propagated-inputs
8166 (list r-rcolorbrewer))
8167 (native-inputs
8168 (list r-knitr))
8169 (home-page "https://logfc.wordpress.com")
8170 (synopsis "Sankey or ribbon plots")
8171 (description
8172 "Sankey plots are a type of diagram that is convenient to illustrate how
8173 flow of information, resources etc. separates and joins, much like observing
8174 how rivers split and merge. For example, they can be used to compare
8175 different clusterings. This package provides an implementation of Sankey
8176 plots for R.")
8177 (license license:gpl2+)))
8178
8179 (define-public r-dyn
8180 (package
8181 (name "r-dyn")
8182 (version "0.2-9.6")
8183 (source
8184 (origin
8185 (method url-fetch)
8186 (uri (cran-uri "dyn" version))
8187 (sha256
8188 (base32
8189 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
8190 (build-system r-build-system)
8191 (propagated-inputs
8192 (list r-zoo))
8193 (home-page "https://cran.r-project.org/web/packages/dyn")
8194 (synopsis "Time series regression")
8195 (description
8196 "This package provides the dyn class interfaces @code{ts}, @code{irts},
8197 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
8198 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
8199 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
8200 @code{randomForest::randomForest()} and other regression functions, allowing
8201 those functions to be used with time series including specifications that may
8202 contain lags, diffs and missing values.")
8203 ;; Any GPL version.
8204 (license license:gpl2+)))
8205
8206 (define-public r-dynutils
8207 (package
8208 (name "r-dynutils")
8209 (version "1.0.9")
8210 (source
8211 (origin
8212 (method url-fetch)
8213 (uri (cran-uri "dynutils" version))
8214 (sha256
8215 (base32 "1pcj4igaw1g898xb42kcpzfmqy80xai5ki5bpnkf8hg738wm00qz"))))
8216 (properties `((upstream-name . "dynutils")))
8217 (build-system r-build-system)
8218 (propagated-inputs
8219 (list r-assertthat
8220 r-crayon
8221 r-desc
8222 r-dplyr
8223 r-magrittr
8224 r-matrix
8225 r-proxyc
8226 r-purrr
8227 r-rcpp
8228 r-remotes
8229 r-stringr
8230 r-tibble))
8231 (native-inputs (list r-knitr))
8232 (home-page "https://github.com/dynverse/dynutils")
8233 (synopsis "Common functionality for the dynverse packages")
8234 (description
8235 "This package provides common functionality for the
8236 @url{https://dynverse.org,dynverse} packages. dynverse is created to support
8237 the development, execution, and benchmarking of trajectory inference
8238 methods.")
8239 (license license:expat)))
8240
8241 (define-public r-catdap
8242 (package
8243 (name "r-catdap")
8244 (version "1.3.5")
8245 (source
8246 (origin
8247 (method url-fetch)
8248 (uri (cran-uri "catdap" version))
8249 (sha256
8250 (base32
8251 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
8252 (build-system r-build-system)
8253 (native-inputs
8254 (list gfortran))
8255 (home-page "https://cran.r-project.org/web/packages/catdap/")
8256 (synopsis "Tools for categorical data analysis")
8257 (description
8258 "This package provides functions for analyzing multivariate data.
8259 Dependencies of the distribution of the specified variable (response
8260 variable) to other variables (explanatory variables) are derived and
8261 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
8262 (license license:gpl2+)))
8263
8264 (define-public r-arules
8265 (package
8266 (name "r-arules")
8267 (version "1.7-3")
8268 (source
8269 (origin
8270 (method url-fetch)
8271 (uri (cran-uri "arules" version))
8272 (sha256
8273 (base32
8274 "05g6ik4z87g83nlicmb380331f84sqchvv1vch49zb7rq6v8gw6r"))))
8275 (build-system r-build-system)
8276 (propagated-inputs
8277 (list r-generics r-matrix))
8278 (home-page "https://github.com/mhahsler/arules")
8279 (synopsis "Mining association rules and frequent itemsets")
8280 (description
8281 "This package provides an infrastructure for representing, manipulating
8282 and analyzing transaction data and patterns (frequent itemsets and association rules).
8283 It also provides C implementations of the association mining algorithms Apriori
8284 and Eclat.")
8285 (license license:gpl3)))
8286
8287 (define-public r-parsedate
8288 (package
8289 (name "r-parsedate")
8290 (version "1.3.0")
8291 (source
8292 (origin
8293 (method url-fetch)
8294 (uri (cran-uri "parsedate" version))
8295 (sha256
8296 (base32
8297 "1c2cpsvma3fkx6zp191bpfvf5rmpsr13g8rzqk6ycyb0n7b9k4qy"))))
8298 (build-system r-build-system)
8299 (home-page "https://github.com/gaborcsardi/parsedate")
8300 (synopsis
8301 "Recognize and parse dates in various formats")
8302 (description
8303 "This package provides three functions for dealing with dates:
8304 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
8305 time formats, @code{parse_date} parses dates in unspecified formats,
8306 and @code{format_iso_8601} formats a date in ISO 8601 format.")
8307 (license license:gpl2)))
8308
8309 (define-public r-abc-data
8310 (package
8311 (name "r-abc-data")
8312 (version "1.0")
8313 (source
8314 (origin
8315 (method url-fetch)
8316 (uri (cran-uri "abc.data" version))
8317 (sha256
8318 (base32
8319 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
8320 (properties `((upstream-name . "abc.data")))
8321 (build-system r-build-system)
8322 (home-page "https://cran.r-project.org/web/packages/abc.data/")
8323 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
8324 (description
8325 "This package contains data which are used by functions of the abc
8326 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
8327 algorithms for performing parameter estimation, model selection, and
8328 goodness-of-fit.")
8329 (license license:gpl3+)))
8330
8331 (define-public r-abc
8332 (package
8333 (name "r-abc")
8334 (version "2.2.1")
8335 (source
8336 (origin
8337 (method url-fetch)
8338 (uri (cran-uri "abc" version))
8339 (sha256
8340 (base32
8341 "16753lyzk2dfwgdjfyanwacqw3bvrwby52inq4709804labs6lnv"))))
8342 (build-system r-build-system)
8343 (propagated-inputs
8344 (list r-abc-data r-locfit r-mass r-nnet r-quantreg))
8345 (home-page "https://cran.r-project.org/web/packages/abc/")
8346 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
8347 (description
8348 "This package implements several @dfn{Approximate Bayesian
8349 Computation} (ABC) algorithms for performing parameter estimation, model
8350 selection, and goodness-of-fit. Cross-validation tools are also available for
8351 measuring the accuracy of ABC estimates, and to calculate the
8352 misclassification probabilities of different models.")
8353 (license license:gpl3+)))
8354
8355 (define-public r-zip
8356 (package
8357 (name "r-zip")
8358 (version "2.2.0")
8359 (source
8360 (origin
8361 (method url-fetch)
8362 (uri (cran-uri "zip" version))
8363 (sha256
8364 (base32
8365 "1n5ryjdj3i16b4mdp29wapgaklz3yzas5k8ffx7q6fa0jry9i5cz"))))
8366 (build-system r-build-system)
8367 (home-page "https://github.com/gaborcsardi/zip")
8368 (synopsis "Cross-platform Zip compression")
8369 (description
8370 "This package provides a cross-platform Zip compression library for R.
8371 It is a replacement for the @code{zip} function, that does not require any
8372 additional external tools on any platform.")
8373 (license license:cc0)))
8374
8375 (define-public r-openxlsx
8376 (package
8377 (name "r-openxlsx")
8378 (version "4.2.5")
8379 (source
8380 (origin
8381 (method url-fetch)
8382 (uri (cran-uri "openxlsx" version))
8383 (sha256
8384 (base32
8385 "0695b265g7jwiqk5c3vmmfkvagx82bkpwhvqzhqaqmmn34l6vl35"))))
8386 (build-system r-build-system)
8387 (propagated-inputs
8388 (list r-rcpp r-stringi r-zip))
8389 (native-inputs
8390 (list r-knitr))
8391 (home-page "https://github.com/awalker89/openxlsx")
8392 (synopsis "Read, write and edit XLSX files")
8393 (description
8394 "This package simplifies the creation of Excel @code{.xlsx} files by
8395 providing a high level interface to writing, styling and editing worksheets.
8396 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
8397 and @code{XLConnect} packages with the added benefit of removing the
8398 dependency on Java.")
8399 (license license:gpl3)))
8400
8401 (define-public r-rio
8402 (package
8403 (name "r-rio")
8404 (version "0.5.29")
8405 (source
8406 (origin
8407 (method url-fetch)
8408 (uri (cran-uri "rio" version))
8409 (sha256
8410 (base32
8411 "04jlrhyl0791yxwcpp1s8p1hhkljnijlc5iaxpk56h41w63k39lz"))))
8412 (build-system r-build-system)
8413 (propagated-inputs
8414 (list r-curl
8415 r-data-table
8416 r-foreign
8417 r-haven
8418 r-openxlsx
8419 r-readxl
8420 r-tibble))
8421 (native-inputs
8422 (list r-knitr))
8423 (home-page "https://github.com/leeper/rio")
8424 (synopsis "Swiss-army knife for data I/O")
8425 (description
8426 "This package provides streamlined data import and export infrastructure
8427 by making assumptions that the user is probably willing to make: @code{import}
8428 and @code{export} determine the data structure from the file extension,
8429 reasonable defaults are used for data import and export (e.g.,
8430 @code{stringsAsFactors=FALSE}), web-based import is natively
8431 supported (including from SSL/HTTPS), compressed files can be read directly
8432 without explicit decompression, and fast import packages are used where
8433 appropriate. An additional convenience function, @code{convert}, provides a
8434 simple method for converting between file types.")
8435 (license license:gpl2)))
8436
8437 (define-public r-maptools
8438 (package
8439 (name "r-maptools")
8440 (version "1.1-4")
8441 (source
8442 (origin
8443 (method url-fetch)
8444 (uri (cran-uri "maptools" version))
8445 (sha256
8446 (base32
8447 "1jgx8iiirj8qhrmh19mkisa35jcql7352dmc7lvwi5vxg3wjbvpk"))))
8448 (build-system r-build-system)
8449 (propagated-inputs
8450 (list r-foreign r-lattice r-sp))
8451 (home-page "https://r-forge.r-project.org/projects/maptools/")
8452 (synopsis "Tools for reading and handling spatial objects")
8453 (description
8454 "This package provides a set of tools for manipulating and reading
8455 geographic data, in particular ESRI Shapefiles. It includes binary access to
8456 GSHHG shoreline files. The package also provides interface wrappers for
8457 exchanging spatial objects with other R packages.")
8458 ;; The C source files from shapelib are released under the Expat license.
8459 ;; The R code is released under GPL version 2 or later.
8460 (license (list license:gpl2+
8461 license:expat))))
8462
8463 (define-public r-later
8464 (package
8465 (name "r-later")
8466 (version "1.3.0")
8467 (source
8468 (origin
8469 (method url-fetch)
8470 (uri (cran-uri "later" version))
8471 (sha256
8472 (base32
8473 "0acqg29hcm2iq1418b54np7zb5pnr3xzrwc3ijv2pz9wra10ix88"))))
8474 (build-system r-build-system)
8475 (propagated-inputs
8476 (list r-rcpp r-rlang))
8477 (native-inputs
8478 (list r-knitr))
8479 (home-page "https://github.com/r-lib/later")
8480 (synopsis "Utilities for delaying function execution")
8481 (description
8482 "This package provides tools to execute arbitrary R or C functions some
8483 time after the current time, after the R execution stack has emptied.")
8484 (license license:gpl2+)))
8485
8486 (define-public r-promises
8487 (package
8488 (name "r-promises")
8489 (version "1.2.0.1")
8490 (source
8491 (origin
8492 (method url-fetch)
8493 (uri (cran-uri "promises" version))
8494 (sha256
8495 (base32
8496 "1dy4cbqw17awh4q8m7cy3anaj0n9iynabfzflb1g94cyj0bq4fld"))))
8497 (build-system r-build-system)
8498 (propagated-inputs
8499 (list r-later r-magrittr r-r6 r-rcpp r-rlang))
8500 (native-inputs
8501 (list r-knitr))
8502 (home-page "https://rstudio.github.io/promises")
8503 (synopsis "Abstractions for promise-based asynchronous programming")
8504 (description
8505 "This package provides fundamental abstractions for doing asynchronous
8506 programming in R using promises. Asynchronous programming is useful for
8507 allowing a single R process to orchestrate multiple tasks in the background
8508 while also attending to something else. Semantics are similar to JavaScript
8509 promises, but with a syntax that is idiomatic R.")
8510 (license license:expat)))
8511
8512 (define-public r-dosnow
8513 (package
8514 (name "r-dosnow")
8515 (version "1.0.20")
8516 (source
8517 (origin
8518 (method url-fetch)
8519 (uri (cran-uri "doSNOW" version))
8520 (sha256
8521 (base32
8522 "1f5v0k2w0b2478p6iqa3hn2lwd1x3rzc348n57nd38ka2vnsnz4i"))))
8523 (properties `((upstream-name . "doSNOW")))
8524 (build-system r-build-system)
8525 (propagated-inputs
8526 (list r-foreach r-iterators r-snow))
8527 (home-page "https://cran.r-project.org/web/packages/doSNOW")
8528 (synopsis "Foreach parallel adaptor for the snow package")
8529 (description
8530 "This package provides a parallel backend for the @code{%dopar%} function
8531 using the @code{snow} package.")
8532 (license license:gpl2)))
8533
8534 (define-public r-fstcore
8535 (package
8536 (name "r-fstcore")
8537 (version "0.9.12")
8538 (source
8539 (origin
8540 (method url-fetch)
8541 (uri (cran-uri "fstcore" version))
8542 (sha256
8543 (base32 "1a5m68n2dqhi3r8wf5jwg4vjvl550c7wypcf5j0xmkvl836yg1lg"))))
8544 (properties `((upstream-name . "fstcore")))
8545 (build-system r-build-system)
8546 (propagated-inputs (list r-rcpp))
8547 (inputs (list zlib))
8548 (native-inputs (list pkg-config))
8549 (home-page "https://www.fstpackage.org/fstcore/")
8550 (synopsis "R bindings to the fstlib library")
8551 (description
8552 "The fstlib library provides multithreaded serialization of compressed
8553 data frames using the fst format. The fst format allows for random access of
8554 stored data and compression with the LZ4 and ZSTD compressors.")
8555 (license license:mpl2.0)))
8556
8557 (define-public r-fst
8558 (package
8559 (name "r-fst")
8560 (version "0.9.8")
8561 (source
8562 (origin
8563 (method url-fetch)
8564 (uri (cran-uri "fst" version))
8565 (sha256
8566 (base32
8567 "0r96inwrr960m7wmc80603bw2vvvwab225bh9dq3lalwhy4yiis4"))))
8568 (properties `((upstream-name . "fst")))
8569 (build-system r-build-system)
8570 (propagated-inputs (list r-fstcore r-rcpp))
8571 (home-page "http://www.fstpackage.org")
8572 (synopsis "Fast serialization of data frames")
8573 (description
8574 "The fst package for R provides a fast, easy and flexible way to
8575 serialize data frames. With access speeds of multiple GB/s, fst is
8576 specifically designed to unlock the potential of high speed solid state disks.
8577 Data frames stored in the fst format have full random access, both in column
8578 and rows. The fst format allows for random access of stored data and
8579 compression with the LZ4 and ZSTD compressors.")
8580 (license license:agpl3)))
8581
8582 (define-public r-snowfall
8583 (package
8584 (name "r-snowfall")
8585 (version "1.84-6.1")
8586 (source (origin
8587 (method url-fetch)
8588 (uri (cran-uri "snowfall" version))
8589 (sha256
8590 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
8591 (build-system r-build-system)
8592 (propagated-inputs
8593 (list r-snow))
8594 (home-page "https://cran.r-project.org/web/packages/snowfall/")
8595 (synopsis "Easier cluster computing")
8596 (description "This package is a usability wrapper around snow for easier
8597 development of parallel R programs. This package offers e.g. extended error
8598 checks, and additional functions. All functions work in sequential mode, too,
8599 if no cluster is present or wished. The package is also designed as connector
8600 to the cluster management tool @code{sfCluster}, but can also used without
8601 it.")
8602 (license license:gpl2+)))
8603
8604 (define-public r-rgexf
8605 (package
8606 (name "r-rgexf")
8607 (version "0.16.2")
8608 (source
8609 (origin
8610 (method url-fetch)
8611 (uri (cran-uri "rgexf" version))
8612 (sha256
8613 (base32
8614 "00c2zka1n3k7p1l0mlchr063s6x58p9r3fb64d4wgl4rvsq55q3f"))
8615 ;; Delete minified JavaScript files
8616 (snippet
8617 '(for-each delete-file
8618 '("inst/gexf-js/js/jquery-2.0.2.min.js"
8619 "inst/gexf-js/js/jquery-ui-1.10.3.custom.min.js"
8620 "inst/gexf-js/js/jquery.mousewheel.min.js")))))
8621 (properties `((upstream-name . "rgexf")))
8622 (build-system r-build-system)
8623 (arguments
8624 `(#:modules ((guix build utils)
8625 (guix build r-build-system)
8626 (srfi srfi-1)
8627 (ice-9 popen))
8628 #:phases
8629 (modify-phases %standard-phases
8630 (add-after 'unpack 'process-javascript
8631 (lambda* (#:key inputs #:allow-other-keys)
8632 (invoke "unzip" "-d" "/tmp" (assoc-ref inputs "js-jquery-ui"))
8633 (with-directory-excursion "inst/gexf-js/js/"
8634 (call-with-values
8635 (lambda ()
8636 (unzip2
8637 `((,(assoc-ref inputs "js-jquery")
8638 "jquery-2.0.2.min.js")
8639 ("/tmp/jquery-ui-1.10.3/ui/jquery-ui.js"
8640 "jquery-ui-1.10.3.custom.min.js")
8641 (,(assoc-ref inputs "js-jquery-mousewheel")
8642 "jquery.mousewheel.min.js"))))
8643 (lambda (sources targets)
8644 (for-each (lambda (source target)
8645 (format #true "Processing ~a --> ~a~%"
8646 source target)
8647 (invoke "esbuild" source "--minify"
8648 (string-append "--outfile=" target)))
8649 sources targets)))))))))
8650 (propagated-inputs
8651 (list r-igraph r-servr r-xml))
8652 (native-inputs
8653 `(("r-knitr" ,r-knitr)
8654 ("esbuild" ,esbuild)
8655 ("unzip" ,unzip)
8656 ("js-jquery"
8657 ,(origin
8658 (method url-fetch)
8659 (uri "https://code.jquery.com/jquery-2.0.2.js")
8660 (sha256
8661 (base32
8662 "0v818bxpw48gdk8i95qqqij80r9jcgisi2r4ac6xnxca20h0gvfj"))))
8663 ("js-jquery-ui"
8664 ,(origin
8665 (method url-fetch)
8666 (uri "https://jqueryui.com/resources/download/jquery-ui-1.10.3.zip")
8667 (sha256
8668 (base32
8669 "00xpfy0l69nj2yan4s8k65ldsrlfsjkmyw2dwcg93dc8mv454vxx"))))
8670 ("js-jquery-mousewheel"
8671 ,(origin
8672 (method url-fetch)
8673 (uri "https://raw.githubusercontent.com/jquery/jquery-mousewheel/\
8674 3.0.6/jquery.mousewheel.js")
8675 (sha256
8676 (base32
8677 "19lk5xy2s47bx8hsa7j6bg012f8yw6d770g230bcnm559kf4nc6v"))))))
8678 (home-page "https://gvegayon.github.io/rgexf")
8679 (synopsis "Build, import and export GEXF graph files")
8680 (description
8681 "Create, read and write GEXF (Graph Exchange XML Format) graph
8682 files (used in Gephi and others). It allows the user to easily build/read
8683 graph files including attributes, GEXF visual attributes (such as color, size,
8684 and position), network dynamics (for both edges and nodes) and edge weighting.
8685 Users can build/handle graphs element-by-element or massively through
8686 data-frames, visualize the graph on a web browser through gexf-js (a
8687 JavaScript library) and interact with the igraph package.")
8688 (license license:expat)))
8689
8690 (define-public r-data-tree
8691 (package
8692 (name "r-data-tree")
8693 (version "1.0.0")
8694 (source
8695 (origin
8696 (method url-fetch)
8697 (uri (cran-uri "data.tree" version))
8698 (sha256
8699 (base32
8700 "0pizmx2312zsym4m42b97q2184bg3hibvbdrblcga05xln84qrs0"))))
8701 (properties `((upstream-name . "data.tree")))
8702 (build-system r-build-system)
8703 (propagated-inputs
8704 (list r-r6 r-stringi))
8705 (native-inputs
8706 (list r-knitr))
8707 (home-page "https://github.com/gluc/data.tree")
8708 (synopsis "General purpose hierarchical data structure")
8709 (description
8710 "Create tree structures from hierarchical data, and traverse the tree in
8711 various orders. Aggregate, cumulate, print, plot, convert to and from
8712 data.frame and more. This is useful for decision trees, machine learning,
8713 finance, conversion from and to JSON, and many other applications.")
8714 (license license:gpl2+)))
8715
8716 (define-public r-dtplyr
8717 (package
8718 (name "r-dtplyr")
8719 (version "1.2.1")
8720 (source
8721 (origin
8722 (method url-fetch)
8723 (uri (cran-uri "dtplyr" version))
8724 (sha256
8725 (base32
8726 "1wyhhn16mvdj55k2xsh7vy489l7xk4mkz7pjrw16z87awk6yjh16"))))
8727 (properties `((upstream-name . "dtplyr")))
8728 (build-system r-build-system)
8729 (propagated-inputs
8730 (list r-crayon
8731 r-data-table
8732 r-dplyr
8733 r-ellipsis
8734 r-glue
8735 r-lifecycle
8736 r-rlang
8737 r-tibble
8738 r-tidyselect
8739 r-vctrs))
8740 (native-inputs
8741 (list r-knitr))
8742 (home-page "https://github.com/tidyverse/dtplyr")
8743 (synopsis "Data Table back-end for dplyr")
8744 (description
8745 "This package provides a @code{data.table} backend for @code{dplyr}. The
8746 goal of @code{dtplyr} is to allow you to write @code{dplyr} code that is
8747 automatically translated to the equivalent, but usually much faster,
8748 @code{data.table} code.")
8749 (license license:expat)))
8750
8751 (define-public r-collapsibletree
8752 (package
8753 (name "r-collapsibletree")
8754 (version "0.1.7")
8755 (source
8756 (origin
8757 (method url-fetch)
8758 (uri (cran-uri "collapsibleTree" version))
8759 (sha256
8760 (base32
8761 "0b65pbp1wnpsrayqi630ds4r98jvcvynnlp6wxdqrnnr9nzw5343"))
8762 (snippet
8763 '(begin
8764 ;; Delete minified JavaScript file
8765 (delete-file "inst/htmlwidgets/lib/d3-4.10.2/d3.min.js")
8766 #true))))
8767 (properties
8768 `((upstream-name . "collapsibleTree")))
8769 (build-system r-build-system)
8770 (arguments
8771 `(#:phases
8772 (modify-phases %standard-phases
8773 (add-after 'unpack 'process-javascript
8774 (lambda* (#:key inputs #:allow-other-keys)
8775 (with-directory-excursion "inst/htmlwidgets/lib/d3-4.10.2/"
8776 (let ((source (assoc-ref inputs "d3.v4.js"))
8777 (target "d3.min.js"))
8778 (format #t "Processing ~a --> ~a~%"
8779 source target)
8780 (invoke "esbuild" source "--minify"
8781 (string-append "--outfile=" target)))))))))
8782 (propagated-inputs
8783 (list r-data-tree r-htmlwidgets))
8784 (native-inputs
8785 `(("esbuild" ,esbuild)
8786 ("d3.v4.js"
8787 ,(origin
8788 (method url-fetch)
8789 (uri "https://d3js.org/d3.v4.js")
8790 (sha256
8791 (base32
8792 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
8793 (home-page "https://github.com/AdeelK93/collapsibleTree")
8794 (synopsis "Interactive collapsible tree diagrams using D3.js")
8795 (description
8796 "This is a package for interactive Reingold-Tilford tree diagrams created
8797 using D3.js, where every node can be expanded and collapsed by clicking on it.
8798 Tooltips and color gradients can be mapped to nodes using a numeric column in
8799 the source data frame.")
8800 (license license:gpl3+)))
8801
8802 (define-public r-rappdirs
8803 (package
8804 (name "r-rappdirs")
8805 (version "0.3.3")
8806 (source
8807 (origin
8808 (method url-fetch)
8809 (uri (cran-uri "rappdirs" version))
8810 (sha256
8811 (base32
8812 "1161i3jgjvzjv4p8qbz9r976fnggkcrw3mlj4yd1h2svnijrz5a9"))))
8813 (build-system r-build-system)
8814 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
8815 (synopsis "Determine where to save data, caches, and logs")
8816 (description
8817 "This package provides an easy way to determine which directories on the
8818 user's computer should be used to save data, caches and logs. It is a port of
8819 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
8820 (license license:expat)))
8821
8822 (define-public r-rastervis
8823 (package
8824 (name "r-rastervis")
8825 (version "0.51.2")
8826 (source
8827 (origin
8828 (method url-fetch)
8829 (uri (cran-uri "rasterVis" version))
8830 (sha256
8831 (base32
8832 "0kgg6cm7xjqya2d46w0i1i1wjpkb8f99lyqy7rgwa7l9xmwzj5n1"))))
8833 (properties `((upstream-name . "rasterVis")))
8834 (build-system r-build-system)
8835 (propagated-inputs
8836 (list r-hexbin
8837 r-lattice
8838 r-latticeextra
8839 r-raster
8840 r-rcolorbrewer
8841 r-sp
8842 r-terra
8843 r-viridislite
8844 r-zoo))
8845 (home-page "https://oscarperpinan.github.io/rastervis/")
8846 (synopsis "Visualization methods for raster data")
8847 (description
8848 "This package provides methods for enhanced visualization and interaction
8849 with raster data. It implements visualization methods for quantitative data
8850 and categorical data, both for univariate and multivariate rasters. It also
8851 provides methods to display spatiotemporal rasters, and vector fields.")
8852 (license license:gpl3)))
8853
8854 (define-public r-rentrez
8855 (package
8856 (name "r-rentrez")
8857 (version "1.2.3")
8858 (source
8859 (origin
8860 (method url-fetch)
8861 (uri (cran-uri "rentrez" version))
8862 (sha256
8863 (base32
8864 "0x1g2f6hvkqqlb39z8m5qxhcvsizddic5i7rpqw0wy77xfbna9gv"))))
8865 (properties `((upstream-name . "rentrez")))
8866 (build-system r-build-system)
8867 (propagated-inputs
8868 (list r-httr r-jsonlite r-xml))
8869 (native-inputs
8870 (list r-knitr))
8871 (home-page "https://docs.ropensci.org/rentrez/")
8872 (synopsis "Entrez in R")
8873 (description
8874 "This package provides an R interface to the NCBI's EUtils API,
8875 allowing users to search databases like GenBank PubMed, process the results of
8876 those searches and pull data into their R sessions.")
8877 (license license:expat)))
8878
8879 (define-public r-renv
8880 (package
8881 (name "r-renv")
8882 (version "0.15.5")
8883 (source
8884 (origin
8885 (method url-fetch)
8886 (uri (cran-uri "renv" version))
8887 (sha256
8888 (base32
8889 "0bjq3ms5dg155clya62m462m93g90sxfxm7b4cqhqbx8vakskwdl"))))
8890 (properties `((upstream-name . "renv")))
8891 (build-system r-build-system)
8892 (native-inputs
8893 (list r-knitr))
8894 (home-page "https://rstudio.github.io/renv")
8895 (synopsis "Project environments")
8896 (description
8897 "This package provides a dependency management toolkit for R. Using
8898 renv, you can create and manage project-local R libraries, save the state of
8899 these libraries to a lockfile, and later restore your library as required.
8900 Together, these tools can help make your projects more isolated, portable, and
8901 reproducible.")
8902 (license license:expat)))
8903
8904 (define-public r-learnr
8905 (package
8906 (name "r-learnr")
8907 (version "0.10.1")
8908 (source
8909 (origin
8910 (method url-fetch)
8911 (uri (cran-uri "learnr" version))
8912 (sha256
8913 (base32
8914 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
8915 (build-system r-build-system)
8916 (propagated-inputs
8917 (list r-checkmate
8918 r-ellipsis
8919 r-evaluate
8920 r-htmltools
8921 r-htmlwidgets
8922 r-jsonlite
8923 r-knitr
8924 r-markdown
8925 r-rappdirs
8926 r-renv
8927 r-rmarkdown
8928 r-rprojroot
8929 r-shiny
8930 r-withr))
8931 (home-page "https://rstudio.github.io/learnr/")
8932 (synopsis "Interactive tutorials for R")
8933 (description
8934 "This package provides tools to create interactive tutorials using R
8935 Markdown. Use a combination of narrative, figures, videos, exercises, and
8936 quizzes to create self-paced tutorials for learning about R and R packages.")
8937 (license license:asl2.0)))
8938
8939 (define-public r-analytics
8940 (package
8941 (name "r-analytics")
8942 (version "3.0")
8943 (source
8944 (origin
8945 (method url-fetch)
8946 (uri (cran-uri "analytics" version))
8947 (sha256
8948 (base32
8949 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
8950 (build-system r-build-system)
8951 (propagated-inputs
8952 (list r-car
8953 r-cluster
8954 r-fractal
8955 r-lmtest
8956 r-mass
8957 r-np
8958 r-powerplus
8959 r-robust
8960 r-trend
8961 r-tsa
8962 r-urca
8963 r-vim))
8964 (home-page "https://cran.r-project.org/web/packages/analytics/")
8965 (synopsis "Collection of data analysis tools")
8966 (description
8967 "This package is a collection of data analysis tools. It includes tools
8968 for regression outlier detection in a fitted linear model, stationary
8969 bootstrap using a truncated geometric distribution, a comprehensive test for
8970 weak stationarity, column means by group, weighted biplots, and a heuristic to
8971 obtain a better initial configuration in non-metric MDS.")
8972 (license license:gpl2)))
8973
8974 (define-public r-here
8975 (package
8976 (name "r-here")
8977 (version "1.0.1")
8978 (source
8979 (origin
8980 (method url-fetch)
8981 (uri (cran-uri "here" version))
8982 (sha256
8983 (base32 "0srlr8h8qmr0wrmp7gs4g2ry5dni2hx8n947bik3s3a26f091v88"))))
8984 (properties `((upstream-name . "here")))
8985 (build-system r-build-system)
8986 (propagated-inputs (list r-rprojroot))
8987 (native-inputs (list r-knitr))
8988 (home-page "https://here.r-lib.org/")
8989 (synopsis "Simpler way to find files")
8990 (description
8991 "This package lets you construct paths to your project's files. Use the
8992 @code{here} function as a drop-in replacement for @code{file.path}, it will
8993 always locate the files relative to your project root.")
8994 (license license:expat)))
8995
8996 (define-public r-reticulate
8997 (package
8998 (name "r-reticulate")
8999 (version "1.25")
9000 (source
9001 (origin
9002 (method url-fetch)
9003 (uri (cran-uri "reticulate" version))
9004 (sha256
9005 (base32
9006 "0b1szzsqyc8wcfpkn5517bb1ds064vs2hky71my3p74kfngay991"))))
9007 (build-system r-build-system)
9008 (inputs (list python))
9009 (propagated-inputs
9010 (list r-here
9011 r-jsonlite
9012 r-matrix
9013 r-png
9014 r-rappdirs
9015 r-rcpp
9016 r-rcpptoml
9017 r-withr))
9018 (native-inputs
9019 (list r-knitr))
9020 (home-page "https://github.com/rstudio/reticulate")
9021 (synopsis "R interface to Python")
9022 (description
9023 "This package provides an interface from R to Python modules, classes,
9024 and functions. When calling into Python, R data types are automatically
9025 converted to their equivalent Python types. When values are returned from
9026 Python to R they are converted back to R types.")
9027 (license license:asl2.0)))
9028
9029 (define-public r-bibtex
9030 (package
9031 (name "r-bibtex")
9032 (version "0.4.2.3")
9033 (source
9034 (origin
9035 (method url-fetch)
9036 (uri (cran-uri "bibtex" version))
9037 (sha256
9038 (base32
9039 "0vdwx6808r73pk15263f33bkqbfmb08d8jkmr4d7h4ml414ikbbv"))))
9040 (build-system r-build-system)
9041 (propagated-inputs (list r-stringr))
9042 (home-page "https://github.com/romainfrancois/bibtex")
9043 (synopsis "Bibtex parser")
9044 (description "This package provides a utility for R to parse a bibtex
9045 file.")
9046 (license license:gpl2+)))
9047
9048 (define-public r-billboarder
9049 (package
9050 (name "r-billboarder")
9051 (version "0.3.1")
9052 (source
9053 (origin
9054 (method url-fetch)
9055 (uri (cran-uri "billboarder" version))
9056 (sha256
9057 (base32 "189ngvg84rcwhrivxskmjv3srhadvzr4p1v8pf11axyv2qn01b0x"))
9058 (snippet
9059 '(delete-file "inst/htmlwidgets/lib/billboard/billboard.pkgd.min.js"))))
9060 (properties `((upstream-name . "billboarder")))
9061 (build-system r-build-system)
9062 (arguments
9063 `(#:phases
9064 (modify-phases %standard-phases
9065 (add-after 'unpack 'process-javascript
9066 (lambda* (#:key inputs #:allow-other-keys)
9067 (with-directory-excursion "inst/htmlwidgets/lib/billboard/"
9068 (let ((source (assoc-ref inputs "js-billboard"))
9069 (target "billboard.pkgd.min.js"))
9070 (format #true "Processing ~a --> ~a~%"
9071 source target)
9072 (invoke "esbuild" source "--minify"
9073 (string-append "--outfile=" target)))))))))
9074 (propagated-inputs
9075 (list r-ggplot2
9076 r-htmltools
9077 r-htmlwidgets
9078 r-jsonlite
9079 r-magrittr
9080 r-rlang
9081 r-scales
9082 r-shiny))
9083 (native-inputs
9084 `(("r-knitr" ,r-knitr)
9085 ("esbuild" ,esbuild)
9086 ;; It is not ideal to use this concatenated (but not minified)
9087 ;; JavaScript file, as the original source is written in TypeScript.
9088 ;; However, this can still be considered source code as it is readable
9089 ;; and can be modified.
9090 ("js-billboard"
9091 ,(origin
9092 (method url-fetch)
9093 (uri "https://unpkg.com/billboard.js@3.2.0/dist/billboard.js")
9094 (sha256
9095 (base32
9096 "1kx5rqmn87pgal2cwmcij2rrnwa0fgcsw6y99m4i0l2sdm0qffv2"))))))
9097 (home-page "https://github.com/dreamRs/billboarder")
9098 (synopsis "Create interactive charts with the JavaScript Billboard library")
9099 (description
9100 "This package provides an @code{htmlwidgets} interface to billboard.js,
9101 a re-usable easy interface JavaScript chart library, based on D3 v4+. Chart
9102 types include line charts, scatterplots, bar/lollipop charts,
9103 histogram/density plots, pie/donut charts and gauge charts. All charts are
9104 interactive, and a proxy method is implemented to smoothly update a chart
9105 without rendering it again in shiny apps.")
9106 (license license:expat)))
9107
9108 (define-public r-ggseqlogo
9109 (package
9110 (name "r-ggseqlogo")
9111 (version "0.1")
9112 (source
9113 (origin
9114 (method url-fetch)
9115 (uri (cran-uri "ggseqlogo" version))
9116 (sha256
9117 (base32
9118 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
9119 (build-system r-build-system)
9120 (propagated-inputs (list r-ggplot2))
9121 (home-page "https://github.com/omarwagih/ggseqlogo")
9122 (synopsis "ggplot2 extension for drawing genetic sequence logos")
9123 (description
9124 "The range of functions provided by this package makes it possible to
9125 draw highly versatile genomic sequence logos. Features include, but are not
9126 limited to, modifying colour schemes and fonts used to draw the logo,
9127 generating multiple logo plots, and aiding the visualisation with annotations.
9128 Sequence logos can easily be combined with other ggplot2 plots.")
9129 ;; Unspecified version of the LGPL.
9130 (license license:lgpl3+)))
9131
9132 (define-public r-ggsci
9133 (package
9134 (name "r-ggsci")
9135 (version "2.9")
9136 (source
9137 (origin
9138 (method url-fetch)
9139 (uri (cran-uri "ggsci" version))
9140 (sha256
9141 (base32
9142 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
9143 (build-system r-build-system)
9144 (propagated-inputs
9145 (list r-ggplot2 r-scales))
9146 (home-page "https://nanx.me/ggsci/")
9147 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
9148 (description
9149 "This package provides a collection of ggplot2 color palettes inspired by
9150 plots in scientific journals, data visualization libraries, science fiction
9151 movies, and TV shows.")
9152 (license license:gpl3)))
9153
9154 (define-public r-ggsignif
9155 (package
9156 (name "r-ggsignif")
9157 (version "0.6.3")
9158 (source
9159 (origin
9160 (method url-fetch)
9161 (uri (cran-uri "ggsignif" version))
9162 (sha256
9163 (base32
9164 "1ad774c7s7y4i00xd89lfigr9aybl94q98ch598k3rchanr4b1fa"))))
9165 (build-system r-build-system)
9166 (native-inputs
9167 (list r-knitr))
9168 (propagated-inputs
9169 (list r-ggplot2))
9170 (home-page "https://github.com/const-ae/ggsignif")
9171 (synopsis "Significance brackets for ggplot2")
9172 (description
9173 "Enrich your ggplots with group-wise comparisons. This package provides
9174 an easy way to indicate if two groups are significantly different. Commonly
9175 this is shown by a bracket on top connecting the groups of interest which
9176 itself is annotated with the level of significance. The package provides a
9177 single layer that takes the groups for comparison and the test as arguments
9178 and adds the annotation to the plot.")
9179 (license license:gpl3)))
9180
9181 (define-public r-rstatix
9182 (package
9183 (name "r-rstatix")
9184 (version "0.7.0")
9185 (source
9186 (origin
9187 (method url-fetch)
9188 (uri (cran-uri "rstatix" version))
9189 (sha256
9190 (base32
9191 "0330y8iziffqg8j9j5h9zv4qcdyf8ybhmzxrr9fzq9nc6bf1gbm5"))))
9192 (properties `((upstream-name . "rstatix")))
9193 (build-system r-build-system)
9194 (propagated-inputs
9195 (list r-broom
9196 r-car
9197 r-corrplot
9198 r-dplyr
9199 r-generics
9200 r-magrittr
9201 r-purrr
9202 r-rlang
9203 r-tibble
9204 r-tidyr
9205 r-tidyselect))
9206 (home-page "https://rpkgs.datanovia.com/rstatix/")
9207 (synopsis "Pipe-friendly framework for basic statistical tests")
9208 (description
9209 "This package provides a simple and intuitive pipe-friendly framework,
9210 coherent with the @code{tidyverse} design philosophy, for performing basic
9211 statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and
9212 correlation analyses. The output of each test is automatically transformed
9213 into a tidy data frame to facilitate visualization. Additional functions are
9214 available for reshaping, reordering, manipulating and visualizing correlation
9215 matrix.")
9216 (license license:gpl2)))
9217
9218 (define-public r-ggpubr
9219 (package
9220 (name "r-ggpubr")
9221 (version "0.4.0")
9222 (source
9223 (origin
9224 (method url-fetch)
9225 (uri (cran-uri "ggpubr" version))
9226 (sha256
9227 (base32
9228 "0x86lmghr25k8w90yrp360dn42dhp5cjvjpdiv2s2gxfn701xcmb"))))
9229 (build-system r-build-system)
9230 (propagated-inputs
9231 (list r-cowplot
9232 r-dplyr
9233 r-ggplot2
9234 r-ggrepel
9235 r-ggsci
9236 r-ggsignif
9237 r-glue
9238 r-gridextra
9239 r-magrittr
9240 r-polynom
9241 r-purrr
9242 r-rlang
9243 r-scales
9244 r-rstatix
9245 r-tibble
9246 r-tidyr))
9247 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
9248 (synopsis "ggplot2-based publication-ready plots")
9249 (description
9250 "The ggplot2 package is an excellent and flexible package for elegant
9251 data visualization in R. However the default generated plots require some
9252 formatting before we can send them for publication. The ggpubr package
9253 provides some easy-to-use functions for creating and customizing ggplot2-based
9254 publication-ready plots.")
9255 (license license:gpl2)))
9256
9257 (define-public r-ellipse
9258 (package
9259 (name "r-ellipse")
9260 (version "0.4.2")
9261 (source
9262 (origin
9263 (method url-fetch)
9264 (uri (cran-uri "ellipse" version))
9265 (sha256
9266 (base32
9267 "1wm5v7zdv2drgdba7z96jwsx74mqhlq80qgrvdb4vb5r02dcw68p"))))
9268 (build-system r-build-system)
9269 (home-page "https://cran.r-project.org/web/packages/ellipse/")
9270 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
9271 (description
9272 "This package contains various routines for drawing ellipses and
9273 ellipse-like confidence regions, implementing the plots described in Murdoch
9274 and Chow (1996), A graphical display of large correlation matrices, The
9275 American Statistician 50, 178-180. There are also routines implementing the
9276 profile plots described in Bates and Watts (1988), Nonlinear Regression
9277 Analysis and its Applications.")
9278 (license license:gpl2+)))
9279
9280 (define-public r-flashclust
9281 (package
9282 (name "r-flashclust")
9283 (version "1.01-2")
9284 (source
9285 (origin
9286 (method url-fetch)
9287 (uri (cran-uri "flashClust" version))
9288 (sha256
9289 (base32
9290 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
9291 (properties `((upstream-name . "flashClust")))
9292 (build-system r-build-system)
9293 (native-inputs (list gfortran))
9294 (home-page "https://cran.r-project.org/web/packages/flashClust/")
9295 (synopsis "Implementation of optimal hierarchical clustering")
9296 (description
9297 "This package provides a fast implementation of hierarchical
9298 clustering.")
9299 (license license:gpl2+)))
9300
9301 (define-public r-factominer
9302 (package
9303 (name "r-factominer")
9304 (version "2.4")
9305 (source
9306 (origin
9307 (method url-fetch)
9308 (uri (cran-uri "FactoMineR" version))
9309 (sha256
9310 (base32
9311 "0lg8n9fxxk46nchnj4pbpqqf4swxfsq7r9jzr36dmd36kb7avqxr"))))
9312 (properties `((upstream-name . "FactoMineR")))
9313 (build-system r-build-system)
9314 (propagated-inputs
9315 (list r-car
9316 r-cluster
9317 r-dt
9318 r-ellipse
9319 r-flashclust
9320 r-ggplot2
9321 r-ggrepel
9322 r-lattice
9323 r-leaps
9324 r-mass
9325 r-scatterplot3d))
9326 (native-inputs
9327 (list r-knitr))
9328 (home-page "http://factominer.free.fr")
9329 (synopsis "Multivariate exploratory data analysis and data mining")
9330 (description
9331 "This package provides exploratory data analysis methods to summarize,
9332 visualize and describe datasets. The main principal component methods are
9333 available, those with the largest potential in terms of applications:
9334 principal component analysis (PCA) when variables are quantitative,
9335 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
9336 variables are categorical, Multiple Factor Analysis when variables are
9337 structured in groups, etc. and hierarchical cluster analysis.")
9338 (license license:gpl2+)))
9339
9340 (define-public r-factoextra
9341 (package
9342 (name "r-factoextra")
9343 (version "1.0.7")
9344 (source
9345 (origin
9346 (method url-fetch)
9347 (uri (cran-uri "factoextra" version))
9348 (sha256
9349 (base32
9350 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
9351 (build-system r-build-system)
9352 (propagated-inputs
9353 (list r-abind
9354 r-cluster
9355 r-dendextend
9356 r-factominer
9357 r-ggplot2
9358 r-ggpubr
9359 r-ggrepel
9360 r-reshape2
9361 r-tidyr))
9362 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
9363 (synopsis "Extract and visualize the results of multivariate data analyses")
9364 (description
9365 "This package provides some easy-to-use functions to extract and
9366 visualize the output of multivariate data analyses, including
9367 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
9368 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
9369 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
9370 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
9371 packages. It contains also functions for simplifying some clustering analysis
9372 steps and provides ggplot2-based elegant data visualization.")
9373 (license license:gpl2)))
9374
9375 (define-public r-fansi
9376 (package
9377 (name "r-fansi")
9378 (version "1.0.3")
9379 (source
9380 (origin
9381 (method url-fetch)
9382 (uri (cran-uri "fansi" version))
9383 (sha256
9384 (base32
9385 "0sn0kflgcn2qrrv646pzqylm02cx8l5ws473ppmvla4xihyvi9w6"))))
9386 (build-system r-build-system)
9387 (native-inputs
9388 (list r-knitr)) ; for vignettes
9389 (home-page "https://github.com/brodieG/fansi")
9390 (synopsis "ANSI control sequence aware string functions")
9391 (description
9392 "This package provides counterparts to R string manipulation functions
9393 that account for the effects of ANSI text formatting control sequences.")
9394 (license license:gpl2+)))
9395
9396 (define-public r-nbclust
9397 (package
9398 (name "r-nbclust")
9399 (version "3.0.1")
9400 (source
9401 (origin
9402 (method url-fetch)
9403 (uri (cran-uri "NbClust" version))
9404 (sha256
9405 (base32
9406 "0k5hr4zgx4gp1n62xchgz2zvyl35ba2cnczhhvj8rfbg2n4hx6qs"))))
9407 (properties `((upstream-name . "NbClust")))
9408 (build-system r-build-system)
9409 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
9410 (synopsis "Determine the best number of clusters in a data set")
9411 (description
9412 "NbClust provides 30 indexes for determining the optimal number of
9413 clusters in a data set and offers the best clustering scheme from different
9414 results to the user.")
9415 (license license:gpl2)))
9416
9417 (define-public r-hdf5r
9418 (package
9419 (name "r-hdf5r")
9420 (version "1.3.5")
9421 (source
9422 (origin
9423 (method url-fetch)
9424 (uri (cran-uri "hdf5r" version))
9425 (sha256
9426 (base32
9427 "0bv2q4ir73sbk5ra2q4mc8wbcmiwkws8k0mjlnx9ysi2mdrm3dw7"))))
9428 (build-system r-build-system)
9429 (inputs
9430 (list hdf5 zlib))
9431 (propagated-inputs
9432 (list r-bit64 r-r6))
9433 (native-inputs
9434 (list r-knitr))
9435 (home-page "https://hhoeflin.github.io/hdf5r")
9436 (synopsis "Interface to the HDF5 binary data format")
9437 (description
9438 "HDF5 is a data model, library and file format for storing and managing
9439 large amounts of data. This package provides a nearly feature complete,
9440 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
9441 functionality is added so that HDF5 objects behave very similar to their
9442 corresponding R counterparts.")
9443 (license license:asl2.0)))
9444
9445 (define-public r-itertools
9446 (package
9447 (name "r-itertools")
9448 (version "0.1-3")
9449 (source
9450 (origin
9451 (method url-fetch)
9452 (uri (cran-uri "itertools" version))
9453 (sha256
9454 (base32
9455 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
9456 (build-system r-build-system)
9457 (propagated-inputs
9458 (list r-iterators))
9459 (home-page "https://cran.r-project.org/web/packages/itertools/")
9460 (synopsis "Iterator tools")
9461 (description
9462 "This package provides various tools for creating iterators, many
9463 patterned after functions in the Python @code{itertools} module, and others
9464 patterned after functions in the snow package.")
9465 (license license:gpl2)))
9466
9467 (define-public r-itsadug
9468 (package
9469 (name "r-itsadug")
9470 (version "2.4")
9471 (source
9472 (origin
9473 (method url-fetch)
9474 (uri (cran-uri "itsadug" version))
9475 (sha256
9476 (base32 "0759l7hhvj05dp92pz59xwrxjm9s1iwkwrdhs68l0fq57550j70l"))))
9477 (properties `((upstream-name . "itsadug")))
9478 (build-system r-build-system)
9479 (propagated-inputs (list r-mgcv r-plotfunctions))
9480 (native-inputs (list r-knitr))
9481 (home-page "https://cran.r-project.org/package=itsadug")
9482 (synopsis "Interpreting time series and autocorrelated data using GAMMs")
9483 (description
9484 "@dfn{Generalized Additive Mixed Modeling} (GAMM; Lin & Zhang, 1999) as
9485 implemented in the R package @code{mgcv} is a nonlinear regression analysis
9486 which is particularly useful for time course data such as EEG, pupil dilation,
9487 gaze data (eye tracking), and articulography recordings, but also for
9488 behavioral data such as reaction times and response data. As time course
9489 measures are sensitive to autocorrelation problems, GAMMs implements methods
9490 to reduce the autocorrelation problems. This package includes functions for
9491 the evaluation of GAMM models (e.g., model comparisons, determining regions of
9492 significance, inspection of autocorrelational structure in residuals) and
9493 interpreting of GAMMs (e.g., visualization of complex interactions, and
9494 contrasts).")
9495 (license license:gpl2+)))
9496
9497 (define-public r-polynom
9498 (package
9499 (name "r-polynom")
9500 (version "1.4-1")
9501 (source
9502 (origin
9503 (method url-fetch)
9504 (uri (cran-uri "polynom" version))
9505 (sha256
9506 (base32
9507 "0y4j07syjwpnq5w6a1d90z6h1hjzijmm42pq0f8jk2vcn5xxn7mw"))))
9508 (build-system r-build-system)
9509 (native-inputs (list r-knitr))
9510 (home-page "https://cran.r-project.org/web/packages/polynom/")
9511 (synopsis "Functions for univariate polynomial manipulations")
9512 (description
9513 "This package provides a collection of functions to implement a class for
9514 univariate polynomial manipulations.")
9515 (license license:gpl2)))
9516
9517 (define-public r-pupillometryr
9518 (package
9519 (name "r-pupillometryr")
9520 (version "0.0.4")
9521 (source
9522 (origin
9523 (method url-fetch)
9524 (uri (cran-uri "PupillometryR" version))
9525 (sha256
9526 (base32 "0yk30sgl2qqa6pva649swq523vh446ifmydildycfvfmlm1h4qza"))))
9527 (properties `((upstream-name . "PupillometryR")))
9528 (build-system r-build-system)
9529 (propagated-inputs
9530 (list r-data-table
9531 r-dplyr
9532 r-fda
9533 r-ggplot2
9534 r-itsadug
9535 r-lazyeval
9536 r-mgcv
9537 r-rlang
9538 r-signal
9539 r-tidyr
9540 r-zoo))
9541 (native-inputs (list r-knitr))
9542 (home-page "https://cran.r-project.org/package=PupillometryR")
9543 (synopsis "Unified pipeline for pupillometry data")
9544 (description
9545 "This package provides a unified pipeline to clean, prepare, plot, and
9546 run basic analyses on pupillometry experiments.")
9547 (license license:expat)))
9548
9549 (define-public r-gbrd
9550 (package
9551 (name "r-gbrd")
9552 (version "0.4-11")
9553 (source
9554 (origin
9555 (method url-fetch)
9556 (uri (cran-uri "gbRd" version))
9557 (sha256
9558 (base32
9559 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
9560 (properties `((upstream-name . "gbRd")))
9561 (build-system r-build-system)
9562 (home-page "https://cran.r-project.org/web/packages/gbRd/")
9563 (synopsis "Utilities for processing Rd objects and files")
9564 (description
9565 "This package provides utilities for processing Rd objects and files.
9566 Extract argument descriptions and other parts of the help pages of
9567 functions.")
9568 (license license:gpl2+)))
9569
9570 (define-public r-rjags
9571 (package
9572 (name "r-rjags")
9573 (version "4-13")
9574 (source
9575 (origin
9576 (method url-fetch)
9577 (uri (cran-uri "rjags" version))
9578 (sha256
9579 (base32
9580 "0cibz6xhmh86fh7ynmdgpmlchizi57pi6dpslgc2if17a56c6p7q"))))
9581 (build-system r-build-system)
9582 (propagated-inputs
9583 (list r-coda))
9584 (inputs
9585 (list jags))
9586 (native-inputs
9587 (list pkg-config))
9588 (home-page "http://mcmc-jags.sourceforge.net")
9589 (synopsis "Bayesian graphical models using MCMC")
9590 (description
9591 "This package provides an R interface to the JAGS MCMC library. JAGS is
9592 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
9593 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
9594 (license license:gpl2)))
9595
9596 (define-public r-rbibutils
9597 (package
9598 (name "r-rbibutils")
9599 (version "2.2.8")
9600 (source
9601 (origin
9602 (method url-fetch)
9603 (uri (cran-uri "rbibutils" version))
9604 (sha256
9605 (base32
9606 "0lnia2fk8zlvkkgnl7r7dyi1ip5vqlw448qrvqs2s14rpbpcvbpi"))))
9607 (properties `((upstream-name . "rbibutils")))
9608 (build-system r-build-system)
9609 (home-page "https://geobosh.github.io/rbibutils/")
9610 (synopsis "Convert between bibliography formats")
9611 (description
9612 "This package converts between a number of bibliography formats,
9613 including BibTeX, BibLaTeX and Bibentry. It includes a port of the bibutils
9614 utilities and supports all bibliography formats and character encodings
9615 implemented in bibutils.")
9616 (license license:gpl2)))
9617
9618 (define-public r-rdpack
9619 (package
9620 (name "r-rdpack")
9621 (version "2.3")
9622 (source
9623 (origin
9624 (method url-fetch)
9625 (uri (cran-uri "Rdpack" version))
9626 (sha256
9627 (base32
9628 "1igpa4hnpiykbdnq57mglby5jsbind6izkkfy81wx4ib6nw1lpn4"))))
9629 (properties `((upstream-name . "Rdpack")))
9630 (build-system r-build-system)
9631 (propagated-inputs
9632 (list r-rbibutils))
9633 (home-page "https://github.com/GeoBosh/Rdpack")
9634 (synopsis "Update and manipulate Rd documentation objects")
9635 (description
9636 "This package provides functions for manipulation of R documentation
9637 objects, including functions @code{reprompt()} and @code{ereprompt()} for
9638 updating Rd documentation for functions, methods and classes; it also includes
9639 Rd macros for citations and import of references from bibtex files for use in
9640 Rd files and roxygen2 comments, as well as many functions for manipulation of
9641 references and Rd files.")
9642 (license license:gpl2+)))
9643
9644 (define-public r-officer
9645 (package
9646 (name "r-officer")
9647 (version "0.4.2")
9648 (source
9649 (origin
9650 (method url-fetch)
9651 (uri (cran-uri "officer" version))
9652 (sha256
9653 (base32
9654 "0qmn62srh9zicgizyblanirbdva7f09g967yb86kfrn05ckh5y10"))))
9655 (build-system r-build-system)
9656 (propagated-inputs
9657 (list r-r6 r-uuid r-xml2 r-zip))
9658 (home-page "https://davidgohel.github.io/officer")
9659 (synopsis "Manipulation of Word and PowerPoint documents")
9660 (description
9661 "This package provides tools to access and manipulate Word and PowerPoint
9662 documents from R. The package focuses on tabular and graphical reporting from
9663 R; it also provides two functions that let users get document content into
9664 data objects. A set of functions lets add and remove images, tables and
9665 paragraphs of text in new or existing documents. When working with PowerPoint
9666 presentations, slides can be added or removed; shapes inside slides can also
9667 be added or removed. When working with Word documents, a cursor can be used
9668 to help insert or delete content at a specific location in the document.")
9669 (license license:gpl3)))
9670
9671 (define-public r-profilemodel
9672 (package
9673 (name "r-profilemodel")
9674 (version "0.6.1")
9675 (source
9676 (origin
9677 (method url-fetch)
9678 (uri (cran-uri "profileModel" version))
9679 (sha256
9680 (base32
9681 "01m5nb8cmq0aq555pxk2a99182si65hhmn68yn9nal2j3zl2bp4i"))))
9682 (properties `((upstream-name . "profileModel")))
9683 (build-system r-build-system)
9684 (home-page "https://github.com/ikosmidis/profileModel")
9685 (synopsis "Profiling inference functions for various model classes")
9686 (description
9687 "This package provides tools that can be used to calculate, evaluate,
9688 plot and use for inference the profiles of *arbitrary* inference functions for
9689 arbitrary @code{glm}-like fitted models with linear predictors. More information
9690 on the methods that are implemented can be found in Kosmidis (2008)
9691 @url{https://www.r-project.org/doc/Rnews/Rnews_2008-2.pdf}.")
9692 (license license:gpl2+)))
9693
9694 (define-public r-brglm
9695 (package
9696 (name "r-brglm")
9697 (version "0.7.2")
9698 (source
9699 (origin
9700 (method url-fetch)
9701 (uri (cran-uri "brglm" version))
9702 (sha256
9703 (base32
9704 "08shcz0j1npdn7xkhsvlzs3z4rdwq3g4rk6a4xx8wirqw8n8s2an"))))
9705 (properties `((upstream-name . "brglm")))
9706 (build-system r-build-system)
9707 (propagated-inputs
9708 (list r-profilemodel))
9709 (home-page "https://github.com/ikosmidis/brglm")
9710 (synopsis "Bias reduction in binomial-response generalized linear models")
9711 (description
9712 "Fit generalized linear models with binomial responses using either an
9713 adjusted-score approach to bias reduction or maximum penalized likelihood
9714 where penalization is by Jeffreys invariant prior. These procedures return
9715 estimates with improved frequentist properties (bias, mean squared error) that
9716 are always finite even in cases where the maximum likelihood estimates are
9717 infinite (data separation). Fitting takes place by fitting generalized linear
9718 models on iteratively updated pseudo-data. The interface is essentially the
9719 same as @code{glm}. More flexibility is provided by the fact that custom
9720 pseudo-data representations can be specified and used for model fitting.
9721 Functions are provided for the construction of confidence intervals for the
9722 reduced-bias estimates.")
9723 (license license:gpl2+)))
9724
9725 (define-public r-entropy
9726 (package
9727 (name "r-entropy")
9728 (version "1.3.1")
9729 (source
9730 (origin
9731 (method url-fetch)
9732 (uri (cran-uri "entropy" version))
9733 (sha256
9734 (base32
9735 "1f0j8jsn6pzf4gi5g0akixx6x5vc69ci5f4m2vnwp40frvsqjnkg"))))
9736 (properties `((upstream-name . "entropy")))
9737 (build-system r-build-system)
9738 (home-page "https://www.strimmerlab.org/software/entropy/")
9739 (synopsis "Estimation of entropy, mutual information and related quantities")
9740 (description
9741 "This package implements various estimators of entropy, such as the
9742 shrinkage estimator by Hausser and Strimmer, the maximum likelihood and the
9743 Millow-Madow estimator, various Bayesian estimators, and the Chao-Shen
9744 estimator. It also offers an R interface to the NSB estimator. Furthermore,
9745 it provides functions for estimating Kullback-Leibler divergence, chi-squared,
9746 mutual information, and chi-squared statistic of independence. In addition
9747 there are functions for discretizing continuous random variables.")
9748 (license license:gpl3+)))
9749
9750 (define-public r-acd
9751 (package
9752 (name "r-acd")
9753 (version "1.5.3")
9754 (source
9755 (origin
9756 (method url-fetch)
9757 (uri (cran-uri "ACD" version))
9758 (sha256
9759 (base32
9760 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
9761 (properties `((upstream-name . "ACD")))
9762 (build-system r-build-system)
9763 (home-page "https://cran.r-project.org/web/packages/ACD/")
9764 (synopsis "Categorical data analysis with complete or missing responses")
9765 (description
9766 "This package provides tools for categorical data analysis with complete
9767 or missing responses.")
9768 (license license:gpl2+)))
9769
9770 (define-public r-acdm
9771 (package
9772 (name "r-acdm")
9773 (version "1.0.4")
9774 (source
9775 (origin
9776 (method url-fetch)
9777 (uri (cran-uri "ACDm" version))
9778 (sha256
9779 (base32
9780 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
9781 (properties `((upstream-name . "ACDm")))
9782 (build-system r-build-system)
9783 (propagated-inputs
9784 (list r-dplyr r-ggplot2 r-plyr r-rsolnp r-zoo))
9785 (home-page "https://cran.r-project.org/web/packages/ACDm/")
9786 (synopsis "Tools for Autoregressive Conditional Duration Models")
9787 (description
9788 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
9789 and Russell, 1998) models. It creates trade, price or volume durations from
9790 transactions (tic) data, performs diurnal adjustments, fits various ACD models
9791 and tests them.")
9792 (license license:gpl2+)))
9793
9794 (define-public r-overlap
9795 (package
9796 (name "r-overlap")
9797 (version "0.3.4")
9798 (source
9799 (origin
9800 (method url-fetch)
9801 (uri (cran-uri "overlap" version))
9802 (sha256
9803 (base32
9804 "1arxprhz035ab78ks88n6scwnlwmnb97mlac5gsx90ipb6gkgcyk"))))
9805 (build-system r-build-system)
9806 (home-page "https://cran.r-project.org/web/packages/overlap/")
9807 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
9808 (description
9809 "This package provides functions to fit kernel density functions to data
9810 on temporal activity patterns of animals; estimate coefficients of overlapping
9811 of densities for two species; and calculate bootstrap estimates of confidence
9812 intervals.")
9813 (license license:gpl3+)))
9814
9815 (define-public r-snakecase
9816 (package
9817 (name "r-snakecase")
9818 (version "0.11.0")
9819 (source
9820 (origin
9821 (method url-fetch)
9822 (uri (cran-uri "snakecase" version))
9823 (sha256
9824 (base32
9825 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
9826 (build-system r-build-system)
9827 (propagated-inputs
9828 (list r-stringi r-stringr))
9829 (home-page "https://github.com/Tazinho/snakecase")
9830 (synopsis "Convert strings into any case")
9831 (description
9832 "This package provides a consistent, flexible and easy to use tool to
9833 parse and convert strings into cases like snake or camel among others.")
9834 (license license:gpl3)))
9835
9836 (define-public r-prediction
9837 (package
9838 (name "r-prediction")
9839 (version "0.3.14")
9840 (source
9841 (origin
9842 (method url-fetch)
9843 (uri (cran-uri "prediction" version))
9844 (sha256
9845 (base32
9846 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
9847 (build-system r-build-system)
9848 (propagated-inputs
9849 (list r-data-table))
9850 (home-page "https://github.com/leeper/prediction")
9851 (synopsis "Tidy, type-safe prediction methods")
9852 (description
9853 "This package provides the @code{prediction()} function, a type-safe
9854 alternative to @code{predict()} that always returns a data frame. The package
9855 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
9856 from the @code{stats} package, as well as numerous other model classes from
9857 other add-on packages.")
9858 (license license:expat)))
9859
9860 (define-public r-insight
9861 (package
9862 (name "r-insight")
9863 (version "0.17.1")
9864 (source
9865 (origin
9866 (method url-fetch)
9867 (uri (cran-uri "insight" version))
9868 (sha256
9869 (base32
9870 "0dffrsimgijdqsgvr9cad4g4w97d5ssjl3l0fm5ssly9l115ag35"))))
9871 (build-system r-build-system)
9872 (native-inputs
9873 (list r-knitr))
9874 (home-page "https://easystats.github.io/insight/")
9875 (synopsis "Easy access to model information for various model objects")
9876 (description
9877 "This package provides a tool to provide an easy, intuitive and
9878 consistent access to information contained in various R models, like model
9879 formulas, model terms, information about random effects, data that was used to
9880 fit the model or data from response variables. The package mainly revolves
9881 around two types of functions: Functions that find (the names of) information,
9882 starting with @code{find_}, and functions that get the underlying data,
9883 starting with @code{get_}. The package has a consistent syntax and works with
9884 many different model objects, where otherwise functions to access these
9885 information are missing.")
9886 (license license:gpl3)))
9887
9888 (define-public r-sjlabelled
9889 (package
9890 (name "r-sjlabelled")
9891 (version "1.2.0")
9892 (source
9893 (origin
9894 (method url-fetch)
9895 (uri (cran-uri "sjlabelled" version))
9896 (sha256
9897 (base32
9898 "1va86q5wddyvqgdpy8d0an2c7v1qbb4hpn0ai6y1v5v1ff87w73k"))))
9899 (build-system r-build-system)
9900 (propagated-inputs
9901 (list r-datawizard r-insight))
9902 (native-inputs
9903 (list r-knitr))
9904 (home-page "https://github.com/strengejacke/sjlabelled")
9905 (synopsis "Labelled data utility functions")
9906 (description
9907 "This package provides a collection of functions dealing with labelled
9908 data, like reading and writing data between R and other statistical software
9909 packages. This includes easy ways to get, set or change value and variable
9910 label attributes, to convert labelled vectors into factors or numeric (and
9911 vice versa), or to deal with multiple declared missing values.")
9912 (license license:gpl3)))
9913
9914 (define-public r-sjmisc
9915 (package
9916 (name "r-sjmisc")
9917 (version "2.8.9")
9918 (source
9919 (origin
9920 (method url-fetch)
9921 (uri (cran-uri "sjmisc" version))
9922 (sha256
9923 (base32
9924 "1gzkq95ckxr0vhrzggflzli9hs7zr8c0yym9zn1wf74yrr0mgc3q"))))
9925 (build-system r-build-system)
9926 (propagated-inputs
9927 (list r-dplyr
9928 r-insight
9929 r-magrittr
9930 r-purrr
9931 r-rlang
9932 r-sjlabelled
9933 r-tidyselect))
9934 (native-inputs
9935 (list r-knitr))
9936 (home-page "https://github.com/strengejacke/sjmisc")
9937 (synopsis "Data and variable transformation functions")
9938 (description
9939 "This package is a collection of miscellaneous utility functions,
9940 supporting data transformation tasks like recoding, dichotomizing or grouping
9941 variables, setting and replacing missing values. The data transformation
9942 functions also support labelled data, and all integrate seamlessly into a
9943 tidyverse workflow.")
9944 (license license:gpl3)))
9945
9946 (define-public r-nortest
9947 (package
9948 (name "r-nortest")
9949 (version "1.0-4")
9950 (source
9951 (origin
9952 (method url-fetch)
9953 (uri (cran-uri "nortest" version))
9954 (sha256
9955 (base32
9956 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
9957 (build-system r-build-system)
9958 (home-page "https://cran.r-project.org/web/packages/nortest/")
9959 (synopsis "Tests for normality")
9960 (description
9961 "This package provides five omnibus tests for testing the composite
9962 hypothesis of normality.")
9963 (license license:gpl2+)))
9964
9965 (define-public r-moonbook
9966 (package
9967 (name "r-moonbook")
9968 (version "0.3.1")
9969 (source
9970 (origin
9971 (method url-fetch)
9972 (uri (cran-uri "moonBook" version))
9973 (sha256
9974 (base32
9975 "1ml4vvm0mvrprpyi0l50aw38brx18bk2qny4gybmkvlbakalz9bx"))))
9976 (properties `((upstream-name . "moonBook")))
9977 (build-system r-build-system)
9978 (propagated-inputs
9979 (list r-crayon
9980 r-magrittr
9981 r-nortest
9982 r-sjmisc
9983 r-stringr
9984 r-survival))
9985 (native-inputs
9986 (list r-knitr))
9987 (home-page "https://github.com/cardiomoon/moonBook")
9988 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
9989 (description
9990 "This package provides several analysis-related functions for the book
9991 entitled \"R statistics and graph for medical articles\" (written in Korean),
9992 version 1, by Keon-Woong Moon with Korean demographic data with several plot
9993 functions.")
9994 (license license:gpl2)))
9995
9996 (define-public r-flextable
9997 (package
9998 (name "r-flextable")
9999 (version "0.7.0")
10000 (source
10001 (origin
10002 (method url-fetch)
10003 (uri (cran-uri "flextable" version))
10004 (sha256
10005 (base32
10006 "15vr5lb87712mymsvv01kz9s1fb54sx5kybsa2x547k5g10dbrbm"))))
10007 (build-system r-build-system)
10008 (propagated-inputs
10009 (list r-base64enc
10010 r-data-table
10011 r-gdtools
10012 r-htmltools
10013 r-knitr
10014 r-officer
10015 r-rlang
10016 r-rmarkdown
10017 r-uuid
10018 r-xml2))
10019 (native-inputs
10020 (list r-knitr))
10021 (home-page "https://davidgohel.github.io/flextable")
10022 (synopsis "Functions for tabular reporting")
10023 (description
10024 "This package provides tools to create pretty tables for HTML documents
10025 and other formats. Functions are provided to let users create tables, modify
10026 and format their content. It extends the @code{officer} package and can be
10027 used within R markdown documents when rendering to HTML and to Word
10028 documents.")
10029 (license license:gpl3)))
10030
10031 (define-public r-writexl
10032 (package
10033 (name "r-writexl")
10034 (version "1.4.0")
10035 (source
10036 (origin
10037 (method url-fetch)
10038 (uri (cran-uri "writexl" version))
10039 (sha256
10040 (base32
10041 "0mfzyn8n5x5x5gf382bqgq61zpw9dymrp5kzdm2sbszplmxf6xry"))))
10042 (build-system r-build-system)
10043 (inputs (list zlib))
10044 (home-page "https://github.com/ropensci/writexl")
10045 (synopsis "Export data frames to xlsx format")
10046 (description
10047 "This package provides a data frame to xlsx exporter based on
10048 libxlsxwriter.")
10049 (license license:bsd-2)))
10050
10051 (define-public r-biasedurn
10052 (package
10053 (name "r-biasedurn")
10054 (version "1.07")
10055 (source
10056 (origin
10057 (method url-fetch)
10058 (uri (cran-uri "BiasedUrn" version))
10059 (sha256
10060 (base32
10061 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
10062 (properties `((upstream-name . "BiasedUrn")))
10063 (build-system r-build-system)
10064 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
10065 (synopsis "Biased Urn model distributions")
10066 (description
10067 "This package provides statistical models of biased sampling in the form
10068 of univariate and multivariate noncentral hypergeometric distributions,
10069 including Wallenius' noncentral hypergeometric distribution and Fisher's
10070 noncentral hypergeometric distribution (also called extended hypergeometric
10071 distribution).")
10072 (license license:gpl3)))
10073
10074 (define-public r-goplot
10075 (package
10076 (name "r-goplot")
10077 (version "1.0.2")
10078 (source
10079 (origin
10080 (method url-fetch)
10081 (uri (cran-uri "GOplot" version))
10082 (sha256
10083 (base32
10084 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
10085 (properties `((upstream-name . "GOplot")))
10086 (build-system r-build-system)
10087 (propagated-inputs
10088 (list r-ggdendro r-ggplot2 r-gridextra r-rcolorbrewer))
10089 (home-page "https://github.com/wencke/wencke.github.io")
10090 (synopsis "Visualization of functional analysis data")
10091 (description
10092 "This package provides an implementation of multilayered visualizations
10093 for enhanced graphical representation of functional analysis data. It
10094 combines and integrates omics data derived from expression and functional
10095 annotation enrichment analyses. Its plotting functions have been developed
10096 with an hierarchical structure in mind: starting from a general overview to
10097 identify the most enriched categories (modified bar plot, bubble plot) to a
10098 more detailed one displaying different types of relevant information for the
10099 molecules in a given set of categories (circle plot, chord plot, cluster plot,
10100 Venn diagram, heatmap).")
10101 (license license:gpl2)))
10102
10103 (define-public r-getopt
10104 (package
10105 (name "r-getopt")
10106 (version "1.20.3")
10107 (source
10108 (origin
10109 (method url-fetch)
10110 (uri (cran-uri "getopt" version))
10111 (sha256
10112 (base32
10113 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
10114 (build-system r-build-system)
10115 (home-page "https://github.com/trevorld/getopt")
10116 (synopsis "Command-line option processor for R")
10117 (description
10118 "This package is designed to be used with Rscript to write shebang
10119 scripts that accept short and long options. Many users will prefer to
10120 use the packages @code{optparse} or @code{argparse} which add extra
10121 features like automatically generated help options and usage texts,
10122 support for default values, positional argument support, etc.")
10123 (license license:gpl2+)))
10124
10125 (define-public r-findpython
10126 (package
10127 (name "r-findpython")
10128 (version "1.0.7")
10129 (source
10130 (origin
10131 (method url-fetch)
10132 (uri (cran-uri "findpython" version))
10133 (sha256
10134 (base32
10135 "0jf10jpqla90x03kl3k77gnd255zmw9rvr8d724vb17cqawh9yar"))))
10136 (build-system r-build-system)
10137 (home-page "https://github.com/trevorld/findpython")
10138 (synopsis "Functions to find an acceptable Python binary")
10139 (description
10140 "This package was designed to find an acceptable Python binary that
10141 matches version and feature constraints.")
10142 (license license:expat)))
10143
10144 ;; This in not the same as "r-argparser"
10145 (define-public r-argparse
10146 (package
10147 (name "r-argparse")
10148 (version "2.1.5")
10149 (source
10150 (origin
10151 (method url-fetch)
10152 (uri (cran-uri "argparse" version))
10153 (sha256
10154 (base32
10155 "13b5halfxc7nr57vkz3qmkkcpw1hr4xdk1mjh2cq8cvpnjz15qc3"))))
10156 (build-system r-build-system)
10157 (inputs (list python))
10158 (propagated-inputs
10159 (list r-findpython r-jsonlite r-r6))
10160 (native-inputs
10161 (list r-knitr))
10162 (home-page "https://github.com/trevorld/argparse")
10163 (synopsis "Command line optional and positional argument parser")
10164 (description
10165 "This package provides a command line parser to be used with Rscript to
10166 write shebang scripts that gracefully accept positional and optional arguments
10167 and automatically generate usage notices.")
10168 (license license:gpl2+)))
10169
10170 (define-public r-hash
10171 (package
10172 (name "r-hash")
10173 (version "2.2.6.2")
10174 (source
10175 (origin
10176 (method url-fetch)
10177 (uri (cran-uri "hash" version))
10178 (sha256
10179 (base32
10180 "17scs675a86c34hjbxmwi8kny4yyv97x3515s449zafj2i0ad8vm"))))
10181 (build-system r-build-system)
10182 (home-page "https://cran.r-project.org/web/packages/hash/")
10183 (synopsis "Implementation of hash/associated arrays/dictionaries")
10184 (description
10185 "This package implements a data structure similar to hashes in Perl and
10186 dictionaries in Python but with a purposefully R flavor. For objects of
10187 appreciable size, access using hashes outperforms native named lists and
10188 vectors.")
10189 (license license:gpl2+)))
10190
10191 (define-public r-orddom
10192 (package
10193 (name "r-orddom")
10194 (version "3.1")
10195 (source
10196 (origin
10197 (method url-fetch)
10198 (uri (cran-uri "orddom" version))
10199 (sha256
10200 (base32
10201 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
10202 (build-system r-build-system)
10203 (propagated-inputs (list r-psych))
10204 (home-page "https://cran.r-project.org/web/packages/orddom/")
10205 (synopsis "Ordinal dominance statistics")
10206 (description
10207 "This package provides tools to compute ordinal, statistics and effect
10208 sizes as an alternative to mean comparison: Cliff's delta or success rate
10209 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
10210 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
10211 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
10212 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
10213 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
10214 Group (Non-)Overlap considerations.")
10215 (license license:gpl2)))
10216
10217 (define-public r-deriv
10218 (package
10219 (name "r-deriv")
10220 (version "4.1.3")
10221 (source
10222 (origin
10223 (method url-fetch)
10224 (uri (cran-uri "Deriv" version))
10225 (sha256
10226 (base32
10227 "130g3mv0z9sqs6y23a0a94512iiw05yr6fp378vhdxxbignzbnyv"))))
10228 (properties `((upstream-name . "Deriv")))
10229 (build-system r-build-system)
10230 (home-page "https://cran.r-project.org/web/packages/Deriv")
10231 (synopsis "Symbolic differentiation")
10232 (description
10233 "This package provides an R-based solution for symbolic differentiation.
10234 It admits user-defined functions as well as function substitution in arguments
10235 of functions to be differentiated. Some symbolic simplification is part of
10236 the work.")
10237 (license license:gpl3+)))
10238
10239 (define-public r-doby
10240 (package
10241 (name "r-doby")
10242 (version "4.6.13")
10243 (source
10244 (origin
10245 (method url-fetch)
10246 (uri (cran-uri "doBy" version))
10247 (sha256
10248 (base32
10249 "0qnfcw4rg5kd1mll3rq6vchz3lgdqfif9469p8x6ixsgrxxpivbz"))))
10250 (properties `((upstream-name . "doBy")))
10251 (build-system r-build-system)
10252 (propagated-inputs
10253 (list r-broom
10254 r-deriv
10255 r-dplyr
10256 r-ggplot2
10257 r-magrittr
10258 r-mass
10259 r-matrix
10260 r-microbenchmark
10261 r-pbkrtest
10262 r-tibble))
10263 (native-inputs
10264 (list r-knitr))
10265 (home-page "https://people.math.aau.dk/~sorenh/software/doBy/")
10266 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
10267 (description
10268 "This package contains:
10269
10270 @itemize
10271 @item facilities for working with grouped data: @code{do}
10272 something to data stratified @code{by} some variables.
10273 @item implementations of least-squares means, general linear contrasts, and
10274 @item miscellaneous other utilities.
10275 @end itemize\n")
10276 (license license:gpl2+)))
10277
10278 (define-public r-refgenome
10279 (package
10280 (name "r-refgenome")
10281 (version "1.7.7")
10282 (source
10283 (origin
10284 (method url-fetch)
10285 (uri (cran-uri "refGenome" version))
10286 (sha256
10287 (base32
10288 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
10289 (properties `((upstream-name . "refGenome")))
10290 (build-system r-build-system)
10291 (propagated-inputs
10292 (list r-dbi r-doby r-rsqlite))
10293 (home-page "https://cran.r-project.org/web/packages/refGenome/")
10294 (synopsis
10295 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
10296 (description
10297 "This package contains functionality for importing and managing of
10298 downloaded genome annotation data from the Ensembl genome browser (European
10299 Bioinformatics Institute) and from the UCSC genome browser (University of
10300 California, Santa Cruz) and annotation routines for genomic positions and
10301 splice site positions.")
10302 (license license:gpl2)))
10303
10304 (define-public r-basix
10305 (package
10306 (name "r-basix")
10307 (version "1.1")
10308 (source
10309 (origin
10310 (method url-fetch)
10311 (uri (cran-uri "BASIX" version))
10312 (sha256
10313 (base32
10314 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
10315 (properties `((upstream-name . "BASIX")))
10316 (build-system r-build-system)
10317 (home-page "https://cran.r-project.org/web/packages/BASIX/")
10318 (synopsis "Efficient C/C++ toolset for R")
10319 (description
10320 "BASIX provides some efficient C/C++ implementations of native R
10321 procedures to speed up calculations in R.")
10322 (license license:gpl2)))
10323
10324 (define-public r-blockfest
10325 (package
10326 (name "r-blockfest")
10327 (version "2.0")
10328 (source
10329 (origin
10330 (method url-fetch)
10331 (uri (cran-uri "BlockFeST" version))
10332 (sha256
10333 (base32
10334 "1fcl3yc1cf09znqbj787d3fd2kl5rp63la7pxawsgmap7nxwkp65"))))
10335 (properties `((upstream-name . "BlockFeST")))
10336 (build-system r-build-system)
10337 (propagated-inputs (list r-basix))
10338 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
10339 (synopsis "Bayesian calculation of region-specific fixation index")
10340 (description
10341 "This package provides an R implementation of an extension of the
10342 BayeScan software for codominant markers, adding the option to group
10343 individual SNPs into pre-defined blocks. A typical application of this new
10344 approach is the identification of genomic regions, genes, or gene sets
10345 containing one or more SNPs that evolved under directional selection.")
10346 (license license:gpl2)))
10347
10348 (define-public r-proc
10349 (package
10350 (name "r-proc")
10351 (version "1.18.0")
10352 (source
10353 (origin
10354 (method url-fetch)
10355 (uri (cran-uri "pROC" version))
10356 (sha256
10357 (base32
10358 "1abvbzdss12n64pp9vlgnn0q3abh0nj4n0a8cinwwvhphjrm9vym"))))
10359 (properties `((upstream-name . "pROC")))
10360 (build-system r-build-system)
10361 (propagated-inputs
10362 (list r-plyr r-rcpp))
10363 (home-page "https://web.expasy.org/pROC/")
10364 (synopsis "Display and analyze ROC curves")
10365 (description
10366 "This package provides tools for visualizing, smoothing and comparing
10367 receiver operating characteristic (ROC curves). The area under the
10368 curve (AUC) can be compared with statistical tests based on U-statistics or
10369 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
10370 (license license:gpl3+)))
10371
10372 (define-public r-rootsolve
10373 (package
10374 (name "r-rootsolve")
10375 (version "1.8.2.3")
10376 (source
10377 (origin
10378 (method url-fetch)
10379 (uri (cran-uri "rootSolve" version))
10380 (sha256
10381 (base32
10382 "182bb727sgqi5f3pzmw8jnn328wdjrgj9lfvg49gv8s22rjd3cxm"))))
10383 (properties `((upstream-name . "rootSolve")))
10384 (build-system r-build-system)
10385 (native-inputs (list gfortran))
10386 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
10387 (synopsis "Tools for the analysis of ordinary differential equations")
10388 (description
10389 "This package provides routines to find the root of nonlinear functions,
10390 and to perform steady-state and equilibrium analysis of @dfn{ordinary
10391 differential equations} (ODE). It includes routines that:
10392
10393 @enumerate
10394 @item generate gradient and jacobian matrices (full and banded),
10395 @item find roots of non-linear equations by the Newton-Raphson method,
10396 @item estimate steady-state conditions of a system of (differential) equations
10397 in full, banded or sparse form, using the Newton-Raphson method, or by
10398 dynamically running,
10399 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
10400 and 3-D partial differential equations, that have been converted to ordinary
10401 differential equations by numerical differencing (using the method-of-lines
10402 approach).
10403 @end enumerate\n")
10404 (license license:gpl2+)))
10405
10406 (define-public r-abcanalysis
10407 (package
10408 (name "r-abcanalysis")
10409 (version "1.2.1")
10410 (source
10411 (origin
10412 (method url-fetch)
10413 (uri (cran-uri "ABCanalysis" version))
10414 (sha256
10415 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
10416 (properties `((upstream-name . "ABCanalysis")))
10417 (build-system r-build-system)
10418 (propagated-inputs (list r-plotrix))
10419 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
10420 (synopsis "Computed ABC Analysis")
10421 (description
10422 "Multivariate data sets often differ in several factors or derived statistical
10423 parameters, which have to be selected for a valid interpretation. Basing this
10424 selection on traditional statistical limits leads occasionally to the perception
10425 of losing information from a data set. This package provides tools to calculate
10426 these limits on the basis of the mathematical properties of the distribution of
10427 the analyzed items.")
10428 (license license:gpl3)))
10429
10430 (define-public r-slam
10431 (package
10432 (name "r-slam")
10433 (version "0.1-50")
10434 (source
10435 (origin
10436 (method url-fetch)
10437 (uri (cran-uri "slam" version))
10438 (sha256
10439 (base32 "1ggqcf8l1z2hpi7qy4mg0d2ps48bjjb8z1y1xz6fq162cqrbz6bq"))))
10440 (build-system r-build-system)
10441 (home-page "https://cran.r-project.org/web/packages/slam/")
10442 (synopsis "Sparse lightweight arrays and matrices")
10443 (description
10444 "This package contains data structures and algorithms for sparse arrays and matrices,
10445 based on index arrays and simple triplet representations, respectively.")
10446 (license license:gpl2)))
10447
10448 (define-public r-manipulatewidget
10449 (package
10450 (name "r-manipulatewidget")
10451 (version "0.11.1")
10452 (source
10453 (origin
10454 (method url-fetch)
10455 (uri (cran-uri "manipulateWidget" version))
10456 (sha256
10457 (base32 "1dpgzmiv08afm57yxr017b014lfn9h3pa4w65prk5k3dgn6p4wsv"))))
10458 (properties
10459 `((upstream-name . "manipulateWidget")))
10460 (build-system r-build-system)
10461 (propagated-inputs
10462 (list r-base64enc
10463 r-codetools
10464 r-htmltools
10465 r-htmlwidgets
10466 r-knitr
10467 r-miniui
10468 r-shiny
10469 r-shinyjs
10470 r-webshot))
10471 (native-inputs
10472 (list r-knitr))
10473 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
10474 (synopsis "Add even more interactivity to interactive charts")
10475 (description
10476 "This package lets you create in just a few lines of R code a nice user interface to
10477 modify the data or the graphical parameters of one or multiple interactive
10478 charts. It is useful to quickly explore visually some data or for package
10479 developers to generate user interfaces easy to maintain.")
10480 (license license:gpl2+)))
10481
10482 (define-public r-a3
10483 (package
10484 (name "r-a3")
10485 (version "1.0.0")
10486 (source
10487 (origin
10488 (method url-fetch)
10489 (uri (cran-uri "A3" version))
10490 (sha256
10491 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
10492 (properties `((upstream-name . "A3")))
10493 (build-system r-build-system)
10494 (propagated-inputs
10495 (list r-pbapply r-xtable))
10496 (home-page "https://cran.r-project.org/web/packages/A3/")
10497 (synopsis "Error metrics for predictive models")
10498 (description
10499 "This package supplies tools for tabulating and analyzing the results of predictive
10500 models. The methods employed are applicable to virtually any predictive model
10501 and make comparisons between different methodologies straightforward.")
10502 (license license:gpl2+)))
10503
10504 (define-public r-infotheo
10505 (package
10506 (name "r-infotheo")
10507 (version "1.2.0.1")
10508 (source
10509 (origin
10510 (method url-fetch)
10511 (uri (cran-uri "infotheo" version))
10512 (sha256
10513 (base32
10514 "1m1979vf8rvq3534mp1hihfadikhxrg3p6ac3hirz96kgb4qxyy0"))))
10515 (build-system r-build-system)
10516 (home-page "http://homepage.meyerp.com/software")
10517 (synopsis "Information-theoretic measures")
10518 (description
10519 "This package implements various measures of information theory based on
10520 several entropy estimators.")
10521 (license license:gpl3+)))
10522
10523 (define-public r-nsprcomp
10524 (package
10525 (name "r-nsprcomp")
10526 (version "0.5.1-2")
10527 (source
10528 (origin
10529 (method url-fetch)
10530 (uri (cran-uri "nsprcomp" version))
10531 (sha256
10532 (base32
10533 "1zlc1ximx96f235c0l8qfs6vbp1kpnbf943wxsfahnnlnxvwi59f"))))
10534 (properties `((upstream-name . "nsprcomp")))
10535 (build-system r-build-system)
10536 (home-page "https://sigg-iten.ch/research/")
10537 (synopsis "Non-negative and sparse PCA")
10538 (description
10539 "This package implements two methods for performing a constrained
10540 principal component analysis (PCA), where non-negativity and/or sparsity
10541 constraints are enforced on the principal axes (PAs). The function
10542 @code{nsprcomp} computes one principal component (PC) after the other. Each
10543 PA is optimized such that the corresponding PC has maximum additional variance
10544 not explained by the previous components. In contrast, the function
10545 @code{nscumcomp} jointly computes all PCs such that the cumulative variance is
10546 maximal. Both functions have the same interface as the @code{prcomp} function
10547 from the @code{stats} package (plus some extra parameters).")
10548 (license license:gpl2+)))
10549
10550 (define-public r-cmplot
10551 (package
10552 (name "r-cmplot")
10553 (version "4.1.0")
10554 (source
10555 (origin
10556 (method url-fetch)
10557 (uri (cran-uri "CMplot" version))
10558 (sha256
10559 (base32
10560 "1h09prpiw7l32mr7jarp8ddrddg1431nfn4kw3bznfnv0sr78zfg"))))
10561 (properties `((upstream-name . "CMplot")))
10562 (build-system r-build-system)
10563 (home-page "https://github.com/YinLiLin/CMplot")
10564 (synopsis "Circle Manhattan plot")
10565 (description
10566 "Circle Manhattan Plot is an R package that can lay out genome-wide
10567 association study P-value results in both traditional rectangular patterns,
10568 QQ-plot and novel circular ones. United in only one bull's eye style plot,
10569 association results from multiple traits can be compared interactively,
10570 thereby to reveal both similarities and differences between signals.
10571 Additional functions include: highlight signals, a group of SNPs, chromosome
10572 visualization and candidate genes around SNPs.")
10573 (license license:gpl2+)))
10574
10575 (define-public r-precrec
10576 (package
10577 (name "r-precrec")
10578 (version "0.12.9")
10579 (source
10580 (origin
10581 (method url-fetch)
10582 (uri (cran-uri "precrec" version))
10583 (sha256
10584 (base32
10585 "1dfz2rqx2ww2l5r40ahg0qdj3rjrwiwh427mw7j5ynhpcj21j2qm"))))
10586 (properties `((upstream-name . "precrec")))
10587 (build-system r-build-system)
10588 (propagated-inputs
10589 (list r-assertthat
10590 r-data-table
10591 r-ggplot2
10592 r-gridextra
10593 r-rcpp
10594 r-withr))
10595 (native-inputs (list r-knitr))
10596 (home-page "https://evalclass.github.io/precrec/")
10597 (synopsis "Calculate accurate precision-recall and ROC curves")
10598 (description
10599 "This package provides tools for accurate calculations and visualization
10600 of precision-recall and ROC (Receiver Operator Characteristics) curves.")
10601 (license license:gpl3)))
10602
10603 (define-public r-netrep
10604 (package
10605 (name "r-netrep")
10606 (version "1.2.4")
10607 (source
10608 (origin
10609 (method url-fetch)
10610 (uri (cran-uri "NetRep" version))
10611 (sha256
10612 (base32
10613 "1swlb2k9bc7whvslxbklz864j9ynvna73hvq5rhv61cv5vy05ksd"))))
10614 (properties `((upstream-name . "NetRep")))
10615 (build-system r-build-system)
10616 (propagated-inputs
10617 (list r-abind
10618 r-bh
10619 r-foreach
10620 r-rcolorbrewer
10621 r-rcpp
10622 r-rcpparmadillo
10623 r-rhpcblasctl
10624 r-statmod))
10625 (native-inputs (list r-knitr))
10626 (home-page "https://cran.r-project.org/package=NetRep")
10627 (synopsis "Permutation testing network module preservation across datasets")
10628 (description
10629 "This package provides functions for assessing the
10630 replication/preservation of a network module's topology across datasets
10631 through permutation testing.")
10632 (license license:gpl2)))
10633
10634 (define-public r-intergraph
10635 (package
10636 (name "r-intergraph")
10637 (version "2.0-2")
10638 (source
10639 (origin
10640 (method url-fetch)
10641 (uri (cran-uri "intergraph" version))
10642 (sha256
10643 (base32
10644 "18a7xgb2rp0w9jl2rkh8nzyjprrs5w7h2iidvc8c38bzx3qpggkc"))))
10645 (properties `((upstream-name . "intergraph")))
10646 (build-system r-build-system)
10647 (propagated-inputs
10648 (list r-igraph r-network))
10649 (native-inputs
10650 (list r-knitr))
10651 (home-page "http://mbojan.github.io/intergraph")
10652 (synopsis "Coercion routines for network data objects")
10653 (description
10654 "Functions implemented in this package allow coercing (i.e. convert)
10655 network data between classes provided by other R packages. Currently
10656 supported classes are those defined in packages @code{network} and
10657 @code{igraph}.")
10658 (license license:gpl3)))
10659
10660 (define-public r-abcoptim
10661 (package
10662 (name "r-abcoptim")
10663 (version "0.15.0")
10664 (source
10665 (origin
10666 (method url-fetch)
10667 (uri (cran-uri "ABCoptim" version))
10668 (sha256
10669 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
10670 (properties `((upstream-name . "ABCoptim")))
10671 (build-system r-build-system)
10672 (propagated-inputs (list r-rcpp))
10673 (home-page "https://github.com/gvegayon/ABCoptim/")
10674 (synopsis "Optimization of Artificial Bee Colony algorithm")
10675 (description
10676 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
10677 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
10678 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
10679 algorithms, and uses only common control parameters such as colony size and
10680 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
10681 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
10682 This version is a work-in-progress and is written in R code.")
10683 (license license:expat)))
10684
10685 (define-public r-abcp2
10686 (package
10687 (name "r-abcp2")
10688 (version "1.2")
10689 (source
10690 (origin
10691 (method url-fetch)
10692 (uri (cran-uri "ABCp2" version))
10693 (sha256
10694 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
10695 (properties `((upstream-name . "ABCp2")))
10696 (build-system r-build-system)
10697 (propagated-inputs (list r-mass))
10698 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
10699 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
10700 (description
10701 "This package tests the goodness of fit of a distribution of offspring to the Normal,
10702 Poisson, and Gamma distribution and estimates the proportional paternity of the
10703 second male (P2) based on the best fit distribution.")
10704 (license license:gpl2)))
10705
10706 (define-public r-abcrf
10707 (package
10708 (name "r-abcrf")
10709 (version "1.8.1")
10710 (source
10711 (origin
10712 (method url-fetch)
10713 (uri (cran-uri "abcrf" version))
10714 (sha256
10715 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
10716 (build-system r-build-system)
10717 (propagated-inputs
10718 (list r-doparallel
10719 r-foreach
10720 r-mass
10721 r-matrixstats
10722 r-ranger
10723 r-rcpp
10724 r-rcpparmadillo
10725 r-readr
10726 r-stringr))
10727 (home-page "https://cran.r-project.org/web/packages/abcrf/")
10728 (synopsis "Approximate bayesian computation via random forests")
10729 (description
10730 "This package performs approximate bayesian computation (ABC) model choice and
10731 parameter inference via random forests. This machine learning tool named random
10732 forests (RF) can conduct selection among the highly complex models covered by
10733 ABC algorithms.")
10734 (license license:gpl2+)))
10735
10736 (define-public r-abctools
10737 (package
10738 (name "r-abctools")
10739 (version "1.1.3")
10740 (source
10741 (origin
10742 (method url-fetch)
10743 (uri (cran-uri "abctools" version))
10744 (sha256
10745 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
10746 (build-system r-build-system)
10747 (propagated-inputs
10748 (list r-abc r-abind r-hmisc r-plyr))
10749 (home-page "https://github.com/dennisprangle/abctools/")
10750 (synopsis "Tools for ABC analyses")
10751 (description
10752 "This @code{r-abctools} package provides tools for approximate Bayesian computation
10753 including summary statistic selection and assessing coverage. This includes
10754 recent dimension reduction algorithms to tune the choice of summary statistics,
10755 and coverage methods to tune the choice of threshold.")
10756 (license license:gpl2+)))
10757
10758 (define-public r-ggstance
10759 (package
10760 (name "r-ggstance")
10761 (version "0.3.5")
10762 (source
10763 (origin
10764 (method url-fetch)
10765 (uri (cran-uri "ggstance" version))
10766 (sha256
10767 (base32 "0jz9vvnmcc6a38n8nzr458r65sna23bgn5r8mxdhzdlyqibihr7d"))))
10768 (build-system r-build-system)
10769 (propagated-inputs
10770 (list r-ggplot2 r-plyr r-rlang r-withr))
10771 (home-page "https://cran.r-project.org/web/packages/ggstance/")
10772 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
10773 (description
10774 "This package is a @code{r-ggplot2} extension that provides flipped components:
10775 @enumerate
10776 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
10777 @item vertical versions of @code{r-ggplot2} positions.
10778 @end enumerate")
10779 (license license:gpl3)))
10780
10781 (define-public r-ggnetwork
10782 (package
10783 (name "r-ggnetwork")
10784 (version "0.5.10")
10785 (source
10786 (origin
10787 (method url-fetch)
10788 (uri (cran-uri "ggnetwork" version))
10789 (sha256
10790 (base32
10791 "0gqdgy5yh700dg0f7xb80hczlnqfisn8l55j7amd1n7fp2x5sr8v"))))
10792 (properties `((upstream-name . "ggnetwork")))
10793 (build-system r-build-system)
10794 (propagated-inputs
10795 (list r-ggplot2 r-ggrepel r-igraph r-network r-sna))
10796 (native-inputs (list r-knitr))
10797 (home-page "https://github.com/briatte/ggnetwork")
10798 (synopsis "Geometries to plot networks with ggplot2")
10799 (description
10800 "This package provides geometries to plot network objects with the
10801 ggplot2 package.")
10802 (license license:gpl3)))
10803
10804 (define-public r-cvauc
10805 (package
10806 (name "r-cvauc")
10807 (version "1.1.4")
10808 (source
10809 (origin
10810 (method url-fetch)
10811 (uri (cran-uri "cvAUC" version))
10812 (sha256
10813 (base32
10814 "1m2y50a1yapf1c74km9a4r47ds2z2bfp4wwwkqin7swv9v1s7d28"))))
10815 (properties `((upstream-name . "cvAUC")))
10816 (build-system r-build-system)
10817 (propagated-inputs
10818 (list r-data-table r-rocr))
10819 (home-page "https://github.com/ledell/cvAUC")
10820 (synopsis "Cross-validated area under the ROC curve confidence intervals")
10821 (description
10822 "This package contains various tools for working with and evaluating
10823 cross-validated area under the ROC curve (AUC) estimators. The primary
10824 functions of the package are @code{ci.cvAUC} and @code{ci.pooled.cvAUC}, which
10825 report cross-validated AUC and compute confidence intervals for
10826 cross-validated AUC estimates based on influence curves for i.i.d. and pooled
10827 repeated measures data, respectively.")
10828 (license license:asl2.0)))
10829
10830 (define-public r-gam
10831 (package
10832 (name "r-gam")
10833 (version "1.20.1")
10834 (source
10835 (origin
10836 (method url-fetch)
10837 (uri (cran-uri "gam" version))
10838 (sha256
10839 (base32
10840 "1bbxiqfgi7jc9vw1hspw5q41d69nlw2v6k91zqlvmam5pvxcd1sp"))))
10841 (properties `((upstream-name . "gam")))
10842 (build-system r-build-system)
10843 (propagated-inputs
10844 (list r-foreach))
10845 (native-inputs
10846 (list gfortran))
10847 (home-page "https://cran.r-project.org/package=gam")
10848 (synopsis "Generalized additive models")
10849 (description
10850 "This package provides functions for fitting and working with generalized
10851 additive models, as described in chapter 7 of \"Statistical Models in
10852 S\" (Chambers and Hastie (eds), 1991), and \"Generalized Additive
10853 Models\" (Hastie and Tibshirani, 1990).")
10854 (license license:gpl2)))
10855
10856 (define-public r-superlearner
10857 (package
10858 (name "r-superlearner")
10859 (version "2.0-28")
10860 (source
10861 (origin
10862 (method url-fetch)
10863 (uri (cran-uri "SuperLearner" version))
10864 (sha256
10865 (base32
10866 "00any24msgflyagy87nznpfjz5g9v15frqda6c679wa8plx26hjz"))))
10867 (properties `((upstream-name . "SuperLearner")))
10868 (build-system r-build-system)
10869 (propagated-inputs
10870 (list r-cvauc r-gam r-nnls))
10871 (native-inputs
10872 (list r-knitr))
10873 (home-page "https://github.com/ecpolley/SuperLearner")
10874 (synopsis "Super learner prediction")
10875 (description
10876 "This package implements the super learner prediction method and contains
10877 a library of prediction algorithms to be used in the super learner.")
10878 (license license:gpl3)))
10879
10880 (define-public r-drtmle
10881 (package
10882 (name "r-drtmle")
10883 (version "1.1.1")
10884 (source
10885 (origin
10886 (method url-fetch)
10887 (uri (cran-uri "drtmle" version))
10888 (sha256
10889 (base32
10890 "12vplpz9bg5444jy29mbdr70hqby073vb3iw76v2csrwy3ws3f21"))))
10891 (properties `((upstream-name . "drtmle")))
10892 (build-system r-build-system)
10893 (propagated-inputs
10894 (list r-future-apply r-np r-superlearner))
10895 (native-inputs
10896 (list r-knitr))
10897 (home-page "https://github.com/benkeser/drtmle")
10898 (synopsis "Doubly-robust nonparametric estimation and inference")
10899 (description
10900 "This package implements targeted minimum loss-based estimators of
10901 counterfactual means and causal effects that are doubly-robust with respect
10902 both to consistency and asymptotic normality.")
10903 (license license:expat)))
10904
10905 (define-public r-dofuture
10906 (package
10907 (name "r-dofuture")
10908 (version "0.12.2")
10909 (source
10910 (origin
10911 (method url-fetch)
10912 (uri (cran-uri "doFuture" version))
10913 (sha256
10914 (base32
10915 "0w07pmzpsfq4kvfc745s1i9b6dfn1df1wrfi4s9ys4ir3g2s8nk1"))))
10916 (properties `((upstream-name . "doFuture")))
10917 (build-system r-build-system)
10918 (arguments
10919 '(#:phases
10920 (modify-phases %standard-phases
10921 (add-after 'unpack 'set-HOME
10922 (lambda _ (setenv "HOME" "/tmp"))))))
10923 (propagated-inputs
10924 (list r-foreach r-future r-globals r-iterators))
10925 (native-inputs
10926 (list r-r-rsp)) ; vignette builder
10927 (home-page "https://github.com/HenrikBengtsson/doFuture")
10928 (synopsis "Foreach parallel adapter using the future API")
10929 (description
10930 "This package provides a @code{%dopar%} adapter such that any type of
10931 futures can be used as backends for the @code{foreach} framework.")
10932 (license license:lgpl2.1+)))
10933
10934 (define-public r-superheat
10935 (package
10936 (name "r-superheat")
10937 (version "0.1.0")
10938 (source
10939 (origin
10940 (method url-fetch)
10941 (uri (cran-uri "superheat" version))
10942 (sha256
10943 (base32
10944 "01v8s6px1k5fajlm6py3ksr1i853kwwlky1yryzhy3p1cxhwgg83"))))
10945 (properties `((upstream-name . "superheat")))
10946 (build-system r-build-system)
10947 (propagated-inputs
10948 (list r-dplyr
10949 r-ggdendro
10950 r-ggplot2
10951 r-gtable
10952 r-magrittr
10953 r-plyr
10954 r-scales))
10955 (home-page "https://cran.r-project.org/package=superheat")
10956 (synopsis "Graphical tool for exploring complex datasets using heatmaps")
10957 (description
10958 "This package provides a system for generating extendable and
10959 customizable heatmaps for exploring complex datasets, including big data and
10960 data with multiple data types.")
10961 (license license:cc0)))
10962
10963 (define-public r-qualv
10964 (package
10965 (name "r-qualv")
10966 (version "0.3-4")
10967 (source
10968 (origin
10969 (method url-fetch)
10970 (uri (cran-uri "qualV" version))
10971 (sha256
10972 (base32
10973 "0rkjzva2h158d5c631jmjjh7qjibbyisl0503san80rk9fgxl45b"))))
10974 (properties `((upstream-name . "qualV")))
10975 (build-system r-build-system)
10976 (propagated-inputs
10977 (list r-kernsmooth))
10978 (home-page "http://qualV.R-Forge.R-Project.org/")
10979 (synopsis "Qualitative Validation Methods")
10980 (description
10981 "This package provides qualitative methods for the validation of dynamic
10982 models. It contains
10983
10984 @enumerate
10985 @item an orthogonal set of deviance measures for absolute, relative and
10986 ordinal scale and
10987 @item approaches accounting for time shifts.
10988 @end enumerate
10989
10990 The first approach transforms time to take time delays and speed differences
10991 into account. The second divides the time series into interval units
10992 according to their main features and finds the @dfn{longest common
10993 subsequence} (LCS) using a dynamic programming algorithm.")
10994 (license license:gpl2+)))
10995
10996 (define-public r-mosaiccore
10997 (package
10998 (name "r-mosaiccore")
10999 (version "0.9.0")
11000 (source
11001 (origin
11002 (method url-fetch)
11003 (uri (cran-uri "mosaicCore" version))
11004 (sha256
11005 (base32 "1h3ixzna4xy42rdnd89jj0v9q0riy3fnkd33z6l5c0zaidzm58fz"))))
11006 (properties `((upstream-name . "mosaicCore")))
11007 (build-system r-build-system)
11008 (propagated-inputs
11009 (list r-dplyr r-mass r-rlang r-tidyr))
11010 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
11011 (synopsis "Common utilities for mosaic family packages")
11012 (description
11013 "Common utilities used in other Mosaic family packages are collected here.")
11014 (license license:gpl2+)))
11015
11016 (define-public r-labelled
11017 (package
11018 (name "r-labelled")
11019 (version "2.9.1")
11020 (source
11021 (origin
11022 (method url-fetch)
11023 (uri (cran-uri "labelled" version))
11024 (sha256
11025 (base32
11026 "0h7scbyzh7kr51gds222rkhld2b3k36s86hj8rrzpwv4bwj0pccy"))))
11027 (properties `((upstream-name . "labelled")))
11028 (build-system r-build-system)
11029 (propagated-inputs
11030 (list r-dplyr
11031 r-haven
11032 r-lifecycle
11033 r-rlang
11034 r-stringr
11035 r-tidyr
11036 r-vctrs))
11037 (native-inputs
11038 (list r-knitr))
11039 (home-page "http://larmarange.github.io/labelled/")
11040 (synopsis "Manipulating labelled data")
11041 (description
11042 "This package provides useful functions to deal with the
11043 @code{haven_labelled} and @code{haven_labelled_spss} classes introduced by the
11044 haven package.")
11045 (license license:gpl3)))
11046
11047 (define-public r-ggformula
11048 (package
11049 (name "r-ggformula")
11050 (version "0.10.1")
11051 (source
11052 (origin
11053 (method url-fetch)
11054 (uri (cran-uri "ggformula" version))
11055 (sha256
11056 (base32 "1ph5jd8svk8hmshi894vmmpq3zwgdmf4yn3gmdlkad68z8jynhsp"))))
11057 (build-system r-build-system)
11058 (propagated-inputs
11059 (list r-ggforce
11060 r-ggplot2
11061 r-ggridges
11062 r-ggstance
11063 r-labelled
11064 r-magrittr
11065 r-mosaiccore
11066 r-rlang
11067 r-scales
11068 r-stringr
11069 r-tibble))
11070 (native-inputs
11071 (list r-knitr))
11072 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
11073 (synopsis "Formula interface for the @code{r-ggplot2}")
11074 (description
11075 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
11076 gf_density(), and so on, bring the formula interface to ggplot(). This captures
11077 and extends the excellent simplicity of the lattice-graphics formula interface,
11078 while providing the intuitive capabilities of @code{r-ggplot2}.")
11079 (license license:expat)))
11080
11081 (define-public r-mosaicdata
11082 (package
11083 (name "r-mosaicdata")
11084 (version "0.20.2")
11085 (source
11086 (origin
11087 (method url-fetch)
11088 (uri (cran-uri "mosaicData" version))
11089 (sha256
11090 (base32 "0h3f5fgzkzjfgf3ml0qa5j52921y6wy6jgggxmhs31bs8fd4srg4"))))
11091 (properties `((upstream-name . "mosaicData")))
11092 (build-system r-build-system)
11093 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
11094 (synopsis "Data sets for project Mosaic")
11095 (description
11096 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
11097 used to teach mathematics, statistics, computation and modeling.")
11098 (license license:gpl2+)))
11099
11100 (define-public r-raster
11101 (package
11102 (name "r-raster")
11103 (version "3.5-15")
11104 (source
11105 (origin
11106 (method url-fetch)
11107 (uri (cran-uri "raster" version))
11108 (sha256
11109 (base32
11110 "11fnznymwavpph733dayklhcx4phpjgrijfxlaszi122sg2x7ir9"))))
11111 (build-system r-build-system)
11112 (propagated-inputs
11113 (list r-rcpp r-sp r-terra))
11114 (home-page "https://www.rspatial.org/")
11115 (synopsis "Geographic data analysis and modeling")
11116 (description
11117 "The package implements basic and high-level functions for reading,
11118 writing, manipulating, analyzing and modeling of gridded spatial data.
11119 Processing of very large files is supported.")
11120 (license license:gpl3+)))
11121
11122 (define-public r-mosaic
11123 (package
11124 (name "r-mosaic")
11125 (version "1.8.3")
11126 (source
11127 (origin
11128 (method url-fetch)
11129 (uri (cran-uri "mosaic" version))
11130 (sha256
11131 (base32 "1y0isqbva0vi5zlx1xvixbq87n4xp66ljh43qnd0cpzaz0mn21cg"))))
11132 (build-system r-build-system)
11133 (propagated-inputs
11134 (list r-broom
11135 r-dplyr
11136 r-ggdendro
11137 r-ggformula
11138 r-ggplot2
11139 r-ggrepel
11140 r-ggridges
11141 r-ggstance
11142 r-glue
11143 r-gridextra
11144 r-lattice
11145 r-latticeextra
11146 r-leaflet
11147 r-mass
11148 r-matrix
11149 r-mosaiccore
11150 r-mosaicdata
11151 r-readr
11152 r-rlang
11153 r-tidyr))
11154 (native-inputs
11155 (list r-knitr))
11156 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
11157 (synopsis "Mathematics, statistics, and computation teaching utilities")
11158 (description
11159 "This package contain data sets and utilities from
11160 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
11161 statistics, computation and modeling. Project MOSAIC is a community of
11162 educators working to tie together aspects of quantitative work that students
11163 in science, technology, engineering and mathematics will need in their
11164 professional lives, but which are usually taught in isolation, if at all.")
11165 (license license:gpl2+)))
11166
11167 (define-public r-abd
11168 (package
11169 (name "r-abd")
11170 (version "0.2-8")
11171 (source
11172 (origin
11173 (method url-fetch)
11174 (uri (cran-uri "abd" version))
11175 (sha256
11176 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
11177 (build-system r-build-system)
11178 (propagated-inputs
11179 (list r-lattice r-mosaic r-nlme))
11180 (home-page "https://cran.r-project.org/web/packages/abd/")
11181 (synopsis "Analysis of biological data")
11182 (description
11183 "The @code{r-abd} package contains data sets and sample code for the Analysis of
11184 biological data by Michael Whitlock and Dolph Schluter.")
11185 (license license:gpl2)))
11186
11187 (define-public r-svgui
11188 (package
11189 (name "r-svgui")
11190 (version "1.0.1")
11191 (source
11192 (origin
11193 (method url-fetch)
11194 (uri (cran-uri "svGUI" version))
11195 (sha256
11196 (base32 "0ch5gdfk834xj9w3vxpm3x4770fz3nnlyn8b0jsw9f3n2as7g979"))))
11197 (properties `((upstream-name . "svGUI")))
11198 (build-system r-build-system)
11199 (native-inputs
11200 (list r-knitr))
11201 (home-page "https://github.com/SciViews/svGUI/")
11202 (synopsis "Functions for managing GUI clients in R")
11203 (description
11204 "The SciViews @code{svGUI} package eases the management of Graphical User
11205 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
11206 centralizes info about GUI elements currently used, and it dispatches GUI
11207 calls to the particular toolkits in use in function of the context.")
11208 (license license:gpl2)))
11209
11210 (define-public r-svdialogs
11211 (package
11212 (name "r-svdialogs")
11213 (version "1.1.0")
11214 (source
11215 (origin
11216 (method url-fetch)
11217 (uri (cran-uri "svDialogs" version))
11218 (sha256
11219 (base32 "0z3a5glsi0ab43mdk2yvslxyzg12nbqqqc35jvgzj475mpkbgjif"))))
11220 (properties `((upstream-name . "svDialogs")))
11221 (build-system r-build-system)
11222 (inputs
11223 (list yad zenity))
11224 (propagated-inputs
11225 (list r-rstudioapi r-svgui))
11226 (native-inputs
11227 (list r-knitr))
11228 (home-page "https://github.com/SciViews/svDialogs/")
11229 (synopsis "Portable dialog boxes")
11230 (description
11231 "This package helps to construct standard dialog boxes for your GUI, including
11232 message boxes, input boxes, list, file or directory selection, and others. In
11233 case R cannot display GUI dialog boxes, a simpler command line version of these
11234 interactive elements is also provided as a fallback solution.")
11235 (license license:gpl2)))
11236
11237 (define-public r-abe
11238 (package
11239 (name "r-abe")
11240 (version "3.0.1")
11241 (source
11242 (origin
11243 (method url-fetch)
11244 (uri (cran-uri "abe" version))
11245 (sha256
11246 (base32
11247 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
11248 (build-system r-build-system)
11249 (home-page "https://cran.r-project.org/web/packages/abe/")
11250 (synopsis "Augmented backward elimination")
11251 (description
11252 "This package performs augmented backward elimination and checks the
11253 stability of the obtained model. Augmented backward elimination combines
11254 significance or information based criteria with the change in estimate to
11255 either select the optimal model for prediction purposes or to serve as a tool
11256 to obtain a practically sound, highly interpretable model.")
11257 (license license:gpl2+)))
11258
11259 (define-public r-abf2
11260 (package
11261 (name "r-abf2")
11262 (version "0.7-1")
11263 (source
11264 (origin
11265 (method url-fetch)
11266 (uri (cran-uri "abf2" version))
11267 (sha256
11268 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
11269 (build-system r-build-system)
11270 (home-page "https://cran.r-project.org/web/packages/abf2/")
11271 (synopsis "Load gap-free axon @code{r-abf2} files")
11272 (description
11273 "This package loads electrophysiology data from ABF2 files, as created by
11274 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
11275 mode are currently supported.")
11276 (license license:artistic2.0)))
11277
11278 (define-public r-abhgenotyper
11279 (package
11280 (name "r-abhgenotyper")
11281 (version "1.0.1")
11282 (source
11283 (origin
11284 (method url-fetch)
11285 (uri (cran-uri "ABHgenotypeR" version))
11286 (sha256
11287 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
11288 (properties `((upstream-name . "ABHgenotypeR")))
11289 (build-system r-build-system)
11290 (propagated-inputs
11291 (list r-ggplot2 r-reshape2))
11292 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
11293 (synopsis "Visualize and manipulate ABH genotypes")
11294 (description
11295 "The @code{r-abhgenotyper} package provides simple imputation,
11296 error-correction and plotting capacities for genotype data. The package is
11297 supposed to serve as an intermediate but independent analysis tool between the
11298 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
11299 not found in either TASSEL or @code{r-qtl} in addition to visualization of
11300 genotypes as \"graphical genotypes\".")
11301 (license license:gpl3)))
11302
11303 (define-public r-furrr
11304 (package
11305 (name "r-furrr")
11306 (version "0.3.0")
11307 (source
11308 (origin
11309 (method url-fetch)
11310 (uri (cran-uri "furrr" version))
11311 (sha256
11312 (base32
11313 "117xj66l14r08macwghgyibzm282ljv1afpa133h952gc70irs9z"))))
11314 (build-system r-build-system)
11315 (propagated-inputs
11316 (list r-future
11317 r-globals
11318 r-lifecycle
11319 r-purrr
11320 r-rlang
11321 r-vctrs))
11322 (home-page "https://github.com/DavisVaughan/furrr")
11323 (synopsis "Apply mapping functions in parallel using futures")
11324 (description
11325 "This package provides implementations of the family of @code{map()}
11326 functions from the @code{purrr} package that can be resolved using any
11327 @code{future}-supported backend, e.g. parallel on the local machine or
11328 distributed on a compute cluster.")
11329 (license license:lgpl2.1+)))
11330
11331 (define-public r-abjutils
11332 (package
11333 (name "r-abjutils")
11334 (version "0.3.2")
11335 (source
11336 (origin
11337 (method url-fetch)
11338 (uri (cran-uri "abjutils" version))
11339 (sha256
11340 (base32 "0lmf4va8qnzwg698i2h4fcwvd6dhsgdkqsfh41aa3wg1flimhsr7"))))
11341 (build-system r-build-system)
11342 (propagated-inputs
11343 (list r-dplyr
11344 r-magrittr
11345 r-purrr
11346 r-rlang
11347 r-rstudioapi
11348 r-stringi
11349 r-stringr
11350 r-tidyr))
11351 (home-page "https://github.com/abjur/abjutils/")
11352 (synopsis "Collection of tools for jurimetrical analysis")
11353 (description
11354 "This package implements general purpose tools, such as functions for
11355 sampling and basic manipulation of Brazilian lawsuits identification number.
11356 It also implements functions for text cleaning, such as accentuation
11357 removal.")
11358 (license license:expat)))
11359
11360 (define-public r-abnormality
11361 (package
11362 (name "r-abnormality")
11363 (version "0.1.0")
11364 (source
11365 (origin
11366 (method url-fetch)
11367 (uri (cran-uri "abnormality" version))
11368 (sha256
11369 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
11370 (build-system r-build-system)
11371 (propagated-inputs
11372 (list r-mass r-matrix))
11373 (home-page "https://cran.r-project.org/web/packages/abnormality/")
11374 (synopsis "Measure a subject's abnormality with respect to a reference population")
11375 (description
11376 "This package contains functions to implement the methodology and
11377 considerations laid out by Marks et al. in the article \"Measuring abnormality
11378 in high dimensional spaces: applications in biomechanical gait analysis\".
11379 Using high-dimensional datasets to measure a subject's overall level of
11380 abnormality as compared to a reference population is often needed in outcomes
11381 research.")
11382 (license license:expat)))
11383
11384 (define-public r-abodoutlier
11385 (package
11386 (name "r-abodoutlier")
11387 (version "0.1")
11388 (source
11389 (origin
11390 (method url-fetch)
11391 (uri (cran-uri "abodOutlier" version))
11392 (sha256
11393 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
11394 (properties `((upstream-name . "abodOutlier")))
11395 (build-system r-build-system)
11396 (propagated-inputs
11397 (list r-cluster))
11398 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
11399 (synopsis "Angle-based outlier detection")
11400 (description
11401 "This package performs angle-based outlier detection on a given data
11402 frame. It offers three methods to process data:
11403 @enumerate
11404 @item full but slow implementation using all the data that has cubic
11405 complexity;
11406 @item a fully randomized method;
11407 @item a method using k-nearest neighbours.
11408 @end enumerate
11409 These algorithms are well suited for high dimensional data outlier
11410 detection.")
11411 (license license:expat)))
11412
11413 (define-public r-abps
11414 (package
11415 (name "r-abps")
11416 (version "0.3")
11417 (source
11418 (origin
11419 (method url-fetch)
11420 (uri (cran-uri "ABPS" version))
11421 (sha256
11422 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
11423 (properties `((upstream-name . "ABPS")))
11424 (build-system r-build-system)
11425 (propagated-inputs (list r-kernlab))
11426 (home-page "https://cran.r-project.org/web/packages/ABPS/")
11427 (synopsis "Abnormal blood profile score to detect blood doping")
11428 (description
11429 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
11430 The ABPS is a part of the Athlete biological passport program of the World
11431 anti-doping agency, which combines several blood parameters into a single
11432 score in order to detect blood doping. The package also contains functions to
11433 calculate other scores used in anti-doping programs, such as the ratio of
11434 hemoglobin to reticulocytes (OFF-score), as well as example data.")
11435 (license license:gpl2+)))
11436
11437 (define-public r-parmigene
11438 (package
11439 (name "r-parmigene")
11440 (version "1.1.0")
11441 (source
11442 (origin
11443 (method url-fetch)
11444 (uri (cran-uri "parmigene" version))
11445 (sha256
11446 (base32
11447 "067rqxqyzy1fsjj0s1g7af4527whwdhzjzc5b8a8n7683na59ns4"))))
11448 (build-system r-build-system)
11449 (home-page "https://cran.r-project.org/web/packages/parmigene/")
11450 (synopsis "Mutual information estimation for gene network reconstruction")
11451 (description
11452 "This package provides a parallel estimation of the mutual information
11453 based on entropy estimates from k-nearest neighbors distances and algorithms
11454 for the reconstruction of gene regulatory networks.")
11455 (license license:agpl3+)))
11456
11457 (define-public r-pscl
11458 (package
11459 (name "r-pscl")
11460 (version "1.5.5")
11461 (source
11462 (origin
11463 (method url-fetch)
11464 (uri (cran-uri "pscl" version))
11465 (sha256
11466 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
11467 (build-system r-build-system)
11468 (propagated-inputs
11469 (list r-mass))
11470 (home-page "https://github.com/atahk/pscl/")
11471 (synopsis "Political science computational laboratory")
11472 (description
11473 "The @code{pscl} is an R package providing classes and methods for:
11474 @enumerate
11475 @item Bayesian analysis of roll call data (item-response models);
11476 @item elementary Bayesian statistics;
11477 @item maximum likelihood estimation of zero-inflated and hurdle models for count
11478 data;
11479 @item utility functions.
11480 @end enumerate")
11481 (license license:gpl2)))
11482
11483 (define-public r-accelmissing
11484 (package
11485 (name "r-accelmissing")
11486 (version "1.4")
11487 (source
11488 (origin
11489 (method url-fetch)
11490 (uri (cran-uri "accelmissing" version))
11491 (sha256
11492 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
11493 (build-system r-build-system)
11494 (propagated-inputs
11495 (list r-mice r-pscl))
11496 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
11497 (synopsis "Missing value imputation for accelerometer data")
11498 (description
11499 "This package provides a statistical method to impute the missing values in
11500 accelerometer data. The methodology includes both parametric and
11501 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
11502 model. It also provides multiple functions to preprocess the accelerometer data
11503 previous to the missing data imputation. These include detecting the wearing
11504 and the non-wearing time, selecting valid days and subjects, and creating plots.")
11505 (license license:gpl2+)))
11506
11507 (define-public r-mhsmm
11508 (package
11509 (name "r-mhsmm")
11510 (version "0.4.16")
11511 (source
11512 (origin
11513 (method url-fetch)
11514 (uri (cran-uri "mhsmm" version))
11515 (sha256
11516 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
11517 (build-system r-build-system)
11518 (propagated-inputs (list r-mvtnorm))
11519 (home-page "https://github.com/jaredo/mhsmm/")
11520 (synopsis "Inference for hidden Markov and semi-Markov models")
11521 (description
11522 "The @code{r-mhsmm} package implements estimation and prediction methods for
11523 hidden Markov and semi-Markov models for multiple observation sequences. Such
11524 techniques are of interest when observed data is thought to be dependent on some
11525 unobserved (or hidden) state. Also, this package is suitable for equidistant
11526 time series data, with multivariate and/or missing data. Allows user defined
11527 emission distributions.")
11528 (license license:gpl2+)))
11529
11530 (define-public r-nleqslv
11531 (package
11532 (name "r-nleqslv")
11533 (version "3.3.2")
11534 (source
11535 (origin
11536 (method url-fetch)
11537 (uri (cran-uri "nleqslv" version))
11538 (sha256
11539 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
11540 (build-system r-build-system)
11541 (native-inputs (list gfortran))
11542 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
11543 (synopsis "Solve systems of nonlinear equations")
11544 (description
11545 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
11546 Broyden or a Newton method with a choice of global strategies such as line
11547 search and trust region. There are options for using a numerical or user
11548 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
11549 singular or ill-conditioned Jacobian.")
11550 (license license:gpl2+)))
11551
11552 (define-public r-physicalactivity
11553 (package
11554 (name "r-physicalactivity")
11555 (version "0.2-4")
11556 (source
11557 (origin
11558 (method url-fetch)
11559 (uri (cran-uri "PhysicalActivity" version))
11560 (sha256
11561 (base32 "0b27prkv3x6v2afz0y53ccs9scibpc7nj54n0hpd9fgn1wyg4c40"))))
11562 (properties
11563 `((upstream-name . "PhysicalActivity")))
11564 (build-system r-build-system)
11565 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
11566 (synopsis "Processing accelerometer data for physical activity measurement")
11567 (description
11568 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
11569 for classification of monitored wear and nonwear time intervals in accelerometer
11570 data collected to assess physical activity. The package also contains functions
11571 for making plots of accelerometer data and obtaining the summary of various
11572 information including daily monitor wear time and the mean monitor wear time
11573 during valid days. The revised package version 0.2-1 improved the functions
11574 regarding speed, robustness and add better support for time zones and daylight
11575 saving. In addition, several functions were added:
11576 @enumerate
11577 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
11578 @item the @code{markPAI} can categorize physical activity intensity level based
11579 on user-defined cut-points of accelerometer counts.
11580 @end enumerate
11581 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
11582 @code{queryActigraph} functions.")
11583 (license license:gpl3+)))
11584
11585 (define-public r-acc
11586 (package
11587 (name "r-acc")
11588 (version "1.3.3")
11589 (source
11590 (origin
11591 (method url-fetch)
11592 (uri (cran-uri "acc" version))
11593 (sha256
11594 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
11595 (build-system r-build-system)
11596 (propagated-inputs
11597 (list r-circlize
11598 r-dbi
11599 r-ggplot2
11600 r-iterators
11601 r-mhsmm
11602 r-nleqslv
11603 r-physicalactivity
11604 r-plyr
11605 r-r-utils
11606 r-rcpp
11607 r-rcpparmadillo
11608 r-rsqlite
11609 r-zoo))
11610 (home-page "https://cran.r-project.org/web/packages/acc/")
11611 (synopsis "Exploring accelerometer data")
11612 (description
11613 "This package processes accelerometer data from uni-axial and tri-axial devices
11614 and generates data summaries. Also, includes functions to plot, analyze, and
11615 simulate accelerometer data.")
11616 (license license:gpl2+)))
11617
11618 (define-public r-rbenchmark
11619 (package
11620 (name "r-rbenchmark")
11621 (version "1.0.0")
11622 (source
11623 (origin
11624 (method url-fetch)
11625 (uri (cran-uri "rbenchmark" version))
11626 (sha256
11627 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
11628 (build-system r-build-system)
11629 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
11630 (synopsis "Benchmarking routine for R")
11631 (description
11632 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
11633 and is intended to facilitate benchmarking of arbitrary R code. The library
11634 consists of just one function, benchmark, which is a simple wrapper around
11635 system.time. Given a specification of the benchmarking process (counts of
11636 replications, evaluation environment) and an arbitrary number of expressions,
11637 benchmark evaluates each of the expressions in the specified environment,
11638 replicating the evaluation as many times as specified, and returning the results
11639 conveniently wrapped into a data frame.")
11640 (license license:gpl2+)))
11641
11642 (define-public r-mitools
11643 (package
11644 (name "r-mitools")
11645 (version "2.4")
11646 (source
11647 (origin
11648 (method url-fetch)
11649 (uri (cran-uri "mitools" version))
11650 (sha256
11651 (base32
11652 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
11653 (build-system r-build-system)
11654 (propagated-inputs (list r-dbi))
11655 (home-page "https://cran.r-project.org/web/packages/mitools/")
11656 (synopsis "Tools for multiple imputation of missing data")
11657 (description
11658 "This package provides tools to perform analyses and combine results from
11659 multiple-imputation datasets.")
11660 (license license:gpl2)))
11661
11662 (define-public r-mixsqp
11663 (package
11664 (name "r-mixsqp")
11665 (version "0.3-43")
11666 (source (origin
11667 (method url-fetch)
11668 (uri (cran-uri "mixsqp" version))
11669 (sha256
11670 (base32
11671 "1qics04w0swyp216d6g8dmsph8q2kpadpacp66h2qih3521js12q"))))
11672 (properties `((upstream-name . "mixsqp")))
11673 (build-system r-build-system)
11674 (propagated-inputs
11675 (list r-irlba r-rcpp r-rcpparmadillo))
11676 (native-inputs
11677 (list r-knitr))
11678 (home-page "https://github.com/stephenslab/mixsqp")
11679 (synopsis
11680 "Sequential quadratic programming for maximum-likelihood estimation")
11681 (description
11682 "This package provides an optimization method based on sequential
11683 quadratic programming for maximum likelihood estimation of the mixture
11684 proportions in a finite mixture model where the component densities are
11685 known. The algorithm is expected to obtain solutions that are at least
11686 as accurate as the state-of-the-art MOSEK interior-point solver, and they
11687 are expected to arrive at solutions more quickly when the number of
11688 samples is large and the number of mixture components is not too large.")
11689 (license license:expat)))
11690
11691 (define-public r-magick
11692 (package
11693 (name "r-magick")
11694 (version "2.7.3")
11695 (source
11696 (origin
11697 (method url-fetch)
11698 (uri (cran-uri "magick" version))
11699 (sha256
11700 (base32
11701 "0h942bn7wfnzbbgq9hrs75c7igmg5r1c5sad2v0znhza4cp7p1w3"))))
11702 (build-system r-build-system)
11703 (inputs
11704 (list imagemagick zlib))
11705 (propagated-inputs
11706 (list r-curl r-magrittr r-rcpp))
11707 (native-inputs
11708 (list pkg-config r-knitr))
11709 (home-page "https://github.com/ropensci/magick")
11710 (synopsis "Advanced graphics and image-processing in R")
11711 (description
11712 "This package provides bindings to ImageMagick, a comprehensive image
11713 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
11714 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
11715 operations are vectorized via the Magick++ STL meaning they operate either on
11716 a single frame or a series of frames for working with layers, collages, or
11717 animation. In RStudio, images are automatically previewed when printed to the
11718 console, resulting in an interactive editing environment.")
11719 (license license:expat)))
11720
11721 (define-public r-survey
11722 (package
11723 (name "r-survey")
11724 (version "4.1-1")
11725 (source
11726 (origin
11727 (method url-fetch)
11728 (uri (cran-uri "survey" version))
11729 (sha256
11730 (base32
11731 "0ljsszybzri531q6xab04r6zq11vchfs7y0snjzk57m3g0b9ms05"))))
11732 (build-system r-build-system)
11733 (propagated-inputs
11734 (list r-lattice
11735 r-matrix
11736 r-minqa
11737 r-mitools
11738 r-numderiv
11739 r-survival))
11740 (home-page "http://r-survey.r-forge.r-project.org/survey/")
11741 (synopsis "Analysis of complex survey samples")
11742 (description
11743 "This package provides tools for the analysis of complex survey samples.
11744 The provided features include: summary statistics, two-sample tests, rank
11745 tests, generalised linear models, cumulative link models, Cox models,
11746 loglinear models, and general maximum pseudolikelihood estimation for
11747 multistage stratified, cluster-sampled, unequally weighted survey samples;
11748 variances by Taylor series linearisation or replicate weights;
11749 post-stratification, calibration, and raking; two-phase subsampling designs;
11750 graphics; PPS sampling without replacement; principal components, and factor
11751 analysis.")
11752 ;; Either version of the GPL.
11753 (license (list license:gpl2 license:gpl3))))
11754
11755 (define-public r-gee
11756 (package
11757 (name "r-gee")
11758 (version "4.13-22")
11759 (source
11760 (origin
11761 (method url-fetch)
11762 (uri (cran-uri "gee" version))
11763 (sha256
11764 (base32
11765 "1wbwn7bjqz09l6clh43dy3x5qgv9b9wwn7xnfw9fkkrhn6rvc3rw"))))
11766 (properties `((upstream-name . "gee")))
11767 (build-system r-build-system)
11768 (native-inputs
11769 (list gfortran))
11770 (home-page "https://cran.r-project.org/web/packages/gee/")
11771 (synopsis "Generalized estimation equation solver")
11772 (description
11773 "This package provides a solver for generalized estimation equations.")
11774 (license license:gpl2)))
11775
11776 (define-public r-tab
11777 (package
11778 (name "r-tab")
11779 (version "5.1.1")
11780 (source
11781 (origin
11782 (method url-fetch)
11783 (uri (cran-uri "tab" version))
11784 (sha256
11785 (base32
11786 "1kg8c1safi9klkx2mdkmsf5dn9piy4jljwd4ma7g4jz2rwl4jzhv"))))
11787 (properties `((upstream-name . "tab")))
11788 (build-system r-build-system)
11789 (propagated-inputs
11790 (list r-dplyr r-kableextra r-knitr r-mass r-survey))
11791 (native-inputs
11792 (list r-knitr))
11793 (home-page "https://cran.r-project.org/web/packages/tab/")
11794 (synopsis "Create summary tables for statistical reports")
11795 (description
11796 "This package contains functions for creating various types of summary
11797 tables, e.g. comparing characteristics across levels of a categorical variable
11798 and summarizing fitted generalized linear models, generalized estimating
11799 equations, and Cox proportional hazards models. Functions are available to
11800 handle data from simple random samples as well as complex surveys.")
11801 (license license:gpl3+)))
11802
11803 (define-public r-dvmisc
11804 (package
11805 (name "r-dvmisc")
11806 (version "1.1.4")
11807 (source
11808 (origin
11809 (method url-fetch)
11810 (uri (cran-uri "dvmisc" version))
11811 (sha256
11812 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
11813 (build-system r-build-system)
11814 (propagated-inputs
11815 (list r-cubature
11816 r-data-table
11817 r-dplyr
11818 r-ggplot2
11819 r-mass
11820 r-mvtnorm
11821 r-pracma
11822 r-rbenchmark
11823 r-rcpp
11824 r-survey
11825 r-tab))
11826 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
11827 (synopsis "Faster computation of common statistics and miscellaneous functions")
11828 (description
11829 "This package implements faster versions of base R functions (e.g. mean, standard
11830 deviation, covariance, weighted mean), mostly written in C++, along with
11831 miscellaneous functions for various purposes (e.g. create the histogram with
11832 fitted probability density function or probability mass function curve, create
11833 the body mass index groups, assess the linearity assumption in logistic
11834 regression).")
11835 (license license:gpl2)))
11836
11837 (define-public r-accelerometry
11838 (package
11839 (name "r-accelerometry")
11840 (version "3.1.2")
11841 (source
11842 (origin
11843 (method url-fetch)
11844 (uri (cran-uri "accelerometry" version))
11845 (sha256
11846 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
11847 (build-system r-build-system)
11848 (propagated-inputs
11849 (list r-dvmisc r-rcpp))
11850 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
11851 (synopsis "Functions for processing accelerometer data")
11852 (description
11853 "This package provides a collection of functions that perform operations on
11854 time-series accelerometer data, such as identify the non-wear time, flag minutes
11855 that are part of an activity bout, and find the maximum 10-minute average count
11856 value. The functions are generally very flexible, allowing for a variety of
11857 algorithms to be implemented.")
11858 (license license:gpl3)))
11859
11860 (define-public r-absim
11861 (package
11862 (name "r-absim")
11863 (version "0.2.6")
11864 (source
11865 (origin
11866 (method url-fetch)
11867 (uri (cran-uri "AbSim" version))
11868 (sha256
11869 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
11870 (properties `((upstream-name . "AbSim")))
11871 (build-system r-build-system)
11872 (propagated-inputs
11873 (list r-ape r-powerlaw))
11874 (home-page "https://cran.r-project.org/web/packages/AbSim/")
11875 (synopsis "Time resolved simulations of antibody repertoires")
11876 (description
11877 "This package provides simulation methods for the evolution of antibody repertoires.
11878 The heavy and light chain variable region of both human and C57BL/6 mice can
11879 be simulated in a time-dependent fashion. Both single lineages using one set of
11880 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
11881 with an initial V-D-J recombination event, starting the first phylogenetic tree.
11882 Upon completion, the main loop of the algorithm begins, with each iteration
11883 representing one simulated time step. Various mutation events are possible at
11884 each time step, contributing to a diverse final repertoire.")
11885 (license license:gpl2)))
11886
11887 (define-public r-quic
11888 (package
11889 (name "r-quic")
11890 (version "1.1")
11891 (source
11892 (origin
11893 (method url-fetch)
11894 (uri (cran-uri "QUIC" version))
11895 (sha256
11896 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
11897 (properties `((upstream-name . "QUIC")))
11898 (build-system r-build-system)
11899 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
11900 (synopsis "Regularized sparse inverse covariance matrix estimation")
11901 (description
11902 "This package implements the regularized Gaussian maximum likelihood
11903 estimation of the inverse of a covariance matrix. It uses Newton's method and
11904 coordinate descent to solve the regularized inverse covariance matrix
11905 estimation problem.")
11906 ;; The project home page states that the release is under GPLv3 or later.
11907 ;; The CRAN page only says GPL-3.
11908 (license license:gpl3+)))
11909
11910 (define-public r-abundant
11911 (package
11912 (name "r-abundant")
11913 (version "1.2")
11914 (source
11915 (origin
11916 (method url-fetch)
11917 (uri (cran-uri "abundant" version))
11918 (sha256
11919 (base32 "15m3ngj5aipjg961yy5kvdg9xlfcpliw30dq6gchzxabhnfzcipd"))))
11920 (build-system r-build-system)
11921 (propagated-inputs
11922 (list r-glasso))
11923 (home-page "https://cran.r-project.org/web/packages/abundant/")
11924 (synopsis "Abundant regression and high-dimensional principal fitted components")
11925 (description
11926 "This package provides tools to fit and predict with the high-dimensional
11927 principal fitted components model. This model is described by Cook, Forzani,
11928 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
11929 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
11930 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
11931 (license license:gpl2+)))
11932
11933 (define-public r-ac3net
11934 (package
11935 (name "r-ac3net")
11936 (version "1.2.2")
11937 (source
11938 (origin
11939 (method url-fetch)
11940 (uri (cran-uri "Ac3net" version))
11941 (sha256
11942 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
11943 (properties `((upstream-name . "Ac3net")))
11944 (build-system r-build-system)
11945 (propagated-inputs
11946 (list r-data-table))
11947 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
11948 (synopsis "Inferring directional conservative causal core gene networks")
11949 (description "This package infers directional Conservative causal core
11950 (gene) networks (C3NET). This is a version of the algorithm C3NET with
11951 directional network.")
11952 (license license:gpl3+)))
11953
11954 (define-public r-aca
11955 (package
11956 (name "r-aca")
11957 (version "1.1")
11958 (source
11959 (origin
11960 (method url-fetch)
11961 (uri (cran-uri "ACA" version))
11962 (sha256
11963 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
11964 (properties `((upstream-name . "ACA")))
11965 (build-system r-build-system)
11966 (home-page "https://cran.r-project.org/web/packages/ACA/")
11967 (synopsis "Abrupt change-point or aberration detection in point series")
11968 (description
11969 "This package offers an interactive function for the detection of breakpoints in
11970 series.")
11971 ;; Any version of the GPL
11972 (license (list license:gpl2+ license:gpl3+))))
11973
11974 (define-public r-acceptancesampling
11975 (package
11976 (name "r-acceptancesampling")
11977 (version "1.0-8")
11978 (source
11979 (origin
11980 (method url-fetch)
11981 (uri (cran-uri "AcceptanceSampling" version))
11982 (sha256
11983 (base32 "1ja1g0v8qvf7yj81x37wc6i7fkwpc573756jgvazazi8yf1gm12p"))))
11984 (properties
11985 `((upstream-name . "AcceptanceSampling")))
11986 (build-system r-build-system)
11987 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
11988 (synopsis "Creation and evaluation of acceptance sampling plans")
11989 (description
11990 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
11991 acceptance sampling plans. Acceptance sampling is a methodology commonly used
11992 in quality control and improvement. International standards of acceptance
11993 sampling provide sampling plans for specific circumstances. The aim of this
11994 package is to provide an easy-to-use interface to visualize single, double or
11995 multiple sampling plans. In addition, methods have been provided to enable the
11996 user to assess sampling plans against pre-specified levels of performance, as
11997 measured by the probability of acceptance for a given level of quality in the
11998 lot.")
11999 (license license:gpl3+)))
12000
12001 (define-public r-acclma
12002 (package
12003 (name "r-acclma")
12004 (version "1.0")
12005 (source
12006 (origin
12007 (method url-fetch)
12008 (uri (cran-uri "ACCLMA" version))
12009 (sha256
12010 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
12011 (properties `((upstream-name . "ACCLMA")))
12012 (build-system r-build-system)
12013 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
12014 (synopsis "ACC & LMA graph plotting")
12015 (description
12016 "This package contains a function that imports data from a @acronym{CSV,
12017 Comma-Separated Values} file, or uses manually entered data from the format (x,
12018 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
12019 Curve} vs @acronym{LOI, Line of Independence} graph and
12020 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
12021 function is @code{plotLMA} (source file, header) that takes a data set and plots the
12022 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
12023 string) was passed, a manual data entry window is opened. The header parameter
12024 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
12025 a header row or not. The dataset should contain only one independent variable
12026 (x) and one dependent variable (y) and can contain a weight for each
12027 observation.")
12028 (license license:gpl2)))
12029
12030 (define-public r-aspi
12031 (package
12032 (name "r-aspi")
12033 (version "0.2.0")
12034 (source
12035 (origin
12036 (method url-fetch)
12037 (uri (cran-uri "aspi" version))
12038 (sha256
12039 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
12040 (build-system r-build-system)
12041 (home-page
12042 "https://cran.r-project.org/web/packages/aspi/")
12043 (synopsis
12044 "Analysis of symmetry of parasitic infections")
12045 (description
12046 "This package provides tools for the analysis and visualization of bilateral
12047 asymmetry in parasitic infections.")
12048 (license license:gpl3+)))
12049
12050 (define-public r-sandwich
12051 (package
12052 (name "r-sandwich")
12053 (version "3.0-1")
12054 (source
12055 (origin
12056 (method url-fetch)
12057 (uri (cran-uri "sandwich" version))
12058 (sha256
12059 (base32
12060 "12aa5083k3sfrfq1jy3l94wffss9h0rga8j71jy3n8pkhiq4nn7n"))))
12061 (build-system r-build-system)
12062 (propagated-inputs
12063 (list r-zoo))
12064 (home-page "https://cran.r-project.org/web/packages/sandwich/")
12065 (synopsis "Robust Covariance Matrix Estimators")
12066 (description
12067 "This package provides model-robust standard error estimators for
12068 cross-sectional, time series, clustered, panel, and longitudinal data.")
12069 ;; Either version of the license.
12070 (license (list license:gpl2 license:gpl3))))
12071
12072 (define-public r-th-data
12073 (package
12074 (name "r-th-data")
12075 (version "1.1-1")
12076 (source
12077 (origin
12078 (method url-fetch)
12079 (uri (cran-uri "TH.data" version))
12080 (sha256
12081 (base32
12082 "0ynxacnz002bjsp2ybql7rdqw4zd14af8r7w44nwbx22n4bapwzd"))))
12083 (properties `((upstream-name . "TH.data")))
12084 (build-system r-build-system)
12085 (propagated-inputs
12086 (list r-mass r-survival))
12087 (native-inputs
12088 (list r-knitr))
12089 (home-page "https://cran.r-project.org/web/packages/TH.data/")
12090 (synopsis "Shared data sets")
12091 (description
12092 "This package contains supporting data sets that are used in other
12093 packages maintained by Torsten Hothorn.")
12094 (license license:gpl3)))
12095
12096 (define-public r-multcomp
12097 (package
12098 (name "r-multcomp")
12099 (version "1.4-19")
12100 (source
12101 (origin
12102 (method url-fetch)
12103 (uri (cran-uri "multcomp" version))
12104 (sha256
12105 (base32
12106 "0mz5wdqrqpp2gqijfpp9rgfbq8yvxki4is8fbbc4qwdwryqp6d7h"))))
12107 (build-system r-build-system)
12108 (propagated-inputs
12109 (list r-codetools r-mvtnorm r-sandwich r-survival r-th-data))
12110 (home-page "https://cran.r-project.org/web/packages/multcomp/")
12111 (synopsis "Simultaneous inference in general parametric models")
12112 (description
12113 "Simultaneous tests and confidence intervals for general linear
12114 hypotheses in parametric models, including linear, generalized linear, linear
12115 mixed effects, and survival models. The package includes demos reproducing
12116 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
12117 Hothorn, Westfall, 2010, CRC Press).")
12118 (license license:gpl2)))
12119
12120 (define-public r-multcompview
12121 (package
12122 (name "r-multcompview")
12123 (version "0.1-8")
12124 (source
12125 (origin
12126 (method url-fetch)
12127 (uri (cran-uri "multcompView" version))
12128 (sha256
12129 (base32 "1rfq9wvvrghq0542ff40wy8vdmsyd8spzz6ihcywcvxdfa8m6g8j"))))
12130 (properties `((upstream-name . "multcompView")))
12131 (build-system r-build-system)
12132 (home-page "https://cran.r-project.org/package=multcompView")
12133 (synopsis "Visualizations of paired comparisons")
12134 (description
12135 "Convert a logical vector or a vector of p-values or a correlation,
12136 difference, or distance matrix into a display identifying the pairs for which
12137 the differences were not significantly different.")
12138 ;; Any version of the GPL.
12139 (license license:gpl3+)))
12140
12141 (define-public r-emmeans
12142 (package
12143 (name "r-emmeans")
12144 (version "1.7.4-1")
12145 (source
12146 (origin
12147 (method url-fetch)
12148 (uri (cran-uri "emmeans" version))
12149 (sha256
12150 (base32
12151 "08g7ifqhwqa00hc850nwx03dp7isz0281ig6kvixc4xdahmkm8zp"))))
12152 (build-system r-build-system)
12153 (propagated-inputs
12154 (list r-estimability r-mvtnorm r-numderiv r-xtable))
12155 (native-inputs
12156 (list r-knitr))
12157 (home-page "https://github.com/rvlenth/emmeans")
12158 (synopsis "Estimated marginal means, aka least-squares means")
12159 (description
12160 "This package provides tools to obtain @dfn{estimated marginal
12161 means} (EMMs) for many linear, generalized linear, and mixed models. It can
12162 be used to compute contrasts or linear functions of EMMs, trends, and
12163 comparisons of slopes.")
12164 ;; Either version of the license.
12165 (license (list license:gpl2 license:gpl3))))
12166
12167 (define-public r-pwr
12168 (package
12169 (name "r-pwr")
12170 (version "1.3-0")
12171 (source
12172 (origin
12173 (method url-fetch)
12174 (uri (cran-uri "pwr" version))
12175 (sha256
12176 (base32
12177 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
12178 (build-system r-build-system)
12179 (native-inputs
12180 (list r-knitr))
12181 (home-page "https://github.com/heliosdrm/pwr")
12182 (synopsis "Basic functions for power analysis")
12183 (description
12184 "This package provides power analysis functions along the lines of
12185 Cohen (1988).")
12186 (license license:gpl3+)))
12187
12188 (define-public r-libcoin
12189 (package
12190 (name "r-libcoin")
12191 (version "1.0-9")
12192 (source
12193 (origin
12194 (method url-fetch)
12195 (uri (cran-uri "libcoin" version))
12196 (sha256
12197 (base32 "1syrcdj5qg5m3zd3dlxgpfklswbalfg42w058dr09hnzqsvx0z9d"))))
12198 (build-system r-build-system)
12199 (propagated-inputs (list r-mvtnorm))
12200 (home-page "https://cran.r-project.org/web/packages/libcoin")
12201 (synopsis "Linear test statistics for permutation inference")
12202 (description
12203 "This package provides basic infrastructure for linear test statistics
12204 and permutation inference in the framework of Strasser and Weber (1999).")
12205 (license license:gpl2)))
12206
12207 (define-public r-coin
12208 (package
12209 (name "r-coin")
12210 (version "1.4-2")
12211 (source
12212 (origin
12213 (method url-fetch)
12214 (uri (cran-uri "coin" version))
12215 (sha256
12216 (base32
12217 "1cpv7jx840inzg98bkhrb5yscx0gpag6br237r5qpnc2gbrd2ikm"))))
12218 (build-system r-build-system)
12219 (propagated-inputs
12220 (list r-libcoin
12221 r-matrixstats
12222 r-modeltools
12223 r-multcomp
12224 r-mvtnorm
12225 r-survival))
12226 (home-page "http://coin.r-forge.r-project.org")
12227 (synopsis "Conditional inference procedures in a permutation test framework")
12228 (description
12229 "This package provides conditional inference procedures for the general
12230 independence problem including two-sample, K-sample (non-parametric ANOVA),
12231 correlation, censored, ordered and multivariate problems.")
12232 (license license:gpl2)))
12233
12234 (define-public r-bayesplot
12235 (package
12236 (name "r-bayesplot")
12237 (version "1.9.0")
12238 (source
12239 (origin
12240 (method url-fetch)
12241 (uri (cran-uri "bayesplot" version))
12242 (sha256
12243 (base32
12244 "0hqy597ang53phxnl084hak35ffqz9lw9hygax7370gpkjws908a"))))
12245 (build-system r-build-system)
12246 (inputs
12247 (list pandoc))
12248 (native-inputs
12249 (list r-knitr))
12250 (propagated-inputs
12251 (list r-dplyr
12252 r-ggplot2
12253 r-ggridges
12254 r-glue
12255 r-posterior
12256 r-reshape2
12257 r-rlang
12258 r-tibble
12259 r-tidyselect))
12260 (home-page "https://mc-stan.org/bayesplot")
12261 (synopsis "Plotting for Bayesian models")
12262 (description
12263 "This package provides plotting functions for posterior analysis, model
12264 checking, and MCMC diagnostics. The package is designed not only to provide
12265 convenient functionality for users, but also a common set of functions that
12266 can be easily used by developers working on a variety of R packages for
12267 Bayesian modeling.")
12268 (license license:gpl3+)))
12269
12270 (define-public r-tmb
12271 (package
12272 (name "r-tmb")
12273 (version "1.9.0")
12274 (source
12275 (origin
12276 (method url-fetch)
12277 (uri (cran-uri "TMB" version))
12278 (sha256
12279 (base32
12280 "1mr5vwamw6ag1fhd83jyy6015296908qwshwq0fcphhiv60x579c"))))
12281 (properties `((upstream-name . "TMB")))
12282 (build-system r-build-system)
12283 (propagated-inputs
12284 (list r-matrix r-rcppeigen))
12285 (home-page "http://tmb-project.org")
12286 (synopsis "Template model builder: a general random effect tool")
12287 (description
12288 "With this tool, a user should be able to quickly implement complex
12289 random effect models through simple C++ templates. The package combines
12290 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
12291 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
12292 from R) to obtain an efficient implementation of the applied Laplace
12293 approximation with exact derivatives. Key features are: Automatic sparseness
12294 detection, parallelism through BLAS and parallel user templates.")
12295 (license license:gpl2)))
12296
12297 (define-public r-sjstats
12298 (package
12299 (name "r-sjstats")
12300 (version "0.18.1")
12301 (source
12302 (origin
12303 (method url-fetch)
12304 (uri (cran-uri "sjstats" version))
12305 (sha256
12306 (base32 "1cv80yjnyh6qihxf57zivihhia20gibr5f03x8aspy6382wnwlka"))))
12307 (build-system r-build-system)
12308 (propagated-inputs
12309 (list r-bayestestr
12310 r-broom
12311 r-dplyr
12312 r-effectsize
12313 r-emmeans
12314 r-insight
12315 r-lme4
12316 r-magrittr
12317 r-mass
12318 r-modelr
12319 r-parameters
12320 r-performance
12321 r-purrr
12322 r-rlang
12323 r-sjlabelled
12324 r-sjmisc
12325 r-tidyr))
12326 (home-page "https://github.com/strengejacke/sjstats")
12327 (synopsis "Functions for common statistical computations")
12328 (description
12329 "This package provides a collection of convenient functions for common
12330 statistical computations, which are not directly provided by R's @code{base}
12331 or @code{stats} packages. This package aims at providing, first, shortcuts
12332 for statistical measures, which otherwise could only be calculated with
12333 additional effort. Second, these shortcut functions are generic, and can be
12334 applied not only to vectors, but also to other objects as well. The focus of
12335 most functions lies on summary statistics or fit measures for regression
12336 models, including generalized linear models, mixed effects models and Bayesian
12337 models.")
12338 (license license:gpl3)))
12339
12340 (define-public r-glmmtmb
12341 (package
12342 (name "r-glmmtmb")
12343 (version "1.1.3")
12344 (source
12345 (origin
12346 (method url-fetch)
12347 (uri (cran-uri "glmmTMB" version))
12348 (sha256
12349 (base32
12350 "0xdjc3gx0cj098rrjzlsy9cccxzfvn029xh4ycpya4xjhxsykldr"))))
12351 (properties `((upstream-name . "glmmTMB")))
12352 (build-system r-build-system)
12353 (propagated-inputs
12354 (list r-lme4
12355 r-matrix
12356 r-nlme
12357 r-numderiv
12358 r-rcppeigen
12359 r-tmb))
12360 (native-inputs
12361 (list r-knitr r-rmarkdown)) ; for vignettes
12362 (home-page "https://github.com/glmmTMB")
12363 (synopsis "Generalized linear mixed models")
12364 (description
12365 "Fit linear and generalized linear mixed models with various extensions,
12366 including zero-inflation. The models are fitted using maximum likelihood
12367 estimation via the Template Model Builder. Random effects are assumed to be
12368 Gaussian on the scale of the linear predictor and are integrated out using the
12369 Laplace approximation. Gradients are calculated using automatic
12370 differentiation.")
12371 (license license:agpl3+)))
12372
12373 (define-public r-bayestestr
12374 (package
12375 (name "r-bayestestr")
12376 (version "0.12.1")
12377 (source
12378 (origin
12379 (method url-fetch)
12380 (uri (cran-uri "bayestestR" version))
12381 (sha256
12382 (base32
12383 "1fbkpagc5zznrafy7h68nhx43a1yg4v7242pbqjkd0h2481c101z"))))
12384 (properties `((upstream-name . "bayestestR")))
12385 (build-system r-build-system)
12386 (propagated-inputs
12387 (list r-datawizard r-insight))
12388 (native-inputs
12389 (list r-knitr))
12390 (home-page "https://github.com/easystats/bayestestR")
12391 (synopsis "Describe Bayesian models and posterior distributions")
12392 (description
12393 "This package provides utilities to understand and describe posterior
12394 distributions and Bayesian models. It includes point-estimates such as
12395 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
12396 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
12397 ROPE percentage and pd).")
12398 (license license:gpl3)))
12399
12400 (define-public r-performance
12401 (package
12402 (name "r-performance")
12403 (version "0.9.0")
12404 (source
12405 (origin
12406 (method url-fetch)
12407 (uri (cran-uri "performance" version))
12408 (sha256
12409 (base32
12410 "1znr4i1pjv6z3lj6qrma2i3l94rz1z29w92mrxxfy3ch0s71crww"))))
12411 (build-system r-build-system)
12412 (propagated-inputs
12413 (list r-bayestestr r-datawizard r-insight))
12414 (home-page "https://easystats.github.io/performance/")
12415 (synopsis "Assessment of regression models performance")
12416 (description
12417 "This package provides utilities for computing measures to assess model
12418 quality, which are not directly provided by R's @code{base} or @code{stats}
12419 packages. These include e.g. measures like r-squared, intraclass correlation
12420 coefficient, root mean squared error or functions to check models for
12421 overdispersion, singularity or zero-inflation and more. Functions apply to a
12422 large variety of regression models, including generalized linear models, mixed
12423 effects models and Bayesian models.")
12424 (license license:gpl3)))
12425
12426 (define-public r-ggeffects
12427 (package
12428 (name "r-ggeffects")
12429 (version "1.1.2")
12430 (source
12431 (origin
12432 (method url-fetch)
12433 (uri (cran-uri "ggeffects" version))
12434 (sha256
12435 (base32
12436 "01yyfw7fkbxrp0gpwni5y8m4w9l3xckwc3crnvy1fqs1d6gwx3xx"))))
12437 (build-system r-build-system)
12438 (propagated-inputs
12439 (list r-insight r-mass r-sjlabelled))
12440 (native-inputs
12441 (list r-knitr))
12442 (home-page "https://github.com/strengejacke/ggeffects")
12443 (synopsis "Create tidy data frames of marginal effects for ggplot")
12444 (description
12445 "This package provides tools to compute marginal effects from statistical
12446 models and return the result as tidy data frames. These data frames are ready
12447 to use with the @code{ggplot2} package. Marginal effects can be calculated
12448 for many different models. Interaction terms, splines and polynomial terms
12449 are also supported. The two main functions are @code{ggpredict()} and
12450 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
12451 results using @code{ggplot2}.")
12452 (license license:gpl3)))
12453
12454 (define-public r-effectsize
12455 (package
12456 (name "r-effectsize")
12457 (version "0.7.0")
12458 (source
12459 (origin
12460 (method url-fetch)
12461 (uri (cran-uri "effectsize" version))
12462 (sha256
12463 (base32
12464 "07dbj7n9vwjkb7xrdj224lzc3ppr3jjdgyyilkj7gpkvgjgfrqhz"))))
12465 (properties `((upstream-name . "effectsize")))
12466 (build-system r-build-system)
12467 (propagated-inputs
12468 (list r-bayestestr r-datawizard r-insight r-parameters
12469 r-performance))
12470 (native-inputs
12471 (list r-knitr))
12472 (home-page "https://github.com/easystats/effectsize")
12473 (synopsis "Indices of effect size and standardized parameters")
12474 (description
12475 "This package provides utilities to work with indices of effect size and
12476 standardized parameters for a wide variety of models, allowing computation and
12477 conversion of indices such as Cohen's d, r, odds, etc.")
12478 (license license:gpl3)))
12479
12480 (define-public r-sjplot
12481 (package
12482 (name "r-sjplot")
12483 (version "2.8.10")
12484 (source
12485 (origin
12486 (method url-fetch)
12487 (uri (cran-uri "sjPlot" version))
12488 (sha256
12489 (base32 "1rnwhh271xj8xgvvlpqw9ain56mfz37fvl7f6jq9nzx9jxx95bjd"))))
12490 (properties `((upstream-name . "sjPlot")))
12491 (build-system r-build-system)
12492 (propagated-inputs
12493 (list r-bayestestr
12494 r-datawizard
12495 r-dplyr
12496 r-effectsize
12497 r-ggeffects
12498 r-ggplot2
12499 r-insight
12500 r-knitr
12501 r-mass
12502 r-parameters
12503 r-performance
12504 r-purrr
12505 r-rlang
12506 r-scales
12507 r-sjlabelled
12508 r-sjmisc
12509 r-sjstats
12510 r-tidyr))
12511 (native-inputs
12512 (list r-knitr))
12513 (home-page "https://strengejacke.github.io/sjPlot/")
12514 (synopsis "Data visualization for statistics in social science")
12515 (description
12516 "This package represents a collection of plotting and table output
12517 functions for data visualization. Results of various statistical
12518 analyses (that are commonly used in social sciences) can be visualized using
12519 this package, including simple and cross tabulated frequencies, histograms,
12520 box plots, (generalized) linear models, mixed effects models, principal
12521 component analysis and correlation matrices, cluster analyses, scatter plots,
12522 stacked scales, effects plots of regression models (including interaction
12523 terms) and much more. This package supports labelled data.")
12524 (license license:gpl3)))
12525
12526 (define-public r-ini
12527 (package
12528 (name "r-ini")
12529 (version "0.3.1")
12530 (source
12531 (origin
12532 (method url-fetch)
12533 (uri (cran-uri "ini" version))
12534 (sha256
12535 (base32
12536 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
12537 (build-system r-build-system)
12538 (home-page "https://github.com/dvdscripter/ini")
12539 (synopsis "Read and write configuration files")
12540 (description
12541 "This package provides tools to parse simple @code{.ini} configuration
12542 files to an structured list. Users can manipulate this resulting list with
12543 @code{lapply()} functions. This same structured list can be used to write
12544 back to file after modifications.")
12545 (license license:gpl3)))
12546
12547 (define-public r-gillespiessa2
12548 (package
12549 (name "r-gillespiessa2")
12550 (version "0.2.8")
12551 (source
12552 (origin
12553 (method url-fetch)
12554 (uri (cran-uri "GillespieSSA2" version))
12555 (sha256
12556 (base32 "03ym8qx5yc1a6j9l973lc0rjzs8hiax8fq13j7m1fcb1pvnbvar5"))))
12557 (properties `((upstream-name . "GillespieSSA2")))
12558 (build-system r-build-system)
12559 (propagated-inputs
12560 (list r-assertthat
12561 r-dplyr
12562 r-dynutils
12563 r-matrix
12564 r-purrr
12565 r-rcpp
12566 r-rcppxptrutils
12567 r-readr
12568 r-rlang
12569 r-stringr
12570 r-tidyr))
12571 (native-inputs (list r-knitr))
12572 (home-page "https://github.com/rcannood/GillespieSSA2")
12573 (synopsis "Gillespie's stochastic simulation algorithm")
12574 (description
12575 "This package provides a fast, scalable, and versatile framework for
12576 simulating large systems with Gillespie's @dfn{Stochastic Simulation
12577 Algorithm} (SSA). This package is the spiritual successor to the GillespieSSA
12578 package. Benefits of this package include major speed improvements (>100x),
12579 easier to understand documentation, and many unit tests that try to ensure the
12580 package works as intended.")
12581 (license license:gpl3+)))
12582
12583 (define-public r-gitcreds
12584 (package
12585 (name "r-gitcreds")
12586 (version "0.1.1")
12587 (source
12588 (origin
12589 (method url-fetch)
12590 (uri (cran-uri "gitcreds" version))
12591 (sha256
12592 (base32
12593 "1snzn7nxy0rwz0bzjsg6k04c0n811dgn8gn9cmn2v78aj57ayjmi"))))
12594 (properties `((upstream-name . "gitcreds")))
12595 (build-system r-build-system)
12596 (inputs (list git-minimal))
12597 (native-inputs (list r-knitr))
12598 (home-page "https://github.com/r-lib/gitcreds")
12599 (synopsis "Query git credentials from R")
12600 (description
12601 "Query, set, and delete credentials from the git credential store.
12602 Manage GitHub tokens and other git credentials. This package is to be used by
12603 other packages that need to authenticate to GitHub and/or other git
12604 repositories.")
12605 (license license:expat)))
12606
12607 (define-public r-gh
12608 (package
12609 (name "r-gh")
12610 (version "1.3.0")
12611 (source
12612 (origin
12613 (method url-fetch)
12614 (uri (cran-uri "gh" version))
12615 (sha256
12616 (base32
12617 "077drbxz3rx7idv6w24ipj1p6jnzv86a3iyryab699cc9q2kjh54"))))
12618 (build-system r-build-system)
12619 (propagated-inputs
12620 (list r-cli r-gitcreds r-httr r-ini r-jsonlite))
12621 (native-inputs
12622 (list r-knitr))
12623 (home-page "https://github.com/r-lib/gh#readme")
12624 (synopsis "Access the GitHub API via R")
12625 (description
12626 "This package provides a minimal R client to access the GitHub API.")
12627 (license license:expat)))
12628
12629 (define-public r-fs
12630 (package
12631 (name "r-fs")
12632 (version "1.5.2")
12633 (source
12634 (origin
12635 (method url-fetch)
12636 (uri (cran-uri "fs" version))
12637 (sha256
12638 (base32
12639 "11qr3v0xn65vfhgcxl4l6yv48s4w0w3ldp3anpzc25vd3mwd3jim"))))
12640 (build-system r-build-system)
12641 (native-inputs
12642 (list r-knitr))
12643 (home-page "https://fs.r-lib.org")
12644 (synopsis "Cross-platform file system operations based on libuv")
12645 (description
12646 "This package provides a cross-platform interface to file system
12647 operations, built on top of the libuv C library.")
12648 (license license:gpl3)))
12649
12650 (define-public r-clisymbols
12651 (package
12652 (name "r-clisymbols")
12653 (version "1.2.0")
12654 (source
12655 (origin
12656 (method url-fetch)
12657 (uri (cran-uri "clisymbols" version))
12658 (sha256
12659 (base32
12660 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
12661 (build-system r-build-system)
12662 (home-page "https://github.com/gaborcsardi/clisymbols")
12663 (synopsis "Unicode symbols at the R prompt")
12664 (description
12665 "This package provides a small subset of Unicode symbols, that are useful
12666 when building command line applications. They fall back to alternatives on
12667 terminals that do not support Unicode.")
12668 (license license:expat)))
12669
12670 (define-public r-credentials
12671 (package
12672 (name "r-credentials")
12673 (version "1.3.2")
12674 (source
12675 (origin
12676 (method url-fetch)
12677 (uri (cran-uri "credentials" version))
12678 (sha256
12679 (base32
12680 "1f18j3zrq8c9kah57xwahmmljsjg5qphlgamvx507ynvpq8pryig"))))
12681 (properties `((upstream-name . "credentials")))
12682 (build-system r-build-system)
12683 (arguments
12684 `(#:phases
12685 (modify-phases %standard-phases
12686 (add-after 'unpack 'setenv-HOME
12687 (lambda _
12688 ;; This is necessary because git looks for $HOME/.gitconfig
12689 (setenv "HOME" "/tmp"))))))
12690 (inputs
12691 (list git-minimal))
12692 (propagated-inputs
12693 (list r-askpass r-curl r-jsonlite r-openssl r-sys))
12694 (native-inputs
12695 (list r-knitr))
12696 (home-page "https://docs.ropensci.org/credentials/")
12697 (synopsis "Tools for managing SSH and Git credentials")
12698 (description
12699 "This package assists you in setting up and retrieving of HTTPS and SSH
12700 credentials for use with git and other services. For HTTPS remotes the
12701 package interfaces the @command{git-credential} utility which @command{git}
12702 uses to store HTTP usernames and passwords. For SSH remotes this package
12703 provides convenient functions to find or generate appropriate SSH keys. The
12704 package both helps the user to setup a local git installation, and also
12705 provides a back-end for git/ssh client libraries to authenticate with existing
12706 user credentials.")
12707 (license license:expat)))
12708
12709 (define-public r-gert
12710 (package
12711 (name "r-gert")
12712 (version "1.6.0")
12713 (source
12714 (origin
12715 (method url-fetch)
12716 (uri (cran-uri "gert" version))
12717 (sha256
12718 (base32
12719 "0r19vi77yyjw5gbhgjibdysjlszlw2095v14f6sv675zpbp0li4c"))))
12720 (properties `((upstream-name . "gert")))
12721 (build-system r-build-system)
12722 (inputs
12723 (list libgit2 zlib))
12724 (propagated-inputs
12725 (list r-askpass
12726 r-credentials
12727 r-openssl
12728 r-rstudioapi
12729 r-sys
12730 r-zip))
12731 (native-inputs
12732 (list pkg-config r-knitr))
12733 (home-page "https://docs.ropensci.org/gert/")
12734 (synopsis "Simple Git client for R")
12735 (description
12736 "This package provides a simple git client for R based on libgit2 with
12737 support for SSH and HTTPS remotes. All functions in gert use basic R data
12738 types (such as vectors and data-frames) for their arguments and return values.
12739 User credentials are shared with command line git through the
12740 @code{git-credential} store and SSH keys stored on disk or ssh-agent.")
12741 (license license:expat)))
12742
12743 (define-public r-usethis
12744 (package
12745 (name "r-usethis")
12746 (version "2.1.6")
12747 (source
12748 (origin
12749 (method url-fetch)
12750 (uri (cran-uri "usethis" version))
12751 (sha256
12752 (base32
12753 "0638dzl4nm4c36990sf2biy74hjr2fzlqzfb98fsqrbhaw3ngp1i"))))
12754 (build-system r-build-system)
12755 (propagated-inputs
12756 (list r-cli
12757 r-clipr
12758 r-crayon
12759 r-curl
12760 r-desc
12761 r-fs
12762 r-gert
12763 r-gh
12764 r-glue
12765 r-jsonlite
12766 r-lifecycle
12767 r-purrr
12768 r-rappdirs
12769 r-rlang
12770 r-rprojroot
12771 r-rstudioapi
12772 r-whisker
12773 r-withr
12774 r-yaml))
12775 (home-page "https://github.com/r-lib/usethis")
12776 (synopsis "Automate R package and project setup")
12777 (description
12778 "This package helps you to automate R package and project setup tasks
12779 that are otherwise performed manually. This includes setting up unit testing,
12780 test coverage, continuous integration, Git, GitHub integration, licenses,
12781 Rcpp, RStudio projects, and more.")
12782 (license license:gpl3)))
12783
12784 (define-public r-sessioninfo
12785 (package
12786 (name "r-sessioninfo")
12787 (version "1.2.2")
12788 (source
12789 (origin
12790 (method url-fetch)
12791 (uri (cran-uri "sessioninfo" version))
12792 (sha256
12793 (base32
12794 "1jy7n37qnrb4fgzmn8s8yf7kv29yw27x8zklwf8qdb2kgj2q6qpm"))))
12795 (build-system r-build-system)
12796 (propagated-inputs
12797 (list r-cli))
12798 (home-page "https://github.com/r-lib/sessioninfo#readme")
12799 (synopsis "R session information")
12800 (description
12801 "This package provides tools to query and print information about the
12802 current R session. It is similar to @code{utils::sessionInfo()}, but includes
12803 more information about packages, and where they were installed from.")
12804 (license license:gpl2)))
12805
12806 (define-public r-remotes
12807 (package
12808 (name "r-remotes")
12809 (version "2.4.2")
12810 (source
12811 (origin
12812 (method url-fetch)
12813 (uri (cran-uri "remotes" version))
12814 (sha256
12815 (base32
12816 "05m5dgv0nba5vhjbdkd8z5lbhpfxgkw31j58am7vz1d44igqgvzj"))))
12817 (build-system r-build-system)
12818 (native-inputs
12819 (list r-knitr))
12820 (home-page "https://github.com/r-lib/remotes#readme")
12821 (synopsis "R package installation from remote repositories")
12822 (description
12823 "Download and install R packages stored in GitHub, BitBucket, or plain
12824 subversion or git repositories. This package is a lightweight replacement of
12825 the @code{install_*} functions in the @code{devtools} package. Indeed most of
12826 the code was copied over from @code{devtools}.")
12827 (license license:gpl2+)))
12828
12829 (define-public r-xopen
12830 (package
12831 (name "r-xopen")
12832 (version "1.0.0")
12833 (source
12834 (origin
12835 (method url-fetch)
12836 (uri (cran-uri "xopen" version))
12837 (sha256
12838 (base32
12839 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
12840 (build-system r-build-system)
12841 (propagated-inputs
12842 (list r-processx))
12843 (home-page "https://github.com/r-lib/xopen#readme")
12844 (synopsis "Open system files, URLs, anything")
12845 (description
12846 "This package provides a cross-platform solution to open files,
12847 directories or URLs with their associated programs.")
12848 (license license:expat)))
12849
12850 (define-public r-rcmdcheck
12851 (package
12852 (name "r-rcmdcheck")
12853 (version "1.4.0")
12854 (source
12855 (origin
12856 (method url-fetch)
12857 (uri (cran-uri "rcmdcheck" version))
12858 (sha256
12859 (base32
12860 "1l696byn3kjq2xvz4wxybzaj6ink85h4lz3a35v2132ba5yyzm5v"))))
12861 (build-system r-build-system)
12862 (propagated-inputs
12863 (list r-callr
12864 r-cli
12865 r-curl
12866 r-desc
12867 r-digest
12868 r-pkgbuild
12869 r-prettyunits
12870 r-r6
12871 r-rprojroot
12872 r-sessioninfo
12873 r-withr
12874 r-xopen))
12875 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
12876 (synopsis "Run R CMD check from R and capture results")
12877 (description
12878 "Run @code{R CMD check} from R programmatically, and capture the results
12879 of the individual checks.")
12880 (license license:expat)))
12881
12882 (define-public r-rapportools
12883 (package
12884 (name "r-rapportools")
12885 (version "1.1")
12886 (source
12887 (origin
12888 (method url-fetch)
12889 (uri (cran-uri "rapportools" version))
12890 (sha256
12891 (base32
12892 "0qr86idng12g6hdd764j0wmli700v7rjhw7jdjxj0ka8xm5v7ymm"))))
12893 (build-system r-build-system)
12894 (propagated-inputs
12895 (list r-mass r-pander r-plyr r-reshape2))
12896 (home-page "https://cran.r-project.org/web/packages/rapportools/")
12897 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
12898 (description
12899 "This package provides helper functions that act as wrappers to more
12900 advanced statistical methods with the advantage of having sane defaults for
12901 quick reporting.")
12902 (license license:agpl3+)))
12903
12904 (define-public r-pander
12905 (package
12906 (name "r-pander")
12907 (version "0.6.5")
12908 (source
12909 (origin
12910 (method url-fetch)
12911 (uri (cran-uri "pander" version))
12912 (sha256
12913 (base32
12914 "144zkq5w7v6fpzk3x40i0baybbp0y6x2ckh4b9qljryas9mhgp9a"))))
12915 (build-system r-build-system)
12916 (propagated-inputs
12917 (list r-digest r-rcpp))
12918 (native-inputs
12919 (list r-knitr))
12920 (home-page "https://rapporter.github.io/pander")
12921 (synopsis "Render R objects into Pandoc's markdown")
12922 (description
12923 "The main aim of the pander R package is to provide a minimal and easy
12924 tool for rendering R objects into Pandoc's markdown. The package is also
12925 capable of exporting/converting complex Pandoc documents (reports) in various
12926 ways.")
12927 ;; This package is licensed under either the AGPLv3+ or the very rarely
12928 ;; used OSL 3.0.
12929 (license license:agpl3+)))
12930
12931 (define-public r-summarytools
12932 (package
12933 (name "r-summarytools")
12934 (version "1.0.1")
12935 (source
12936 (origin
12937 (method url-fetch)
12938 (uri (cran-uri "summarytools" version))
12939 (sha256
12940 (base32
12941 "0gr95cd1ja8di6s0xghk6w7nj3bh3z4g7j7ixdy7f88q681aixgx"))))
12942 (build-system r-build-system)
12943 (propagated-inputs
12944 (list r-base64enc
12945 r-checkmate
12946 r-dplyr
12947 r-htmltools
12948 r-lubridate
12949 r-magick
12950 r-matrixstats
12951 r-pander
12952 r-pryr
12953 r-rapportools
12954 r-tibble
12955 r-tidyr))
12956 (native-inputs
12957 (list r-knitr))
12958 (home-page "https://github.com/dcomtois/summarytools")
12959 (synopsis "Tools to quickly and neatly summarize data")
12960 (description
12961 "This package provides tools for data frame summaries, cross-tabulations,
12962 weight-enabled frequency tables and common univariate statistics in concise
12963 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
12964 good point-of-entry for exploring data, both for experienced and new R
12965 users.")
12966 (license license:gpl2)))
12967
12968 (define-public r-lsei
12969 (package
12970 (name "r-lsei")
12971 (version "1.3-0")
12972 (source
12973 (origin
12974 (method url-fetch)
12975 (uri (cran-uri "lsei" version))
12976 (sha256
12977 (base32
12978 "1dka0rigfw4vj809qma2dkiwjb3nw5635ynnba5cm299cn7hb2b2"))))
12979 (build-system r-build-system)
12980 (native-inputs
12981 (list gfortran))
12982 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
12983 (synopsis "Solve regression problems under equality/inequality constraints")
12984 (description
12985 "It contains functions that solve least squares linear regression
12986 problems under linear equality/inequality constraints. Functions for solving
12987 quadratic programming problems are also available, which transform such
12988 problems into least squares ones first.")
12989 (license license:gpl2+)))
12990
12991 (define-public r-npsurv
12992 (package
12993 (name "r-npsurv")
12994 (version "0.5-0")
12995 (source
12996 (origin
12997 (method url-fetch)
12998 (uri (cran-uri "npsurv" version))
12999 (sha256
13000 (base32
13001 "1ihxhb42cga1hssj2jv4ah0f4hlwsky899ij5261fzh1wxvdp1xw"))))
13002 (build-system r-build-system)
13003 (propagated-inputs
13004 (list r-lsei))
13005 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
13006 (synopsis "Nonparametric survival analysis")
13007 (description
13008 "This package contains functions for non-parametric survival analysis of
13009 exact and interval-censored observations.")
13010 (license license:gpl2+)))
13011
13012 (define-public r-clusteval
13013 (package
13014 (name "r-clusteval")
13015 (version "0.1")
13016 (source
13017 (origin
13018 (method url-fetch)
13019 (uri (cran-uri "clusteval" version))
13020 (sha256
13021 (base32
13022 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
13023 (build-system r-build-system)
13024 (propagated-inputs
13025 (list r-mvtnorm r-rcpp))
13026 (home-page "https://cran.r-project.org/web/packages/clusteval/")
13027 (synopsis "Evaluation of clustering algorithms")
13028 (description
13029 "This R package provides a suite of tools to evaluate clustering
13030 algorithms, clusterings, and individual clusters.")
13031 (license license:expat)))
13032
13033 (define-public r-tweedie
13034 (package
13035 (name "r-tweedie")
13036 (version "2.3.3")
13037 (source
13038 (origin
13039 (method url-fetch)
13040 (uri (cran-uri "tweedie" version))
13041 (sha256
13042 (base32
13043 "1nfhaqblvm62j8gfkyrgba5ai0pb2fsnrxp63637mhys2bawlcm0"))))
13044 (build-system r-build-system)
13045 (native-inputs (list gfortran))
13046 (home-page "https://cran.r-project.org/web/packages/tweedie/")
13047 (synopsis "Evaluation of Tweedie exponential family models")
13048 (description
13049 "Maximum likelihood computations for Tweedie families, including the
13050 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
13051 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
13052 and related methods.")
13053 (license license:gpl2+)))
13054
13055 (define-public r-rcppgsl
13056 (package
13057 (name "r-rcppgsl")
13058 (version "0.3.11")
13059 (source
13060 (origin
13061 (method url-fetch)
13062 (uri (cran-uri "RcppGSL" version))
13063 (sha256
13064 (base32 "1a5dms0axlzgpv1z2bhfrb77497h0ch1yslq0gidj14vr4kfm57h"))))
13065 (properties `((upstream-name . "RcppGSL")))
13066 (build-system r-build-system)
13067 (propagated-inputs
13068 (list r-rcpp gsl))
13069 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
13070 (synopsis "Rcpp integration for GSL vectors and matrices")
13071 (description
13072 "The GNU Scientific Library (or GSL) is a collection of numerical
13073 routines for scientific computing. It is particularly useful for C and C++
13074 programs as it provides a standard C interface to a wide range of mathematical
13075 routines. There are over 1000 functions in total with an extensive test
13076 suite. The RcppGSL package provides an easy-to-use interface between GSL data
13077 structures and R using concepts from Rcpp which is itself a package that eases
13078 the interfaces between R and C++.")
13079 (license license:gpl2+)))
13080
13081 (define-public r-mvabund
13082 (package
13083 (name "r-mvabund")
13084 (version "4.2.1")
13085 (source
13086 (origin
13087 (method url-fetch)
13088 (uri (cran-uri "mvabund" version))
13089 (sha256
13090 (base32
13091 "01kss9dx4an1ir5zs46jypvhj8sdc8wcs00i1223ai09av4lcsgd"))))
13092 (build-system r-build-system)
13093 (propagated-inputs
13094 (list r-mass r-rcpp r-rcppgsl r-statmod r-tweedie))
13095 (home-page "https://cran.r-project.org/web/packages/mvabund/")
13096 (synopsis "Statistical methods for analysing multivariate abundance data")
13097 (description
13098 "This package provides a set of tools for displaying, modeling and
13099 analysing multivariate abundance data in community ecology.")
13100 (license license:lgpl2.1+)))
13101
13102 (define-public r-afex
13103 (package
13104 (name "r-afex")
13105 (version "1.1-1")
13106 (source
13107 (origin
13108 (method url-fetch)
13109 (uri (cran-uri "afex" version))
13110 (sha256
13111 (base32
13112 "09q426s2zmzxx5ilxy0x5mflpb38pl075ss1s8xvpswkn6cia0b6"))))
13113 (build-system r-build-system)
13114 ;; This is needed for the vignette builder
13115 (arguments
13116 '(#:phases
13117 (modify-phases %standard-phases
13118 (add-after 'unpack 'set-HOME
13119 (lambda _ (setenv "HOME" "/tmp"))))))
13120 (propagated-inputs
13121 (list r-car r-lme4 r-lmertest r-pbkrtest r-reshape2))
13122 (native-inputs
13123 (list r-knitr
13124 r-r-rsp)) ;vignette builder
13125 (home-page "https://afex.singmann.science/")
13126 (synopsis "Analysis of factorial experiments")
13127 (description
13128 "This package provides convenience functions for analyzing factorial
13129 experiments using ANOVA or mixed models.")
13130 (license license:gpl2+)))
13131
13132 (define-public r-lmertest
13133 (package
13134 (name "r-lmertest")
13135 (version "3.1-3")
13136 (source
13137 (origin
13138 (method url-fetch)
13139 (uri (cran-uri "lmerTest" version))
13140 (sha256
13141 (base32
13142 "1zd8gqjkazhxgpnnr484xwsq30p62fq8592nzyc171zjyplpbaim"))))
13143 (properties `((upstream-name . "lmerTest")))
13144 (build-system r-build-system)
13145 (propagated-inputs
13146 (list r-ggplot2 r-lme4 r-mass r-numderiv))
13147 (home-page "https://github.com/runehaubo/lmerTestR")
13148 (synopsis "Tests in linear mixed effects models")
13149 (description
13150 "This package provides p-values in type I, II or III anova and summary
13151 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
13152 method. A Kenward-Roger method is also available via the @code{pbkrtest}
13153 package. Model selection methods include step, drop1 and anova-like tables
13154 for random effects (ranova). Methods for Least-Square means (LS-means) and
13155 tests of linear contrasts of fixed effects are also available.")
13156 (license license:gpl2+)))
13157
13158 (define-public r-r2glmm
13159 (package
13160 (name "r-r2glmm")
13161 (version "0.1.2")
13162 (source
13163 (origin
13164 (method url-fetch)
13165 (uri (cran-uri "r2glmm" version))
13166 (sha256
13167 (base32
13168 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
13169 (build-system r-build-system)
13170 (propagated-inputs
13171 (list r-afex
13172 r-data-table
13173 r-dplyr
13174 r-ggplot2
13175 r-gridextra
13176 r-lmertest
13177 r-mass
13178 r-matrix
13179 r-mgcv
13180 r-pbkrtest))
13181 (home-page "https://github.com/bcjaeger/r2glmm")
13182 (synopsis "Compute R squared for mixed (multilevel) models")
13183 (description
13184 "This package computes model and semi partial R squared with confidence
13185 limits for the linear and generalized linear mixed model (LMM and GLMM). The
13186 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
13187 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
13188 al. (2016)).")
13189 (license license:gpl2)))
13190
13191 (define-public r-cmdfun
13192 (package
13193 (name "r-cmdfun")
13194 (version "1.0.2")
13195 (source
13196 (origin
13197 (method url-fetch)
13198 (uri (cran-uri "cmdfun" version))
13199 (sha256
13200 (base32
13201 "1pbcq7hi2lcmqnghmy3q2fsk0c9fy5m0637acyzmc096fxbx723j"))))
13202 (properties `((upstream-name . "cmdfun")))
13203 (build-system r-build-system)
13204 (propagated-inputs
13205 (list r-magrittr
13206 r-purrr
13207 r-r-utils
13208 r-rlang
13209 r-testthat
13210 r-usethis))
13211 (native-inputs
13212 (list r-knitr))
13213 (home-page "https://snystrom.github.io/cmdfun/")
13214 (synopsis "Framework for building interfaces to shell commands")
13215 (description
13216 "Writing interfaces to command line software is cumbersome. The cmdfun
13217 package provides a framework for building function calls to seamlessly
13218 interface with shell commands by allowing lazy evaluation of command line
13219 arguments. It also provides methods for handling user-specific paths to tool
13220 installs or secrets like API keys. Its focus is to equally serve package
13221 builders who wish to wrap command line software, and to help analysts stay
13222 inside R when they might usually leave to execute non-R software.")
13223 (license license:expat)))
13224
13225 (define-public r-rslurm
13226 (package
13227 (name "r-rslurm")
13228 (version "0.6.1")
13229 (source
13230 (origin
13231 (method url-fetch)
13232 (uri (cran-uri "rslurm" version))
13233 (sha256
13234 (base32
13235 "19451icfh7snjbbmpzpr1hrdf52q8ijv0ag1di3y55r2la3jxxcf"))))
13236 (properties `((upstream-name . "rslurm")))
13237 (build-system r-build-system)
13238 (propagated-inputs (list r-whisker))
13239 (native-inputs (list r-knitr))
13240 (home-page "http://cyberhelp.sesync.org/rslurm/")
13241 (synopsis "Submit R calculations to a Slurm cluster")
13242 (description
13243 "This package provides functions that simplify submitting R scripts to a
13244 Slurm workload manager, in part by automating the division of embarrassingly
13245 parallel calculations across cluster nodes.")
13246 (license license:gpl3)))
13247
13248 (define-public r-chk
13249 (package
13250 (name "r-chk")
13251 (version "0.8.0")
13252 (source
13253 (origin
13254 (method url-fetch)
13255 (uri (cran-uri "chk" version))
13256 (sha256
13257 (base32
13258 "10gcv00mgi88vgxr9jrs0ar67crmdcdi4m9g86cm6pg3ly0v097y"))))
13259 (properties `((upstream-name . "chk")))
13260 (build-system r-build-system)
13261 (propagated-inputs
13262 (list r-lifecycle r-rlang))
13263 (native-inputs (list r-knitr))
13264 (home-page "https://github.com/poissonconsulting/chk")
13265 (synopsis "Check user-supplied function arguments")
13266 (description
13267 "This is a package for developers to check user-supplied function
13268 arguments. It is designed to be simple, fast and customizable. Error
13269 messages follow the tidyverse style guide.")
13270 (license license:expat)))
13271
13272 (define-public r-weights
13273 (package
13274 (name "r-weights")
13275 (version "1.0.4")
13276 (source
13277 (origin
13278 (method url-fetch)
13279 (uri (cran-uri "weights" version))
13280 (sha256
13281 (base32
13282 "1fnchf7f0hyl514bk8sc3l884kg25kb5xm4mc2l28n6hm7l6bgpg"))))
13283 (build-system r-build-system)
13284 (propagated-inputs
13285 (list r-gdata r-hmisc r-lme4 r-mice))
13286 (home-page "https://cran.r-project.org/web/packages/weights/")
13287 (synopsis "Weighting and weighted statistics")
13288 (description "This package Provides a variety of functions for producing
13289 simple weighted statistics, such as weighted Pearson's correlations, partial
13290 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
13291 includes some software for quickly recoding survey data and plotting point
13292 estimates from interaction terms in regressions (and multiply imputed
13293 regressions). NOTE: Weighted partial correlation calculations pulled to
13294 address a bug.")
13295 (license license:gpl2+)))
13296
13297 (define-public r-rcppannoy
13298 (package
13299 (name "r-rcppannoy")
13300 (version "0.0.19")
13301 (source
13302 (origin
13303 (method url-fetch)
13304 (uri (cran-uri "RcppAnnoy" version))
13305 (sha256
13306 (base32
13307 "12k8ny981dmky5js8yl6bih5r5mq3w43f2f9admhkwqn0n80kcl9"))))
13308 (properties `((upstream-name . "RcppAnnoy")))
13309 (build-system r-build-system)
13310 (propagated-inputs
13311 (list r-rcpp))
13312 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
13313 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
13314 (description
13315 "Annoy is a small C++ library for Approximate Nearest Neighbors written
13316 for efficient memory usage as well an ability to load from and save to disk.
13317 This package provides an R interface.")
13318 ;; Annoy is released under ASL 2.0, but this wrapper is released under
13319 ;; GPLv2+.
13320 (license (list license:gpl2+ license:asl2.0))))
13321
13322 (define-public r-rcpphnsw
13323 (package
13324 (name "r-rcpphnsw")
13325 (version "0.3.0")
13326 (source
13327 (origin
13328 (method url-fetch)
13329 (uri (cran-uri "RcppHNSW" version))
13330 (sha256
13331 (base32
13332 "01z0plf1i6dyibw4ica8shmijyk1grpqb886hcga72z2cpm4xsx0"))))
13333 (properties `((upstream-name . "RcppHNSW")))
13334 (build-system r-build-system)
13335 (propagated-inputs (list r-rcpp))
13336 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
13337 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
13338 (description
13339 "Hnswlib is a C++ library for approximate nearest neighbors. This
13340 package provides a minimal R interface by relying on the Rcpp package.")
13341 ;; hnswlib is released under Version 2.0 of the Apache License.
13342 (license (list license:gpl3 license:asl2.0))))
13343
13344 (define-public r-rcppparallel
13345 (package
13346 (name "r-rcppparallel")
13347 (version "5.1.5")
13348 (source
13349 (origin
13350 (method url-fetch)
13351 (uri (cran-uri "RcppParallel" version))
13352 (sha256
13353 (base32
13354 "1sn211ajlb1p12sglxqns175rg078yvww268m8cp0vvd7cmk55k3"))))
13355 (properties `((upstream-name . "RcppParallel")))
13356 (build-system r-build-system)
13357 (home-page "https://rcppcore.github.io/RcppParallel/")
13358 (synopsis "Parallel programming tools for Rcpp")
13359 (description
13360 "This package provides high level functions for parallel programming with
13361 Rcpp. For example, the @code{parallelFor()} function can be used to convert
13362 the work of a standard serial @code{for} loop into a parallel one and the
13363 @code{parallelReduce()} function can be used for accumulating aggregates or
13364 other values.")
13365 (license license:gpl2)))
13366
13367 (define-public r-ncdf4
13368 (package
13369 (name "r-ncdf4")
13370 (version "1.19")
13371 (source
13372 (origin
13373 (method url-fetch)
13374 (uri (cran-uri "ncdf4" version))
13375 (sha256
13376 (base32
13377 "0qzvin2fjzcb7h2knlnw14s6043pwi1nm7yf6p27ax7w269173fb"))))
13378 (build-system r-build-system)
13379 (inputs
13380 (list netcdf zlib))
13381 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
13382 (synopsis "R interface to Unidata netCDF format data files")
13383 (description
13384 "This package provides a high-level R interface to data files written
13385 using Unidata's netCDF library (version 4 or earlier), which are binary data
13386 files that are portable across platforms and include metadata information in
13387 addition to the data sets. Using this package, netCDF files can be opened and
13388 data sets read in easily. It is also easy to create new netCDF dimensions,
13389 variables, and files, in either version 3 or 4 format, and manipulate existing
13390 netCDF files.")
13391 (license license:gpl3+)))
13392
13393 (define-public r-biocmanager
13394 (package
13395 (name "r-biocmanager")
13396 (version "1.30.18")
13397 (source
13398 (origin
13399 (method url-fetch)
13400 (uri (cran-uri "BiocManager" version))
13401 (sha256
13402 (base32 "0dawbd546rznllpw5wq282r0viga4cck398d4s1inkk18mmi4qzp"))))
13403 (properties `((upstream-name . "BiocManager")))
13404 (build-system r-build-system)
13405 (native-inputs
13406 (list r-knitr))
13407 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
13408 (synopsis "Access the Bioconductor project package repository")
13409 (description
13410 "This package provides a convenient tool to install and update
13411 Bioconductor packages.")
13412 (license license:artistic2.0)))
13413
13414 (define-public r-rgl
13415 (package
13416 (name "r-rgl")
13417 (version "0.108.3.2")
13418 (source
13419 (origin
13420 (method url-fetch)
13421 (uri (cran-uri "rgl" version))
13422 (sha256
13423 (base32
13424 "0r9wzhjzl346i37ngs6hqzmizhi53kzqz582lv822v6yxang6fh3"))))
13425 (build-system r-build-system)
13426 (native-inputs
13427 (list pkg-config r-knitr))
13428 (inputs
13429 (list freetype
13430 libpng
13431 glu
13432 libx11
13433 pandoc
13434 zlib))
13435 (propagated-inputs
13436 (list r-htmltools
13437 r-htmlwidgets
13438 r-jsonlite
13439 r-knitr
13440 r-magrittr
13441 r-r6))
13442 (home-page "https://r-forge.r-project.org/projects/rgl/")
13443 (synopsis "3D visualization using OpenGL")
13444 (description
13445 "This package provides medium to high level functions for 3D interactive graphics,
13446 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
13447 as functions for constructing representations of geometric
13448 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
13449 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
13450 image formats, including PNG, Postscript, SVG, PGF.")
13451 ;; Any version of the GPL.
13452 (license (list license:gpl2+ license:gpl3+))))
13453
13454 (define-public r-multicool
13455 (package
13456 (name "r-multicool")
13457 (version "0.1-12")
13458 (source
13459 (origin
13460 (method url-fetch)
13461 (uri (cran-uri "multicool" version))
13462 (sha256
13463 (base32
13464 "0djacq0irfqz4nlnx238kja73yvr1n5qybbfyl6bw1n6qgcjhza8"))))
13465 (build-system r-build-system)
13466 (propagated-inputs (list r-rcpp))
13467 (home-page "https://cran.r-project.org/web/packages/multicool/")
13468 (synopsis "Permutations of multisets in cool-lex order")
13469 (description
13470 "This package provides a set of tools to permute multisets without loops
13471 or hash tables and to generate integer partitions. Cool-lex order is similar
13472 to colexicographical order.")
13473 (license license:gpl2)))
13474
13475 (define-public r-misc3d
13476 (package
13477 (name "r-misc3d")
13478 (version "0.9-1")
13479 (source
13480 (origin
13481 (method url-fetch)
13482 (uri (cran-uri "misc3d" version))
13483 (sha256
13484 (base32
13485 "0r9x57s63kx9f6dgam2nhbziq8nrs9wd8pk7g76hds2kw46vnyx0"))))
13486 (build-system r-build-system)
13487 (home-page "https://cran.r-project.org/web/packages/misc3d/")
13488 (synopsis "Miscellaneous 3D Plots")
13489 (description
13490 "This package provides a collection of miscellaneous 3d plots, including
13491 isosurfaces.")
13492 ;; Any version of the GPL.
13493 (license (list license:gpl2+ license:gpl3+))))
13494
13495 (define-public r-ks
13496 (package
13497 (name "r-ks")
13498 (version "1.13.5")
13499 (source
13500 (origin
13501 (method url-fetch)
13502 (uri (cran-uri "ks" version))
13503 (sha256
13504 (base32 "05bqrjkbx2kn5aax0hy3xd6pf7nxka9bm1sp8ll1cc2gf1nx1i6i"))))
13505 (build-system r-build-system)
13506 (propagated-inputs
13507 (list r-fnn
13508 r-kernlab
13509 r-kernsmooth
13510 r-matrix
13511 r-mclust
13512 r-mgcv
13513 r-multicool
13514 r-mvtnorm
13515 r-plot3d
13516 r-pracma))
13517 (home-page "https://www.mvstat.net/tduong/")
13518 (synopsis "Kernel smoothing")
13519 (description
13520 "This package provides kernel smoothers for univariate and multivariate
13521 data, including density functions, density derivatives, cumulative
13522 distributions, modal clustering, discriminant analysis, and two-sample
13523 hypothesis testing.")
13524 ;; Either version of the GPL.
13525 (license (list license:gpl2 license:gpl3))))
13526
13527 (define-public r-feature
13528 (package
13529 (name "r-feature")
13530 (version "1.2.15")
13531 (source
13532 (origin
13533 (method url-fetch)
13534 (uri (cran-uri "feature" version))
13535 (sha256
13536 (base32
13537 "0yzn1w1sasilcp8v0pcjnxjv9l6lspkskqi412i6h040gqmjjf6y"))))
13538 (build-system r-build-system)
13539 (propagated-inputs
13540 (list r-ks r-plot3d))
13541 (native-inputs
13542 (list r-knitr))
13543 (home-page "https://www.mvstat.net/tduong/")
13544 (synopsis "Inferential feature significance for kernel density estimation")
13545 (description
13546 "The feature package contains functions to display and compute kernel
13547 density estimates, significant gradient and significant curvature regions.
13548 Significant gradient and/or curvature regions often correspond to significant
13549 features (e.g. local modes).")
13550 ;; Either version of the GPL.
13551 (license (list license:gpl2 license:gpl3))))
13552
13553 (define-public r-arm
13554 (package
13555 (name "r-arm")
13556 (version "1.12-2")
13557 (source
13558 (origin
13559 (method url-fetch)
13560 (uri (cran-uri "arm" version))
13561 (sha256
13562 (base32
13563 "0pagrc1vkaz460d0lvrgb4xj6gcd920f4mrc8zpzw07c3v1s2sw1"))))
13564 (build-system r-build-system)
13565 (propagated-inputs
13566 (list r-abind
13567 r-coda
13568 r-lme4
13569 r-mass
13570 r-matrix
13571 r-nlme))
13572 (home-page "https://cran.r-project.org/web/packages/arm/")
13573 (synopsis "Data analysis using regression and multilevel/hierarchical models")
13574 (description
13575 "This package provides functions to accompany A. Gelman and J. Hill,
13576 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
13577 University Press, 2007.")
13578 (license license:gpl3+)))
13579
13580 (define-public r-circular
13581 (package
13582 (name "r-circular")
13583 (version "0.4-95")
13584 (source
13585 (origin
13586 (method url-fetch)
13587 (uri (cran-uri "circular" version))
13588 (sha256
13589 (base32
13590 "1qmwj1pf37lc2s5r83y7nqckscznqhbsv66bdfgfbby7x4qkwga8"))))
13591 (build-system r-build-system)
13592 (propagated-inputs
13593 (list r-boot r-mvtnorm))
13594 (native-inputs
13595 (list gfortran))
13596 (home-page "https://cran.r-project.org/web/packages/circular/")
13597 (synopsis "Circular statistics")
13598 (description
13599 "This package provides tools for circular statistics, from \"Topics in
13600 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
13601 Scientific.")
13602 (license license:gpl2+)))
13603
13604 (define-public r-activity
13605 (package
13606 (name "r-activity")
13607 (version "1.3.2")
13608 (source
13609 (origin
13610 (method url-fetch)
13611 (uri (cran-uri "activity" version))
13612 (sha256
13613 (base32
13614 "11n6wmqz7p3428rr615f92m61a5gb908xpn4l8q484h61bwg38c3"))))
13615 (build-system r-build-system)
13616 (propagated-inputs
13617 (list r-insol r-pbapply))
13618 (home-page "https://cran.r-project.org/web/packages/activity/")
13619 (synopsis "Animal activity statistics")
13620 (description
13621 "This package provides functions to fit kernel density functions to
13622 animal activity time data; plot activity distributions; quantify overall
13623 levels of activity; statistically compare activity metrics through
13624 bootstrapping; and evaluate variation in linear variables with time (or other
13625 circular variables).")
13626 (license license:gpl3)))
13627
13628 (define-public r-ouch
13629 (package
13630 (name "r-ouch")
13631 (version "2.18")
13632 (source
13633 (origin
13634 (method url-fetch)
13635 (uri (cran-uri "ouch" version))
13636 (sha256
13637 (base32
13638 "119s9llpjy0b4q830xig2xr66fq6izp6mr2k4k79ggmf3gxww8as"))))
13639 (build-system r-build-system)
13640 (propagated-inputs (list r-subplex))
13641 (home-page "https://kingaa.github.io/ouch/")
13642 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
13643 (description
13644 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
13645 for evolution along a phylogenetic tree.")
13646 (license license:gpl2+)))
13647
13648 (define-public r-fmsb
13649 (package
13650 (name "r-fmsb")
13651 (version "0.7.3")
13652 (source
13653 (origin
13654 (method url-fetch)
13655 (uri (cran-uri "fmsb" version))
13656 (sha256
13657 (base32
13658 "1gi94xr0b1yk9xzwfprfafxi25yic1lcivd66p73n6iqfzdaimbk"))))
13659 (build-system r-build-system)
13660 (home-page "http://minato.sip21c.org/msb/")
13661 (synopsis "Functions for medical statistics book with demographic data")
13662 (description
13663 "This package provides several utility functions for the book entitled
13664 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
13665 Japan, 2007) with Japanese demographic data and some demographic analysis
13666 related functions.")
13667 (license license:gpl2+)))
13668
13669 (define-public r-stabledist
13670 (package
13671 (name "r-stabledist")
13672 (version "0.7-1")
13673 (source
13674 (origin
13675 (method url-fetch)
13676 (uri (cran-uri "stabledist" version))
13677 (sha256
13678 (base32
13679 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
13680 (build-system r-build-system)
13681 (home-page "https://www.rmetrics.org")
13682 (synopsis "Stable distribution functions")
13683 (description
13684 "This package provides density, probability and quantile functions, and
13685 random number generation for (skew) stable distributions, using the
13686 parametrizations of Nolan.")
13687 (license license:gpl2+)))
13688
13689 (define-public r-gsl
13690 (package
13691 (name "r-gsl")
13692 (version "2.1-7.1")
13693 (source
13694 (origin
13695 (method url-fetch)
13696 (uri (cran-uri "gsl" version))
13697 (sha256
13698 (base32
13699 "118rj9kjx9rzlynvhrly19qz3yxg8jzws35971ssgzrp5lwd367f"))))
13700 (build-system r-build-system)
13701 (inputs
13702 (list gsl))
13703 (home-page "https://cran.r-project.org/web/packages/gsl")
13704 (synopsis "Wrapper for the GNU Scientific Library")
13705 (description
13706 "This package provides an R wrapper for the special functions and quasi
13707 random number generators of the GNU Scientific Library.")
13708 (license license:gpl2+)))
13709
13710 (define-public r-adgoftest
13711 (package
13712 (name "r-adgoftest")
13713 (version "0.3")
13714 (source
13715 (origin
13716 (method url-fetch)
13717 (uri (cran-uri "ADGofTest" version))
13718 (sha256
13719 (base32
13720 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
13721 (properties `((upstream-name . "ADGofTest")))
13722 (build-system r-build-system)
13723 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
13724 (synopsis "Anderson-Darling GoF test")
13725 (description
13726 "This package provides an implementation of the Anderson-Darling GoF test
13727 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
13728 Anderson-Darling Distribution\".")
13729 ;; Any version of the GPL.
13730 (license license:gpl3+)))
13731
13732 (define-public r-admisc
13733 (package
13734 (name "r-admisc")
13735 (version "0.27")
13736 (source
13737 (origin
13738 (method url-fetch)
13739 (uri (cran-uri "admisc" version))
13740 (sha256
13741 (base32 "07hfrhv3pcldsffnyfzpa1q3x32gxr1386r8fik1nhql2w46mm13"))))
13742 (properties `((upstream-name . "admisc")))
13743 (build-system r-build-system)
13744 (home-page "https://github.com/dusadrian/admisc")
13745 (synopsis "Adrian Dusa's miscellaneous")
13746 (description
13747 "This package contains miscellaneous functions used to interpret and
13748 translate, factorize and negate Sum of Products expressions, for both binary
13749 and multi-value crisp sets, and to extract information (set names, set values)
13750 from those expressions. Other functions perform various other checks if
13751 possibly numeric (even if all numbers reside in a character vector) and coerce
13752 to numeric, or check if the numbers are whole. It also offers, among many
13753 others, a highly flexible recoding routine and a more flexible alternative to
13754 the base function @code{with()}.")
13755 (license license:gpl3+)))
13756
13757 (define-public r-sodium
13758 (package
13759 (name "r-sodium")
13760 (version "1.2.0")
13761 (source
13762 (origin
13763 (method url-fetch)
13764 (uri (cran-uri "sodium" version))
13765 (sha256
13766 (base32
13767 "0x4jb3cf1nv1spz1jc9xp8hly2b4a7nj48xr4s33jnfcpdjkmn5q"))))
13768 (properties `((upstream-name . "sodium")))
13769 (build-system r-build-system)
13770 (inputs
13771 (list libsodium))
13772 (native-inputs
13773 (list pkg-config r-knitr))
13774 (home-page "https://github.com/jeroen/sodium")
13775 (synopsis "R bindings to the libsodium crypto library")
13776 (description
13777 "This package provides bindings to libsodium: a library for encryption,
13778 decryption, signatures, password hashing and more. Sodium uses curve25519, a
13779 Diffie-Hellman function by Daniel Bernstein, which has become very popular
13780 after it was discovered that the NSA had backdoored Dual EC DRBG.")
13781 (license license:expat)))
13782
13783 (define-public r-softimpute
13784 (package
13785 (name "r-softimpute")
13786 (version "1.4-1")
13787 (source
13788 (origin
13789 (method url-fetch)
13790 (uri (cran-uri "softImpute" version))
13791 (sha256
13792 (base32
13793 "1v2a4d688ij5zcvkzpra9yx40xckdfnllnfnyq2450zf3n1kjk7a"))))
13794 (properties `((upstream-name . "softImpute")))
13795 (build-system r-build-system)
13796 (propagated-inputs
13797 (list r-matrix))
13798 (native-inputs
13799 (list gfortran r-knitr))
13800 (home-page "https://cran.r-project.org/web/packages/softImpute")
13801 (synopsis "Matrix completion via iterative soft-thresholded SVD")
13802 (description
13803 "This package provides iterative methods for matrix completion that use
13804 nuclear-norm regularization. The package includes procedures for centering
13805 and scaling rows, columns or both, and for computing low-rank @dfn{single
13806 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
13807 components).")
13808 (license license:gpl2)))
13809
13810 (define-public r-fftwtools
13811 (package
13812 (name "r-fftwtools")
13813 (version "0.9-11")
13814 (source
13815 (origin
13816 (method url-fetch)
13817 (uri (cran-uri "fftwtools" version))
13818 (sha256
13819 (base32
13820 "0zrchp4l0jdbir2gibjf00x225y9giqk80zvqmr2yyvc12lwkw7i"))))
13821 (build-system r-build-system)
13822 (inputs (list fftw))
13823 (native-inputs
13824 (list pkg-config))
13825 (home-page "https://github.com/krahim/fftwtools")
13826 (synopsis "Wrapper for FFTW3")
13827 (description
13828 "This package provides a wrapper for several FFTW functions. It provides
13829 access to the two-dimensional FFT, the multivariate FFT, and the
13830 one-dimensional real to complex FFT using the FFTW3 library. The package
13831 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
13832 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
13833 The FFT functions have a parameter that allows them to not return the
13834 redundant complex conjugate when the input is real data.")
13835 (license license:gpl2+)))
13836
13837 (define-public r-tiff
13838 (package
13839 (name "r-tiff")
13840 (version "0.1-11")
13841 (source
13842 (origin
13843 (method url-fetch)
13844 (uri (cran-uri "tiff" version))
13845 (sha256
13846 (base32
13847 "0xgc7vyndxxahfhc2qqzmwi56bnfyl0pn72l820jz5sd24aymhxq"))))
13848 (build-system r-build-system)
13849 (inputs
13850 (list libtiff libjpeg-turbo zlib))
13851 (native-inputs
13852 (list pkg-config))
13853 (home-page "https://www.rforge.net/tiff/")
13854 (synopsis "Read and write TIFF images")
13855 (description
13856 "This package provides an easy and simple way to read, write and display
13857 bitmap images stored in the TIFF format. It can read and write both files and
13858 in-memory raw vectors.")
13859 ;; Either of these two license versions.
13860 (license (list license:gpl2 license:gpl3))))
13861
13862 (define-public r-nlp
13863 (package
13864 (name "r-nlp")
13865 (version "0.2-1")
13866 (source
13867 (origin
13868 (method url-fetch)
13869 (uri (cran-uri "NLP" version))
13870 (sha256
13871 (base32
13872 "1dpj04fmld2lnhg072ahgjbhmciqqy9h1lrz0wf32mr7mm9s9sh5"))))
13873 (properties `((upstream-name . "NLP")))
13874 (build-system r-build-system)
13875 (home-page "https://cran.r-project.org/web/packages/NLP/")
13876 (synopsis "Natural language processing infrastructure")
13877 (description
13878 "This package provides basic classes and methods for Natural Language
13879 Processing.")
13880 (license license:gpl3)))
13881
13882 (define-public r-tm
13883 (package
13884 (name "r-tm")
13885 (version "0.7-8")
13886 (source
13887 (origin
13888 (method url-fetch)
13889 (uri (cran-uri "tm" version))
13890 (sha256
13891 (base32
13892 "0mk2lsplynms15nw92vbdgsafg4bw1m0ik31gch1mnsnv61idsxi"))))
13893 (properties `((upstream-name . "tm")))
13894 (build-system r-build-system)
13895 (propagated-inputs
13896 (list r-bh r-nlp r-rcpp r-slam r-xml2))
13897 (home-page "http://tm.r-forge.r-project.org/")
13898 (synopsis "Text mining package")
13899 (description
13900 "This package provides a framework for text mining applications within R.")
13901 (license license:gpl3)))
13902
13903 (define-public r-waveslim
13904 (package
13905 (name "r-waveslim")
13906 (version "1.8.2")
13907 (source
13908 (origin
13909 (method url-fetch)
13910 (uri (cran-uri "waveslim" version))
13911 (sha256
13912 (base32
13913 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
13914 (build-system r-build-system)
13915 (native-inputs
13916 (list gfortran))
13917 (home-page "http://waveslim.blogspot.com")
13918 (synopsis "Basic wavelet routines for signal processing")
13919 (description
13920 "This package provides basic wavelet routines for time series (1D),
13921 image (2D) and array (3D) analysis. The code provided here is based on
13922 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
13923 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
13924 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
13925 pairs (Selesnick 2001, 2002).")
13926 (license license:bsd-3)))
13927
13928 (define-public r-wordcloud
13929 (package
13930 (name "r-wordcloud")
13931 (version "2.6")
13932 (source
13933 (origin
13934 (method url-fetch)
13935 (uri (cran-uri "wordcloud" version))
13936 (sha256
13937 (base32
13938 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
13939 (build-system r-build-system)
13940 (propagated-inputs
13941 (list r-rcolorbrewer r-rcpp
13942 ;; The "tm" package is only "suggested" according to CRAN, but the
13943 ;; wordcloud package cannot be loaded without it.
13944 r-tm))
13945 (home-page "https://cran.r-project.org/web/packages/wordcloud")
13946 (synopsis "Word clouds")
13947 (description
13948 "This package provides functionality to create pretty word clouds,
13949 visualize differences and similarity between documents, and avoid
13950 over-plotting in scatter plots with text.")
13951 (license license:lgpl2.1)))
13952
13953 (define-public r-colorramps
13954 (package
13955 (name "r-colorramps")
13956 (version "2.3.1")
13957 (source
13958 (origin
13959 (method url-fetch)
13960 (uri (cran-uri "colorRamps" version))
13961 (sha256
13962 (base32
13963 "12jnkj50yh2hc5l7j56lrrrmn58akrj9dwj98vzf42iq4h42kwb1"))))
13964 (properties `((upstream-name . "colorRamps")))
13965 (build-system r-build-system)
13966 (home-page "https://cran.r-project.org/web/packages/colorRamps")
13967 (synopsis "Build color tables")
13968 (description "This package provides features to build gradient color
13969 maps.")
13970 ;; Any version of the GPL
13971 (license license:gpl3+)))
13972
13973 (define-public r-tidytree
13974 (package
13975 (name "r-tidytree")
13976 (version "0.3.9")
13977 (source
13978 (origin
13979 (method url-fetch)
13980 (uri (cran-uri "tidytree" version))
13981 (sha256
13982 (base32 "1prfv2jy6z4zp4gyi9krzbysipsbnjrkxcccflm4nwsd9i7mshqj"))))
13983 (build-system r-build-system)
13984 (propagated-inputs
13985 (list r-ape
13986 r-dplyr
13987 r-lazyeval
13988 r-magrittr
13989 r-pillar
13990 r-rlang
13991 r-tibble
13992 r-tidyr
13993 r-tidyselect
13994 r-yulab-utils))
13995 (native-inputs
13996 (list r-knitr))
13997 (home-page "https://github.com/GuangchuangYu/tidytree")
13998 (synopsis "Tidy tool for phylogenetic tree data manipulation")
13999 (description
14000 "Phylogenetic trees generally contain multiple components including nodes,
14001 edges, branches and associated data. This package provides an approach to
14002 convert tree objects to tidy data frames. It also provides tidy interfaces to
14003 manipulate tree data.")
14004 (license license:artistic2.0)))
14005
14006 (define-public r-rvcheck
14007 (package
14008 (name "r-rvcheck")
14009 (version "0.2.1")
14010 (source
14011 (origin
14012 (method url-fetch)
14013 (uri (cran-uri "rvcheck" version))
14014 (sha256
14015 (base32 "09khjklvzbafd7r55496by01a9g3y291d87hpy43w44dmz9fzn9a"))))
14016 (build-system r-build-system)
14017 (propagated-inputs
14018 (list r-biocmanager r-yulab-utils))
14019 (home-page "https://cran.r-project.org/web/packages/rvcheck")
14020 (synopsis "R package version check")
14021 (description
14022 "This package provides tools to check the latest release version of R and
14023 R packages (on CRAN, Bioconductor or Github).")
14024 (license license:artistic2.0)))
14025
14026 (define-public r-docopt
14027 (package
14028 (name "r-docopt")
14029 (version "0.7.1")
14030 (source
14031 (origin
14032 (method url-fetch)
14033 (uri (cran-uri "docopt" version))
14034 (sha256
14035 (base32
14036 "1zxhwizs916qm5by7nfslqnarl2q5202xc2azlhrnzk0wj3khiwz"))))
14037 (build-system r-build-system)
14038 (home-page "https://github.com/docopt/docopt.R")
14039 (synopsis "Command-line interface specification language")
14040 (description
14041 "This package enables you to define a command-line interface by just
14042 giving it a description in the specific format.")
14043 (license license:expat)))
14044
14045 (define-public r-sparsesvd
14046 (package
14047 (name "r-sparsesvd")
14048 (version "0.2")
14049 (source
14050 (origin
14051 (method url-fetch)
14052 (uri (cran-uri "sparsesvd" version))
14053 (sha256
14054 (base32
14055 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
14056 (build-system r-build-system)
14057 (propagated-inputs (list r-matrix))
14058 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
14059 (synopsis "Sparse truncated singular value decomposition")
14060 (description
14061 "This package provides a Wrapper around the SVDLIBC library
14062 for (truncated) singular value decomposition of a sparse matrix. Currently,
14063 only sparse real matrices in Matrix package format are supported.")
14064 ;; SVDLIBC is released under BSD-2. The R interface is released under
14065 ;; BSD-3.
14066 (license (list license:bsd-3 license:bsd-2))))
14067
14068 (define-public r-speedglm
14069 (package
14070 (name "r-speedglm")
14071 (version "0.3-4")
14072 (source
14073 (origin
14074 (method url-fetch)
14075 (uri (cran-uri "speedglm" version))
14076 (sha256
14077 (base32
14078 "1kj662nfkfhvx37jrbvxd4dyjclz5cm3xh50z7s5rbzapiyxn4hs"))))
14079 (build-system r-build-system)
14080 (propagated-inputs
14081 (list r-mass r-matrix))
14082 (home-page "https://cran.r-project.org/web/packages/speedglm")
14083 (synopsis "Fit linear and generalized linear models to large data sets")
14084 (description
14085 "This package provides tools for fitting linear models and generalized
14086 linear models to large data sets by updating algorithms.")
14087 ;; Any version of the GPL
14088 (license license:gpl2+)))
14089
14090 (define-public r-densityclust
14091 (package
14092 (name "r-densityclust")
14093 (version "0.3.2")
14094 (source
14095 (origin
14096 (method url-fetch)
14097 (uri (cran-uri "densityClust" version))
14098 (sha256
14099 (base32
14100 "05x2fi1zdnkrg2nimf8k904j3lpyw0f7nmk6ax5p7x7a98wb2iqs"))))
14101 (properties `((upstream-name . "densityClust")))
14102 (build-system r-build-system)
14103 (propagated-inputs
14104 (list r-fnn
14105 r-ggplot2
14106 r-ggrepel
14107 r-gridextra
14108 r-rcolorbrewer
14109 r-rcpp
14110 r-rtsne))
14111 (home-page "https://cran.r-project.org/web/packages/densityClust")
14112 (synopsis "Clustering by fast search and find of density peaks")
14113 (description
14114 "This package provides an improved implementation (based on k-nearest
14115 neighbors) of the density peak clustering algorithm, originally described by
14116 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
14117 large datasets (> 100,000 samples) very efficiently.")
14118 (license license:gpl2+)))
14119
14120 (define-public r-combinat
14121 (package
14122 (name "r-combinat")
14123 (version "0.0-8")
14124 (source
14125 (origin
14126 (method url-fetch)
14127 (uri (cran-uri "combinat" version))
14128 (sha256
14129 (base32
14130 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
14131 (build-system r-build-system)
14132 (home-page "https://cran.r-project.org/web/packages/combinat")
14133 (synopsis "Combinatorics utilities")
14134 (description "This package provides assorted routines for combinatorics.")
14135 (license license:gpl2)))
14136
14137 (define-public r-qlcmatrix
14138 (package
14139 (name "r-qlcmatrix")
14140 (version "0.9.7")
14141 (source
14142 (origin
14143 (method url-fetch)
14144 (uri (cran-uri "qlcMatrix" version))
14145 (sha256
14146 (base32
14147 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
14148 (properties `((upstream-name . "qlcMatrix")))
14149 (build-system r-build-system)
14150 (propagated-inputs
14151 (list r-docopt r-matrix r-slam r-sparsesvd))
14152 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
14153 (synopsis "Sparse matrix functions for quantitative language comparison")
14154 (description
14155 "This package provides an extension of the functionality of the Matrix
14156 package for using sparse matrices. Some of the functions are very general,
14157 while other are highly specific for the special data format used for
14158 @dfn{quantitative language comparison} (QLC).")
14159 (license license:gpl3)))
14160
14161 (define-public r-ddrtree
14162 (package
14163 (name "r-ddrtree")
14164 (version "0.1.5")
14165 (source
14166 (origin
14167 (method url-fetch)
14168 (uri (cran-uri "DDRTree" version))
14169 (sha256
14170 (base32
14171 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
14172 (properties `((upstream-name . "DDRTree")))
14173 (build-system r-build-system)
14174 (propagated-inputs
14175 (list r-bh r-irlba r-rcpp r-rcppeigen))
14176 (home-page "https://cran.r-project.org/web/packages/DDRTree")
14177 (synopsis "Learning principal graphs with DDRTree")
14178 (description
14179 "This package provides an implementation of the framework of
14180 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
14181 dimensional space while constructs a principal tree which passes through the
14182 middle of the data simultaneously. DDRTree shows superiority to
14183 alternatives (Wishbone, DPT) for inferring the ordering as well as the
14184 intrinsic structure of single cell genomics data. In general, it could be
14185 used to reconstruct the temporal progression as well as the bifurcation
14186 structure of any data type.")
14187 (license license:asl2.0)))
14188
14189 (define-public r-corpcor
14190 (package
14191 (name "r-corpcor")
14192 (version "1.6.10")
14193 (source
14194 (origin
14195 (method url-fetch)
14196 (uri (cran-uri "corpcor" version))
14197 (sha256
14198 (base32
14199 "028fw61n61i79fhnaqx7gmdifdpbvp3yiaq9vvfrbv4k7i84r83i"))))
14200 (build-system r-build-system)
14201 (home-page "http://strimmerlab.org/software/corpcor/")
14202 (synopsis "Efficient estimation of covariance and (partial) correlation")
14203 (description
14204 "This package implements a James-Stein-type shrinkage estimator for the
14205 covariance matrix, with separate shrinkage for variances and correlations.
14206 Furthermore, functions are available for fast singular value decomposition,
14207 for computing the pseudoinverse, and for checking the rank and positive
14208 definiteness of a matrix.")
14209 (license license:gpl3+)))
14210
14211 (define-public r-rspectra
14212 (package
14213 (name "r-rspectra")
14214 (version "0.16-1")
14215 (source
14216 (origin
14217 (method url-fetch)
14218 (uri (cran-uri "RSpectra" version))
14219 (sha256
14220 (base32
14221 "16ij84wgpsmqmnxqiii8dgihy3bfxazry9znmckhwzba7m0d79fb"))))
14222 (properties `((upstream-name . "RSpectra")))
14223 (build-system r-build-system)
14224 (propagated-inputs
14225 (list r-matrix r-rcpp r-rcppeigen))
14226 (native-inputs
14227 (list r-knitr))
14228 (home-page "https://github.com/yixuan/RSpectra")
14229 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
14230 (description
14231 "This package provides an R interface to the Spectra library for
14232 large-scale eigenvalue and SVD problems. It is typically used to compute a
14233 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
14234 which is usually more efficient than @code{eigen()} if k << n.")
14235 ;; MPL 2 or later.
14236 (license license:mpl2.0)))
14237
14238 (define-public r-vbsr
14239 (package
14240 (name "r-vbsr")
14241 (version "0.0.5")
14242 (source
14243 (origin
14244 (method url-fetch)
14245 (uri (cran-uri "vbsr" version))
14246 (sha256
14247 (base32
14248 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
14249 (build-system r-build-system)
14250 (home-page "https://cran.r-project.org/web/packages/vbsr")
14251 (synopsis "Variational Bayes spike regression regularized linear models")
14252 (description
14253 "This package provides an efficient algorithm for solving ultra-sparse
14254 regularized regression models using a variational Bayes algorithm with a spike
14255 prior. The algorithm is solved on a path, with coordinate updates, and is
14256 capable of generating very sparse models. Very general model
14257 diagnostics for controlling type-1 errors are also provided.")
14258 (license license:gpl2)))
14259
14260 (define-public r-flare
14261 (package
14262 (name "r-flare")
14263 (version "1.7.0.1")
14264 (source
14265 (origin
14266 (method url-fetch)
14267 (uri (cran-uri "flare" version))
14268 (sha256
14269 (base32
14270 "1xvrbvq2y7zfp98ijal3z8y1w2xbzfcdykzw4pqc3mnh0qrhq2d5"))))
14271 (build-system r-build-system)
14272 (propagated-inputs
14273 (list r-igraph r-lattice r-mass r-matrix))
14274 (home-page "https://cran.r-project.org/web/packages/flare")
14275 (synopsis "Family of Lasso regression implementations")
14276 (description
14277 "This package provides implementations of a family of Lasso variants
14278 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
14279 high dimensional sparse linear models.")
14280 (license license:gpl2)))
14281
14282 (define-public r-lassopv
14283 (package
14284 (name "r-lassopv")
14285 (version "0.2.0")
14286 (source
14287 (origin
14288 (method url-fetch)
14289 (uri (cran-uri "lassopv" version))
14290 (sha256
14291 (base32
14292 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
14293 (build-system r-build-system)
14294 (propagated-inputs (list r-lars))
14295 (home-page "https://github.com/lingfeiwang/lassopv")
14296 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
14297 (description
14298 "This package enables you to estimate the p-values for predictors x
14299 against target variable y in Lasso regression, using the regularization
14300 strength when each predictor enters the active set of regularization path for
14301 the first time as the statistic.")
14302 (license license:gpl3)))
14303
14304 (define-public r-splitstackshape
14305 (package
14306 (name "r-splitstackshape")
14307 (version "1.4.8")
14308 (source
14309 (origin
14310 (method url-fetch)
14311 (uri (cran-uri "splitstackshape" version))
14312 (sha256
14313 (base32
14314 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
14315 (build-system r-build-system)
14316 (propagated-inputs
14317 (list r-data-table))
14318 (home-page "https://github.com/mrdwab/splitstackshape")
14319 (synopsis "Stack and reshape datasets after splitting concatenated values")
14320 (description
14321 "Online data collection tools like Google Forms often export
14322 multiple-response questions with data concatenated in cells. The
14323 @code{concat.split} (cSplit) family of functions provided by this package
14324 splits such data into separate cells. This package also includes functions to
14325 stack groups of columns and to reshape wide data, even when the data are
14326 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
14327 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
14328 handle.")
14329 (license license:gpl3)))
14330
14331 (define-public r-tfmpvalue
14332 (package
14333 (name "r-tfmpvalue")
14334 (version "0.0.8")
14335 (source
14336 (origin
14337 (method url-fetch)
14338 (uri (cran-uri "TFMPvalue" version))
14339 (sha256
14340 (base32
14341 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
14342 (properties `((upstream-name . "TFMPvalue")))
14343 (build-system r-build-system)
14344 (propagated-inputs (list r-rcpp))
14345 (home-page "https://github.com/ge11232002/TFMPvalue")
14346 (synopsis "P-value computation for position weight matrices")
14347 (description
14348 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
14349 identification from sequence/alignments, we are interested in the significance
14350 of certain match scores. TFMPvalue provides the accurate calculation of a
14351 p-value with a score threshold for position weight matrices, or the score with
14352 a given p-value. It is an interface to code originally made available by
14353 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
14354 Touzet and Varre (2007).")
14355 (license license:gpl2)))
14356
14357 (define-public r-rncl
14358 (package
14359 (name "r-rncl")
14360 (version "0.8.6")
14361 (source (origin
14362 (method url-fetch)
14363 (uri (cran-uri "rncl" version))
14364 (sha256
14365 (base32
14366 "1ywgwqn82z8h6zpcxxq4hgngdpfa6dj0lr7bfq4cwfml9z075jgw"))))
14367 (build-system r-build-system)
14368 (propagated-inputs
14369 (list r-progress r-rcpp))
14370 (home-page "https://github.com/fmichonneau/rncl")
14371 (synopsis "Interface to the Nexus class library")
14372 (description "This package provides an interface to the Nexus class
14373 library which allows parsing of NEXUS, Newick and other phylogenetic tree
14374 file formats. It provides elements of the file that can be used to build
14375 phylogenetic objects such as @code{ape}'s @code{phylo} or @code{phylobase}'s
14376 @code{phylo4(d)}. This functionality is demonstrated with
14377 @code{read_newick_phylo()} and @code{read_nexus_phylo()}.")
14378 (license license:bsd-2)))
14379
14380 (define-public r-phylobase
14381 (package
14382 (name "r-phylobase")
14383 (version "0.8.10")
14384 (source (origin
14385 (method url-fetch)
14386 (uri (cran-uri "phylobase" version))
14387 (sha256
14388 (base32
14389 "0jzr1gdvmi4l640hwwzh9bxqmpja69bn3ygnaqx37awvyh7khi2s"))))
14390 (build-system r-build-system)
14391 (propagated-inputs
14392 (list r-ade4 r-ape r-rcpp r-rncl r-rnexml))
14393 (native-inputs
14394 (list r-knitr))
14395 (home-page "https://github.com/fmichonneau/phylobase")
14396 (synopsis "Base package for phylogenetic structures and comparative data")
14397 (description "This package provides a base @code{S4} class for comparative
14398 methods, incorporating one or more trees and trait data.")
14399 (license license:gpl2+)))
14400
14401 (define-public r-rnexml
14402 (package
14403 (name "r-rnexml")
14404 (version "2.4.7")
14405 (source (origin
14406 (method url-fetch)
14407 (uri (cran-uri "RNeXML" version))
14408 (sha256
14409 (base32
14410 "1zp6pijsc73jx8cmxb1hng36nvaf5wnhldnzlqhmba9kv9niscfb"))))
14411 (build-system r-build-system)
14412 (propagated-inputs
14413 (list r-ape
14414 r-dplyr
14415 r-httr
14416 r-lazyeval
14417 r-plyr
14418 r-reshape2
14419 r-rlang
14420 r-stringi
14421 r-stringr
14422 r-tidyr
14423 r-uuid
14424 r-xml
14425 r-xml2))
14426 (native-inputs
14427 (list r-knitr))
14428 (home-page "https://docs.ropensci.org/RNeXML/")
14429 (synopsis "Semantically rich I/O for the NeXML Format")
14430 (description "This package provides access to phyloinformatic data in
14431 NeXML format. The package should add new functionality to R such as the
14432 possibility to manipulate NeXML objects in more various and refined way
14433 and compatibility with @code{ape} objects.")
14434 (license license:bsd-3)))
14435
14436 (define-public r-rnifti
14437 (package
14438 (name "r-rnifti")
14439 (version "1.4.0")
14440 (source
14441 (origin
14442 (method url-fetch)
14443 (uri (cran-uri "RNifti" version))
14444 (sha256
14445 (base32
14446 "0kkj9dby85iwnlqb7zwrh1xidlvqip7i1mbgckb5qg4b0a3zgibc"))))
14447 (properties `((upstream-name . "RNifti")))
14448 (build-system r-build-system)
14449 (inputs (list zlib))
14450 (propagated-inputs (list r-rcpp))
14451 (home-page "https://github.com/jonclayden/RNifti")
14452 (synopsis "Fast R and C++ access to NIfTI images")
14453 (description
14454 "This package provides very fast read and write access to images stored
14455 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
14456 compiled C and interpreted R code. It also provides a C/C++ API that can be
14457 used by other packages.")
14458 (license license:gpl2)))
14459
14460 (define-public r-shades
14461 (package
14462 (name "r-shades")
14463 (version "1.4.0")
14464 (source
14465 (origin
14466 (method url-fetch)
14467 (uri (cran-uri "shades" version))
14468 (sha256
14469 (base32
14470 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
14471 (build-system r-build-system)
14472 (home-page "https://github.com/jonclayden/shades")
14473 (synopsis "Simple color manipulation")
14474 (description
14475 "This package provides functions for easily manipulating colors,
14476 creating color scales and calculating color distances.")
14477 (license license:bsd-3)))
14478
14479 (define-public r-ore
14480 (package
14481 (name "r-ore")
14482 (version "1.7.1.1")
14483 (source
14484 (origin
14485 (method url-fetch)
14486 (uri (cran-uri "ore" version))
14487 (sha256
14488 (base32 "0rs5r5h11x4l4nsbl4xqzbl4ahajd5374fq05abcmfjnjr9j64w5"))))
14489 (build-system r-build-system)
14490 (home-page "https://github.com/jonclayden/ore")
14491 (synopsis "R interface to the Onigmo regular expression library")
14492 (description
14493 "This package provides an alternative to R's built-in functionality for
14494 handling regular expressions, based on the Onigmo library. It offers
14495 first-class compiled regex objects, partial matching and function-based
14496 substitutions, amongst other features.")
14497 (license license:bsd-3)))
14498
14499 (define-public r-reportr
14500 (package
14501 (name "r-reportr")
14502 (version "1.3.0")
14503 (source
14504 (origin
14505 (method url-fetch)
14506 (uri (cran-uri "reportr" version))
14507 (sha256
14508 (base32
14509 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
14510 (build-system r-build-system)
14511 (propagated-inputs (list r-ore))
14512 (home-page "https://github.com/jonclayden/reportr")
14513 (synopsis "General message and error reporting system")
14514 (description
14515 "This package provides a system for reporting messages, which offers
14516 certain useful features over the standard R system, such as the incorporation
14517 of output consolidation, message filtering, assertions, expression
14518 substitution, automatic generation of stack traces for debugging, and
14519 conditional reporting based on the current \"output level\".")
14520 (license license:gpl2)))
14521
14522 (define-public r-tractor-base
14523 (package
14524 (name "r-tractor-base")
14525 (version "3.3.3.1")
14526 (source
14527 (origin
14528 (method url-fetch)
14529 (uri (cran-uri "tractor.base" version))
14530 (sha256
14531 (base32
14532 "0w5jw7pf77npkgig7667yikpbwv4dfk1dcq63qm88l409ga2f95p"))))
14533 (properties `((upstream-name . "tractor.base")))
14534 (build-system r-build-system)
14535 (propagated-inputs
14536 (list r-ore r-reportr r-rnifti r-shades))
14537 (home-page "https://www.tractor-mri.org.uk")
14538 (synopsis "Read, manipulate and visualize magnetic resonance images")
14539 (description
14540 "This package provides functions for working with magnetic resonance
14541 images. It supports reading and writing of popular file formats (DICOM,
14542 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
14543 visualization; flexible image manipulation; metadata and sparse image
14544 handling.")
14545 (license license:gpl2)))
14546
14547 (define-public r-grimport
14548 (package
14549 (name "r-grimport")
14550 (version "0.9-5")
14551 (source
14552 (origin
14553 (method url-fetch)
14554 (uri (cran-uri "grImport" version))
14555 (sha256
14556 (base32
14557 "0pbzc45wgp0cpycnw0bzn65ckdszzay0zrp7c7ssxdkifp8bai3a"))))
14558 (properties `((upstream-name . "grImport")))
14559 (build-system r-build-system)
14560 (inputs
14561 (list ghostscript))
14562 (propagated-inputs
14563 (list r-xml))
14564 (home-page "https://cran.r-project.org/web/packages/grImport")
14565 (synopsis "Convert, import, and draw PostScript pictures")
14566 (description
14567 "This package provides functions for converting, importing, and drawing
14568 PostScript pictures in R plots.")
14569 (license license:gpl2+)))
14570
14571 (define-public r-grimport2
14572 (package
14573 (name "r-grimport2")
14574 (version "0.2-0")
14575 (source
14576 (origin
14577 (method url-fetch)
14578 (uri (cran-uri "grImport2" version))
14579 (sha256
14580 (base32
14581 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
14582 (properties `((upstream-name . "grImport2")))
14583 (build-system r-build-system)
14584 (propagated-inputs
14585 (list r-base64enc r-jpeg r-png r-xml))
14586 (home-page "https://cran.r-project.org/web/packages/grImport2/")
14587 (synopsis "Import SVG graphics")
14588 (description
14589 "This package provides functions for importing external vector images and
14590 drawing them as part of R plots. This package is different from the
14591 @code{grImport} package because, where that package imports PostScript format
14592 images, this package imports SVG format images. Furthermore, this package
14593 imports a specific subset of SVG, so external images must be preprocessed
14594 using a package like @code{rsvg} to produce SVG that this package can import.
14595 SVG features that are not supported by R graphics, such as gradient fills, can
14596 be imported and then exported via the @code{gridSVG} package.")
14597 (license license:gpl2+)))
14598
14599 (define-public r-kohonen
14600 (package
14601 (name "r-kohonen")
14602 (version "3.0.11")
14603 (source
14604 (origin
14605 (method url-fetch)
14606 (uri (cran-uri "kohonen" version))
14607 (sha256
14608 (base32
14609 "1bk3j0n8w4fhffv89rgyn4n21c0wcx6lr8jv4wbagpxprl585381"))))
14610 (build-system r-build-system)
14611 (propagated-inputs
14612 (list r-rcpp))
14613 (home-page "https://cran.r-project.org/web/packages/kohonen")
14614 (synopsis "Supervised and unsupervised self-organising maps")
14615 (description
14616 "This package provides functions to train @dfn{self-organising
14617 maps} (SOMs). Also interrogation of the maps and prediction using trained
14618 maps are supported. The name of the package refers to Teuvo Kohonen, the
14619 inventor of the SOM.")
14620 (license license:gpl2+)))
14621
14622 (define-public r-nnls
14623 (package
14624 (name "r-nnls")
14625 (version "1.4")
14626 (source
14627 (origin
14628 (method url-fetch)
14629 (uri (cran-uri "nnls" version))
14630 (sha256
14631 (base32
14632 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
14633 (build-system r-build-system)
14634 (native-inputs (list gfortran))
14635 (home-page "https://cran.r-project.org/web/packages/nnls")
14636 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
14637 (description
14638 "This package provides an R interface to the Lawson-Hanson implementation
14639 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
14640 the combination of non-negative and non-positive constraints.")
14641 (license license:gpl2+)))
14642
14643 (define-public r-iso
14644 (package
14645 (name "r-iso")
14646 (version "0.0-18.1")
14647 (source
14648 (origin
14649 (method url-fetch)
14650 (uri (cran-uri "Iso" version))
14651 (sha256
14652 (base32
14653 "0vy6jdyvp751430sf2f690yhasjr70cpk3p3lnaaxjq3fs5gg99g"))))
14654 (properties `((upstream-name . "Iso")))
14655 (build-system r-build-system)
14656 (native-inputs (list gfortran))
14657 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
14658 (synopsis "Functions to perform isotonic regression")
14659 (description
14660 "This package provides support for linear order and unimodal
14661 order (univariate) isotonic regression and bivariate isotonic regression with
14662 linear order on both variables.")
14663 (license license:gpl2+)))
14664
14665 (define-public r-chemometricswithr
14666 (package
14667 (name "r-chemometricswithr")
14668 (version "0.1.13")
14669 (source
14670 (origin
14671 (method url-fetch)
14672 (uri (cran-uri "ChemometricsWithR" version))
14673 (sha256
14674 (base32
14675 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
14676 (properties
14677 `((upstream-name . "ChemometricsWithR")))
14678 (build-system r-build-system)
14679 (propagated-inputs
14680 (list r-devtools r-kohonen r-mass r-pls))
14681 (home-page "https://github.com/rwehrens/CWR")
14682 (synopsis "Chemometrics with R")
14683 (description
14684 "This package provides functions and scripts used in the book
14685 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
14686 Life Sciences\" by Ron Wehrens, Springer (2011).")
14687 (license license:gpl2+)))
14688
14689 (define-public r-als
14690 (package
14691 (name "r-als")
14692 (version "0.0.6")
14693 (source
14694 (origin
14695 (method url-fetch)
14696 (uri (cran-uri "ALS" version))
14697 (sha256
14698 (base32
14699 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
14700 (properties `((upstream-name . "ALS")))
14701 (build-system r-build-system)
14702 (propagated-inputs
14703 (list r-iso r-nnls))
14704 (home-page "https://cran.r-project.org/web/packages/ALS")
14705 (synopsis "Multivariate curve resolution alternating least squares")
14706 (description
14707 "Alternating least squares is often used to resolve components
14708 contributing to data with a bilinear structure; the basic technique may be
14709 extended to alternating constrained least squares. This package provides an
14710 implementation of @dfn{multivariate curve resolution alternating least
14711 squares} (MCR-ALS).
14712
14713 Commonly applied constraints include unimodality, non-negativity, and
14714 normalization of components. Several data matrices may be decomposed
14715 simultaneously by assuming that one of the two matrices in the bilinear
14716 decomposition is shared between datasets.")
14717 (license license:gpl2+)))
14718
14719 (define-public r-strucchange
14720 (package
14721 (name "r-strucchange")
14722 (version "1.5-2")
14723 (source
14724 (origin
14725 (method url-fetch)
14726 (uri (cran-uri "strucchange" version))
14727 (sha256
14728 (base32
14729 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
14730 (build-system r-build-system)
14731 (propagated-inputs
14732 (list r-sandwich r-zoo))
14733 (home-page "https://cran.r-project.org/web/packages/strucchange")
14734 (synopsis "Testing, monitoring, and dating structural changes")
14735 (description
14736 "This package provides tools for testing, monitoring and dating
14737 structural changes in (linear) regression models. It features tests/methods
14738 from the generalized fluctuation test framework as well as from the F
14739 test (Chow test) framework. This includes methods to fit, plot and test
14740 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
14741 statistics, respectively. It is possible to monitor incoming data online
14742 using fluctuation processes. Finally, the breakpoints in regression models
14743 with structural changes can be estimated together with confidence intervals.
14744 Emphasis is always given to methods for visualizing the data.")
14745 ;; Either of these two GPL versions
14746 (license (list license:gpl2 license:gpl3))))
14747
14748 (define-public r-pixmap
14749 (package
14750 (name "r-pixmap")
14751 (version "0.4-12")
14752 (source
14753 (origin
14754 (method url-fetch)
14755 (uri (cran-uri "pixmap" version))
14756 (sha256
14757 (base32
14758 "1v1a1adsgh5jlvvi98j4nhb1h681s97ip76zdrga12rlsjaahfw9"))))
14759 (build-system r-build-system)
14760 (home-page "https://cran.r-project.org/web/packages/pixmap")
14761 (synopsis "Tools for bitmap images")
14762 (description
14763 "This package provides functions for importing, exporting, plotting and
14764 other manipulations of bitmapped images.")
14765 (license license:gpl2)))
14766
14767 (define-public r-rapidjsonr
14768 (package
14769 (name "r-rapidjsonr")
14770 (version "1.2.0")
14771 (source
14772 (origin
14773 (method url-fetch)
14774 (uri (cran-uri "rapidjsonr" version))
14775 (sha256
14776 (base32
14777 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
14778 (build-system r-build-system)
14779 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
14780 (synopsis "JSON parser")
14781 (description
14782 "This package provides JSON parsing capability through the Rapidjson
14783 library.")
14784 (license license:expat)))
14785
14786 (define-public r-ontologyindex
14787 (package
14788 (name "r-ontologyindex")
14789 (version "2.7")
14790 (source
14791 (origin
14792 (method url-fetch)
14793 (uri (cran-uri "ontologyIndex" version))
14794 (sha256
14795 (base32
14796 "0j3h1spqwjhh1wbmwivmqcyi042yy7d565c3kxgn70xrmy693x1k"))))
14797 (properties `((upstream-name . "ontologyIndex")))
14798 (build-system r-build-system)
14799 (native-inputs
14800 (list r-knitr))
14801 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
14802 (synopsis "Functions for processing ontologies in R")
14803 (description
14804 "This package provides functions for reading ontologies into R as lists
14805 and manipulating sets of ontological terms.")
14806 (license license:gpl2+)))
14807
14808 (define-public r-gargle
14809 (package
14810 (name "r-gargle")
14811 (version "1.2.0")
14812 (source
14813 (origin
14814 (method url-fetch)
14815 (uri (cran-uri "gargle" version))
14816 (sha256
14817 (base32
14818 "0fypj70c1fjmvs57birik76wfx8a2fs4gzicbb52k57i6clwlijd"))))
14819 (build-system r-build-system)
14820 (propagated-inputs
14821 (list r-cli
14822 r-fs
14823 r-glue
14824 r-httr
14825 r-jsonlite
14826 r-rappdirs
14827 r-rlang
14828 r-rstudioapi
14829 r-withr))
14830 (native-inputs
14831 (list r-knitr))
14832 (home-page "https://gargle.r-lib.org")
14833 (synopsis "Utilities for working with Google APIs")
14834 (description
14835 "This package provides utilities for working with Google APIs. This
14836 includes functions and classes for handling common credential types and for
14837 preparing, executing, and processing HTTP requests.")
14838 (license license:expat)))
14839
14840 (define-public r-bigrquery
14841 (package
14842 (name "r-bigrquery")
14843 (version "1.4.0")
14844 (source
14845 (origin
14846 (method url-fetch)
14847 (uri (cran-uri "bigrquery" version))
14848 (sha256
14849 (base32
14850 "02msq61l7vamzpvbhvalh3qil1aa7pr68pwpsivbb6pvz6p4zyns"))))
14851 (build-system r-build-system)
14852 (propagated-inputs
14853 (list r-assertthat
14854 r-bit64
14855 r-curl
14856 r-dbi
14857 r-gargle
14858 r-glue
14859 r-httr
14860 r-jsonlite
14861 r-lifecycle
14862 r-prettyunits
14863 r-progress
14864 r-rapidjsonr
14865 r-rcpp
14866 r-rlang
14867 r-tibble))
14868 (home-page "https://github.com/rstats-db/bigrquery")
14869 (synopsis "R interface to Google's BigQuery API")
14870 (description
14871 "This package provides an R interface to Google's BigQuery database.")
14872 (license license:gpl3)))
14873
14874 (define-public r-gmp
14875 (package
14876 (name "r-gmp")
14877 (version "0.6-5")
14878 (source
14879 (origin
14880 (method url-fetch)
14881 (uri (cran-uri "gmp" version))
14882 (sha256
14883 (base32
14884 "0llyd1wx606vpgvv7d61m0fv2a5yxsmisd38fhzanbjl2wynzrwa"))))
14885 (build-system r-build-system)
14886 (arguments
14887 '(#:phases
14888 (modify-phases %standard-phases
14889 (add-after 'unpack 'set-CC
14890 (lambda _ (setenv "CC" "gcc") #t)))))
14891 (inputs (list gmp))
14892 (home-page "https://cran.r-project.org/web/packages/gmp")
14893 (synopsis "Multiple precision arithmetic")
14894 (description
14895 "This package supports multiple precision arithmetic (big integers and
14896 rationals, prime number tests, matrix computation), \"arithmetic without
14897 limitations\" using the GNU Multiple Precision library.")
14898 ;; Any version of the GPL.
14899 (license license:gpl3+)))
14900
14901 (define-public r-rmpfr
14902 (package
14903 (name "r-rmpfr")
14904 (version "0.8-7")
14905 (source
14906 (origin
14907 (method url-fetch)
14908 (uri (cran-uri "Rmpfr" version))
14909 (sha256
14910 (base32
14911 "1ljpbxvm4agbxnab5dfffbpw5k964hy3gw57dzydq1gpbxwdphlk"))))
14912 (properties `((upstream-name . "Rmpfr")))
14913 (build-system r-build-system)
14914 (inputs
14915 (list mpfr gmp))
14916 (propagated-inputs
14917 (list r-gmp))
14918 (native-inputs
14919 (list pkg-config))
14920 (home-page "http://rmpfr.r-forge.r-project.org/")
14921 (synopsis "R bindings to the MPFR library")
14922 (description
14923 "This package supports arithmetic (via S4 classes and methods) for
14924 arbitrary precision floating point numbers, including transcendental
14925 functions. To this end, the package interfaces with the @dfn{Multiple
14926 Precision Floating-Point Reliable} (MPFR) library.")
14927 (license license:gpl2+)))
14928
14929 (define-public r-assertive-base
14930 (package
14931 (name "r-assertive-base")
14932 (version "0.0-9")
14933 (source
14934 (origin
14935 (method url-fetch)
14936 (uri (cran-uri "assertive.base" version))
14937 (sha256
14938 (base32
14939 "07m0ddz092bgbl2fn1yk932h0iajdcqkri632477wl5a1q5r3w2b"))))
14940 (properties
14941 `((upstream-name . "assertive.base")))
14942 (build-system r-build-system)
14943 (home-page "https://bitbucket.org/richierocks/assertive.base")
14944 (synopsis "Core of the assertive package")
14945 (description
14946 "This package provides a minimal set of predicates and assertions used by
14947 the assertive package. This is mainly for use by other package developers who
14948 want to include run-time testing features in their own packages.")
14949 (license license:gpl3+)))
14950
14951 (define-public r-assertive-properties
14952 (package
14953 (name "r-assertive-properties")
14954 (version "0.0-5")
14955 (source
14956 (origin
14957 (method url-fetch)
14958 (uri (cran-uri "assertive.properties" version))
14959 (sha256
14960 (base32
14961 "1pgljbwwbvbl4kc5c8mcv0qbzq3k6fzi29k88811yml263sm92dn"))))
14962 (properties
14963 `((upstream-name . "assertive.properties")))
14964 (build-system r-build-system)
14965 (propagated-inputs
14966 (list r-assertive-base))
14967 (home-page "https://bitbucket.org/richierocks/assertive.properties")
14968 (synopsis "Assertions to check properties of variables")
14969 (description
14970 "This package provides a set of predicates and assertions for checking
14971 the properties of variables, such as length, names and attributes. This is
14972 mainly for use by other package developers who want to include run-time
14973 testing features in their own packages.")
14974 (license license:gpl3+)))
14975
14976 (define-public r-assertive-numbers
14977 (package
14978 (name "r-assertive-numbers")
14979 (version "0.0-2")
14980 (source
14981 (origin
14982 (method url-fetch)
14983 (uri (cran-uri "assertive.numbers" version))
14984 (sha256
14985 (base32
14986 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
14987 (properties
14988 `((upstream-name . "assertive.numbers")))
14989 (build-system r-build-system)
14990 (propagated-inputs
14991 (list r-assertive-base))
14992 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
14993 (synopsis "Assertions to check properties of numbers")
14994 (description
14995 "This package provides a set of predicates and assertions for checking
14996 the properties of numbers. This is mainly for use by other package developers
14997 who want to include run-time testing features in their own packages.")
14998 (license license:gpl3+)))
14999
15000 (define-public r-assertive-sets
15001 (package
15002 (name "r-assertive-sets")
15003 (version "0.0-3")
15004 (source
15005 (origin
15006 (method url-fetch)
15007 (uri (cran-uri "assertive.sets" version))
15008 (sha256
15009 (base32
15010 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
15011 (properties
15012 `((upstream-name . "assertive.sets")))
15013 (build-system r-build-system)
15014 (propagated-inputs
15015 (list r-assertive-base))
15016 (home-page "https://bitbucket.org/richierocks/assertive.sets")
15017 (synopsis "Assertions to check properties of sets")
15018 (description
15019 "This package provides a set of predicates and assertions for checking
15020 the properties of sets. This is mainly for use by other package developers
15021 who want to include run-time testing features in their own packages.")
15022 (license license:gpl3+)))
15023
15024 (define-public r-assertive-matrices
15025 (package
15026 (name "r-assertive-matrices")
15027 (version "0.0-2")
15028 (source
15029 (origin
15030 (method url-fetch)
15031 (uri (cran-uri "assertive.matrices" version))
15032 (sha256
15033 (base32
15034 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
15035 (properties
15036 `((upstream-name . "assertive.matrices")))
15037 (build-system r-build-system)
15038 (propagated-inputs
15039 (list r-assertive-base))
15040 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
15041 (synopsis "Assertions to check properties of matrices")
15042 (description
15043 "This package provides a set of predicates and assertions for checking
15044 the properties of matrices. This is mainly for use by other package
15045 developers who want to include run-time testing features in their own
15046 packages.")
15047 (license license:gpl3+)))
15048
15049 (define-public r-assertive-models
15050 (package
15051 (name "r-assertive-models")
15052 (version "0.0-2")
15053 (source
15054 (origin
15055 (method url-fetch)
15056 (uri (cran-uri "assertive.models" version))
15057 (sha256
15058 (base32
15059 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
15060 (properties
15061 `((upstream-name . "assertive.models")))
15062 (build-system r-build-system)
15063 (propagated-inputs
15064 (list r-assertive-base))
15065 (home-page "https://bitbucket.org/richierocks/assertive.models")
15066 (synopsis "Assertions to check properties of models")
15067 (description
15068 "This package provides a set of predicates and assertions for checking
15069 the properties of models. This is mainly for use by other package developers
15070 who want to include run-time testing features in their own packages.")
15071 (license license:gpl3+)))
15072
15073 (define-public r-assertive-reflection
15074 (package
15075 (name "r-assertive-reflection")
15076 (version "0.0-5")
15077 (source
15078 (origin
15079 (method url-fetch)
15080 (uri (cran-uri "assertive.reflection" version))
15081 (sha256
15082 (base32
15083 "1g9lpwzy6r2xmyi2mlbcccnfgyzhzbmx5bsicf3vkffxrlkrpjn2"))))
15084 (properties
15085 `((upstream-name . "assertive.reflection")))
15086 (build-system r-build-system)
15087 (propagated-inputs
15088 (list r-assertive-base))
15089 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
15090 (synopsis "Assertions for checking the state of R")
15091 (description
15092 "This package provides a set of predicates and assertions for checking
15093 the state and capabilities of R, the operating system it is running on, and
15094 the IDE being used. This is mainly for use by other package developers who
15095 want to include run-time testing features in their own packages.")
15096 (license license:gpl3+)))
15097
15098 (define-public r-assertive-types
15099 (package
15100 (name "r-assertive-types")
15101 (version "0.0-3")
15102 (source
15103 (origin
15104 (method url-fetch)
15105 (uri (cran-uri "assertive.types" version))
15106 (sha256
15107 (base32
15108 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
15109 (properties
15110 `((upstream-name . "assertive.types")))
15111 (build-system r-build-system)
15112 (propagated-inputs
15113 (list r-assertive-base r-assertive-properties r-codetools))
15114 (home-page "https://bitbucket.org/richierocks/assertive.types")
15115 (synopsis "Assertions to check types of variables")
15116 (description
15117 "This package provides a set of predicates and assertions for checking
15118 the types of variables. This is mainly for use by other package developers
15119 who want to include run-time testing features in their own packages.")
15120 (license license:gpl3+)))
15121
15122 (define-public r-assertive-files
15123 (package
15124 (name "r-assertive-files")
15125 (version "0.0-2")
15126 (source
15127 (origin
15128 (method url-fetch)
15129 (uri (cran-uri "assertive.files" version))
15130 (sha256
15131 (base32
15132 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
15133 (properties
15134 `((upstream-name . "assertive.files")))
15135 (build-system r-build-system)
15136 (propagated-inputs
15137 (list r-assertive-base r-assertive-numbers))
15138 (home-page "https://bitbucket.org/richierocks/assertive.files")
15139 (synopsis "Assertions to check properties of files")
15140 (description
15141 "This package provides a set of predicates and assertions for checking
15142 the properties of files and connections. This is mainly for use by other
15143 package developers who want to include run-time testing features in their own
15144 packages.")
15145 (license license:gpl3+)))
15146
15147 (define-public r-assertive-code
15148 (package
15149 (name "r-assertive-code")
15150 (version "0.0-3")
15151 (source
15152 (origin
15153 (method url-fetch)
15154 (uri (cran-uri "assertive.code" version))
15155 (sha256
15156 (base32
15157 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
15158 (properties
15159 `((upstream-name . "assertive.code")))
15160 (build-system r-build-system)
15161 (propagated-inputs
15162 (list r-assertive-base r-assertive-properties r-assertive-types))
15163 (home-page "https://bitbucket.org/richierocks/assertive.code")
15164 (synopsis "Assertions to check properties of code")
15165 (description
15166 "This package provides a set of predicates and assertions for checking
15167 the properties of code. This is mainly for use by other package developers
15168 who want to include run-time testing features in their own packages.")
15169 (license license:gpl3+)))
15170
15171 (define-public r-assertive-datetimes
15172 (package
15173 (name "r-assertive-datetimes")
15174 (version "0.0-3")
15175 (source
15176 (origin
15177 (method url-fetch)
15178 (uri (cran-uri "assertive.datetimes" version))
15179 (sha256
15180 (base32
15181 "151d05z8n6dpl44pqsa1jfi0ijbigr3zfc43xlw53nd8ymi22kh1"))))
15182 (properties
15183 `((upstream-name . "assertive.datetimes")))
15184 (build-system r-build-system)
15185 (propagated-inputs
15186 (list r-assertive-base r-assertive-types))
15187 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
15188 (synopsis "Assertions to check properties of dates and times")
15189 (description
15190 "This package provides a set of predicates and assertions for checking
15191 the properties of dates and times. This is mainly for use by other package
15192 developers who want to include run-time testing features in their own
15193 packages.")
15194 (license license:gpl3+)))
15195
15196 (define-public r-assertive-strings
15197 (package
15198 (name "r-assertive-strings")
15199 (version "0.0-3")
15200 (source
15201 (origin
15202 (method url-fetch)
15203 (uri (cran-uri "assertive.strings" version))
15204 (sha256
15205 (base32
15206 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
15207 (properties
15208 `((upstream-name . "assertive.strings")))
15209 (build-system r-build-system)
15210 (propagated-inputs
15211 (list r-assertive-base r-assertive-types r-stringi))
15212 (home-page "https://bitbucket.org/richierocks/assertive.strings")
15213 (synopsis "Assertions to check properties of strings")
15214 (description
15215 "This package provides a set of predicates and assertions for checking
15216 the properties of strings. This is mainly for use by other package developers
15217 who want to include run-time testing features in their own packages.")
15218 (license license:gpl3+)))
15219
15220 (define-public r-assertive-data-us
15221 (package
15222 (name "r-assertive-data-us")
15223 (version "0.0-2")
15224 (source
15225 (origin
15226 (method url-fetch)
15227 (uri (cran-uri "assertive.data.us" version))
15228 (sha256
15229 (base32
15230 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
15231 (properties
15232 `((upstream-name . "assertive.data.us")))
15233 (build-system r-build-system)
15234 (propagated-inputs
15235 (list r-assertive-base r-assertive-strings))
15236 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
15237 (synopsis "Assertions to check properties of strings")
15238 (description
15239 "This package provides a set of predicates and assertions for checking
15240 the properties of US-specific complex data types. This is mainly for use by
15241 other package developers who want to include run-time testing features in
15242 their own packages.")
15243 (license license:gpl3+)))
15244
15245 (define-public r-assertive-data-uk
15246 (package
15247 (name "r-assertive-data-uk")
15248 (version "0.0-2")
15249 (source
15250 (origin
15251 (method url-fetch)
15252 (uri (cran-uri "assertive.data.uk" version))
15253 (sha256
15254 (base32
15255 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
15256 (properties
15257 `((upstream-name . "assertive.data.uk")))
15258 (build-system r-build-system)
15259 (propagated-inputs
15260 (list r-assertive-base r-assertive-strings))
15261 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
15262 (synopsis "Assertions to check properties of strings")
15263 (description
15264 "This package provides a set of predicates and assertions for checking
15265 the properties of UK-specific complex data types. This is mainly for use by
15266 other package developers who want to include run-time testing features in
15267 their own packages.")
15268 (license license:gpl3+)))
15269
15270 (define-public r-assertive-data
15271 (package
15272 (name "r-assertive-data")
15273 (version "0.0-3")
15274 (source
15275 (origin
15276 (method url-fetch)
15277 (uri (cran-uri "assertive.data" version))
15278 (sha256
15279 (base32
15280 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
15281 (properties
15282 `((upstream-name . "assertive.data")))
15283 (build-system r-build-system)
15284 (propagated-inputs
15285 (list r-assertive-base r-assertive-strings))
15286 (home-page "https://bitbucket.org/richierocks/assertive.data")
15287 (synopsis "Assertions to check properties of data")
15288 (description
15289 "This package provides a set of predicates and assertions for checking
15290 the properties of (country independent) complex data types. This is mainly
15291 for use by other package developers who want to include run-time testing
15292 features in their own packages.")
15293 (license license:gpl3+)))
15294
15295 (define-public r-assertive
15296 (package
15297 (name "r-assertive")
15298 (version "0.3-6")
15299 (source
15300 (origin
15301 (method url-fetch)
15302 (uri (cran-uri "assertive" version))
15303 (sha256
15304 (base32
15305 "02palil82idqhhshcdjsfsja9qkqnd0dczqzj5gbccy4hfg1c0y4"))))
15306 (build-system r-build-system)
15307 (propagated-inputs
15308 (list r-assertive-base
15309 r-assertive-code
15310 r-assertive-data
15311 r-assertive-data-uk
15312 r-assertive-data-us
15313 r-assertive-datetimes
15314 r-assertive-files
15315 r-assertive-matrices
15316 r-assertive-models
15317 r-assertive-numbers
15318 r-assertive-properties
15319 r-assertive-reflection
15320 r-assertive-sets
15321 r-assertive-strings
15322 r-assertive-types
15323 r-knitr))
15324 (native-inputs
15325 (list r-knitr))
15326 (home-page "https://bitbucket.org/richierocks/assertive")
15327 (synopsis "Readable check functions to ensure code integrity")
15328 (description
15329 "This package provides lots of predicates (@code{is_*} functions) to
15330 check the state of your variables, and assertions (@code{assert_*} functions)
15331 to throw errors if they aren't in the right form.")
15332 (license license:gpl3+)))
15333
15334 (define-public r-dotcall64
15335 (package
15336 (name "r-dotcall64")
15337 (version "1.0-1")
15338 (source
15339 (origin
15340 (method url-fetch)
15341 (uri (cran-uri "dotCall64" version))
15342 (sha256
15343 (base32
15344 "1im5k8jbviwj2i42mq1kmjskh80isa7jr9w8i0fknidrzzy2h2zi"))))
15345 (properties `((upstream-name . "dotCall64")))
15346 (build-system r-build-system)
15347 (native-inputs (list gfortran))
15348 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
15349 (synopsis "Enhanced foreign function interface supporting long vectors")
15350 (description
15351 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
15352 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
15353 supports long vectors, arguments of type 64-bit integer, and provides a
15354 mechanism to avoid unnecessary copies of read-only and write-only arguments.
15355 This makes it a convenient and fast interface to C/C++ and Fortran code.")
15356 (license license:gpl2+)))
15357
15358 (define-public r-spam
15359 (package
15360 (name "r-spam")
15361 (version "2.8-0")
15362 (source
15363 (origin
15364 (method url-fetch)
15365 (uri (cran-uri "spam" version))
15366 (sha256
15367 (base32 "1ann2a2ifr3z983fcg1c0pkgmbxz6a0ym5q1dmq1r382bd1pg0fr"))))
15368 (build-system r-build-system)
15369 (propagated-inputs
15370 (list r-dotcall64))
15371 (native-inputs
15372 (list gfortran r-knitr))
15373 (home-page "https://www.math.uzh.ch/pages/spam/")
15374 (synopsis "Sparse matrix algebra")
15375 (description
15376 "This package provides a set of functions for sparse matrix algebra.
15377 Differences with other sparse matrix packages are:
15378
15379 @enumerate
15380 @item it only supports (essentially) one sparse matrix format;
15381 @item it is based on transparent and simple structure(s);
15382 @item it is tailored for MCMC calculations within G(M)RF;
15383 @item and it is fast and scalable (with the extension package @code{spam64}).
15384 @end enumerate\n")
15385 ;; Either of these licenses
15386 (license (list license:bsd-3 license:lgpl2.0))))
15387
15388 (define-public r-fields
15389 (package
15390 (name "r-fields")
15391 (version "13.3")
15392 (source
15393 (origin
15394 (method url-fetch)
15395 (uri (cran-uri "fields" version))
15396 (sha256
15397 (base32 "1hs4k5a9hh0r5fsrnpnvs6wvf78xpjzj8a2j6643dsz73a5q6ln6"))))
15398 (build-system r-build-system)
15399 (propagated-inputs
15400 (list r-maps r-spam r-viridis))
15401 (native-inputs
15402 (list gfortran))
15403 (home-page "https://www.image.ucar.edu/fields")
15404 (synopsis "Tools for spatial data")
15405 (description
15406 "This is a package for curve, surface and function fitting with an
15407 emphasis on splines, spatial data and spatial statistics. The major methods
15408 include cubic, and thin plate splines, Kriging, and compactly supported
15409 covariance functions for large data sets.")
15410 (license license:gpl2+)))
15411
15412 (define-public r-spatialextremes
15413 (package
15414 (name "r-spatialextremes")
15415 (version "2.1-0")
15416 (source
15417 (origin
15418 (method url-fetch)
15419 (uri (cran-uri "SpatialExtremes" version))
15420 (sha256
15421 (base32
15422 "0z1swxp1syz8hdskarjxx4sdd7wx835kcnb783bwqm235yh991j3"))))
15423 (properties
15424 `((upstream-name . "SpatialExtremes")))
15425 (build-system r-build-system)
15426 (propagated-inputs
15427 (list r-fields r-maps))
15428 (home-page "http://spatialextremes.r-forge.r-project.org/")
15429 (synopsis "Modelling spatial extremes")
15430 (description
15431 "This package provides tools for the statistical modelling of spatial
15432 extremes using max-stable processes, copula or Bayesian hierarchical models.
15433 More precisely, this package allows (conditional) simulations from various
15434 parametric max-stable models, analysis of the extremal spatial dependence, the
15435 fitting of such processes using composite likelihoods or least square (simple
15436 max-stable processes only), model checking and selection and prediction.")
15437 (license license:gpl2+)))
15438
15439 (define-public r-drc
15440 (package
15441 (name "r-drc")
15442 (version "3.0-1")
15443 (source
15444 (origin
15445 (method url-fetch)
15446 (uri (cran-uri "drc" version))
15447 (sha256
15448 (base32
15449 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
15450 (build-system r-build-system)
15451 (propagated-inputs
15452 (list r-car
15453 r-gtools
15454 r-mass
15455 r-multcomp
15456 r-plotrix
15457 r-scales))
15458 (home-page "https://cran.r-project.org/web/packages/drc")
15459 (synopsis "Analysis of dose-response curves")
15460 (description
15461 "This package provides a suite of flexible and versatile model fitting
15462 and after-fitting functions for the analysis of dose-response data.")
15463 (license license:gpl2+)))
15464
15465 (define-public r-rmeta
15466 (package
15467 (name "r-rmeta")
15468 (version "3.0")
15469 (source
15470 (origin
15471 (method url-fetch)
15472 (uri (cran-uri "rmeta" version))
15473 (sha256
15474 (base32
15475 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
15476 (build-system r-build-system)
15477 (home-page "https://cran.r-project.org/web/packages/rmeta")
15478 (synopsis "Tools for meta-analysis")
15479 (description
15480 "This package provides functions for simple fixed and random effects
15481 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
15482 draws standard summary plots, funnel plots, and computes summaries and tests
15483 for association and heterogeneity.")
15484 (license license:gpl2)))
15485
15486 (define-public r-bootstrap
15487 (package
15488 (name "r-bootstrap")
15489 (version "2019.6")
15490 (source
15491 (origin
15492 (method url-fetch)
15493 (uri (cran-uri "bootstrap" version))
15494 (sha256
15495 (base32
15496 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
15497 (build-system r-build-system)
15498 (native-inputs (list gfortran))
15499 (home-page "https://cran.r-project.org/web/packages/bootstrap")
15500 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
15501 (description
15502 "This package provides software and data for the book \"An Introduction
15503 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
15504 This package is primarily provided for projects already based on it, and for
15505 support of the book. New projects should preferentially use the recommended
15506 package \"boot\".")
15507 (license license:bsd-3)))
15508
15509 (define-public r-survivalroc
15510 (package
15511 (name "r-survivalroc")
15512 (version "1.0.3")
15513 (source
15514 (origin
15515 (method url-fetch)
15516 (uri (cran-uri "survivalROC" version))
15517 (sha256
15518 (base32
15519 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
15520 (properties `((upstream-name . "survivalROC")))
15521 (build-system r-build-system)
15522 (home-page "https://cran.r-project.org/web/packages/survivalROC")
15523 (synopsis "Time-dependent ROC curve estimation from censored survival data")
15524 (description
15525 "Compute time-dependent ROC curve from censored survival data using
15526 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
15527 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
15528 (license license:gpl2+)))
15529
15530 (define-public r-locfdr
15531 (package
15532 (name "r-locfdr")
15533 (version "1.1-8")
15534 (source (origin
15535 (method url-fetch)
15536 (uri (cran-uri "locfdr" version))
15537 (sha256
15538 (base32
15539 "1falkbp2xz07am8jlhwlvyqvxnli4nwl188kd0g58vdfjcjy3mj2"))))
15540 (build-system r-build-system)
15541 (home-page "https://cran.r-project.org/web/packages/locfdr/")
15542 (synopsis "Computes local false discovery rates")
15543 (description "This package can be used to compute local false
15544 discovery rates.")
15545 (license license:gpl2)))
15546
15547 (define-public r-longitudinal
15548 (package
15549 (name "r-longitudinal")
15550 (version "1.1.13")
15551 (source
15552 (origin
15553 (method url-fetch)
15554 (uri (cran-uri "longitudinal" version))
15555 (sha256
15556 (base32
15557 "046w3xbr535c5jyd68adv42a7limxp1mv57b5w6w673w707lmw2p"))))
15558 (build-system r-build-system)
15559 (propagated-inputs (list r-corpcor))
15560 (home-page "http://strimmerlab.org/software/longitudinal/")
15561 (synopsis "Analysis of multiple time course data")
15562 (description
15563 "This package contains general data structures and functions for
15564 longitudinal data with multiple variables, repeated measurements, and
15565 irregularly spaced time points. It also implements a shrinkage estimator of
15566 dynamical correlation and dynamical covariance.")
15567 (license license:gpl3+)))
15568
15569 (define-public r-genenet
15570 (package
15571 (name "r-genenet")
15572 (version "1.2.16")
15573 (source
15574 (origin
15575 (method url-fetch)
15576 (uri (cran-uri "GeneNet" version))
15577 (sha256
15578 (base32
15579 "1r1khga3nxxjghs4vnbymzp0cwb1q17zw2v3a94qz8fsrirq1sf1"))))
15580 (properties `((upstream-name . "GeneNet")))
15581 (build-system r-build-system)
15582 (propagated-inputs
15583 (list r-corpcor r-fdrtool r-longitudinal))
15584 (home-page "http://strimmerlab.org/software/genenet/")
15585 (synopsis "Modeling and inferring gene networks")
15586 (description
15587 "This package analyzes gene expression (time series) data with focus on
15588 the inference of gene networks. In particular, GeneNet implements the methods
15589 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
15590 for learning large-scale gene association networks (including assignment of
15591 putative directions).")
15592 (license license:gpl3+)))
15593
15594 (define-public r-rbamtools
15595 (package
15596 (name "r-rbamtools")
15597 (version "2.16.17")
15598 (source
15599 (origin
15600 (method url-fetch)
15601 (uri (cran-uri "rbamtools" version))
15602 (sha256
15603 (base32
15604 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
15605 (build-system r-build-system)
15606 (inputs (list zlib))
15607 (propagated-inputs
15608 (list r-refgenome))
15609 (home-page "https://cran.r-project.org/web/packages/rbamtools")
15610 (synopsis "Read and write BAM (binary alignment) files")
15611 (description
15612 "This package provides an R interface to functions of the SAMtools
15613 library.")
15614 (license license:artistic2.0)))
15615
15616 (define-public r-protviz
15617 (package
15618 (name "r-protviz")
15619 (version "0.7.3")
15620 (source
15621 (origin
15622 (method url-fetch)
15623 (uri (cran-uri "protViz" version))
15624 (sha256
15625 (base32
15626 "0f6jwzcqi0w37hvg3i5dlk0c3anpkqh54ibf94vaf17r8sykr4nw"))))
15627 (properties `((upstream-name . "protViz")))
15628 (build-system r-build-system)
15629 (propagated-inputs (list r-rcpp))
15630 (home-page "https://github.com/protViz/protViz/")
15631 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
15632 (description
15633 "This package helps with quality checks, visualizations and analysis of
15634 mass spectrometry data, coming from proteomics experiments. The package is
15635 developed, tested and used at the Functional Genomics Center Zurich, where it
15636 is used mainly for prototyping, teaching, and having fun with proteomics data.
15637 But it can also be used to do data analysis for small scale data sets.")
15638 (license license:gpl3)))
15639
15640 (define-public r-cmprsk
15641 (package
15642 (name "r-cmprsk")
15643 (version "2.2-11")
15644 (source
15645 (origin
15646 (method url-fetch)
15647 (uri (cran-uri "cmprsk" version))
15648 (sha256
15649 (base32 "050f24l5ab1ds9824c7yjahimf6pg8ih2k83jzpzfb0n5k5jfh44"))))
15650 (build-system r-build-system)
15651 (propagated-inputs
15652 (list r-survival))
15653 (native-inputs
15654 (list gfortran))
15655 (home-page "https://cran.r-project.org/web/packages/cmprsk")
15656 (synopsis "Subdistribution analysis of competing risks")
15657 (description
15658 "This package provides tool for estimation, testing and regression
15659 modeling of subdistribution functions in competing risks, as described in
15660 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
15661 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
15662 A proportional hazards model for the subdistribution of a competing risk,
15663 JASA, 94:496-509.")
15664 (license license:gpl2+)))
15665
15666 (define-public r-etm
15667 (package
15668 (name "r-etm")
15669 (version "1.1.1")
15670 (source
15671 (origin
15672 (method url-fetch)
15673 (uri (cran-uri "etm" version))
15674 (sha256
15675 (base32
15676 "1hvrplmdpjjpjji663rw0vjbbrzj2nvr04d1nkc8bf46p4ixyxgy"))))
15677 (build-system r-build-system)
15678 (propagated-inputs
15679 (list r-data-table r-lattice r-rcpp r-rcpparmadillo r-survival))
15680 (home-page "https://cran.r-project.org/web/packages/etm")
15681 (synopsis "Empirical transition matrix")
15682 (description
15683 "The @dfn{empirical transition matrix} (etm) package estimates
15684 the matrix of transition probabilities for any time-inhomogeneous multistate
15685 model with finite state space using the Aalen-Johansen estimator.")
15686 (license license:expat)))
15687
15688 (define-public r-epi
15689 (package
15690 (name "r-epi")
15691 (version "2.46")
15692 (source
15693 (origin
15694 (method url-fetch)
15695 (uri (cran-uri "Epi" version))
15696 (sha256
15697 (base32
15698 "0s3ij0rya4wd7k97kc4s3pwj1d1ypaxl1s7zqr6sa07hp4a8fzz0"))))
15699 (properties `((upstream-name . "Epi")))
15700 (build-system r-build-system)
15701 (propagated-inputs
15702 (list r-cmprsk
15703 r-data-table
15704 r-dplyr
15705 r-etm
15706 r-magrittr
15707 r-mass
15708 r-matrix
15709 r-mgcv
15710 r-numderiv
15711 r-plyr
15712 r-survival
15713 r-zoo))
15714 (home-page "https://BendixCarstensen.com/Epi/")
15715 (synopsis "Statistical analysis in epidemiology")
15716 (description
15717 "This package provides functions for demographic and epidemiological
15718 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
15719 particular representation, manipulation and simulation of multistate data -
15720 the Lexis suite of functions, which includes interfaces to the @code{mstate},
15721 @code{etm} and @code{cmprsk} packages. It also contains functions for
15722 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
15723 data and some useful functions for tabulation and plotting, as well as a
15724 number of epidemiological data sets.")
15725 (license license:gpl2)))
15726
15727 (define-public r-ppls
15728 (package
15729 (name "r-ppls")
15730 (version "1.6-1.1")
15731 (source
15732 (origin
15733 (method url-fetch)
15734 (uri (cran-uri "ppls" version))
15735 (sha256
15736 (base32
15737 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
15738 (build-system r-build-system)
15739 (propagated-inputs (list r-mass))
15740 (home-page "https://cran.r-project.org/web/packages/ppls")
15741 (synopsis "Penalized partial least squares")
15742 (description
15743 "This package contains linear and nonlinear regression methods based on
15744 partial least squares and penalization techniques. Model parameters are
15745 selected via cross-validation, and confidence intervals ans tests for the
15746 regression coefficients can be conducted via jackknifing.")
15747 (license license:gpl2+)))
15748
15749 (define-public r-huge
15750 (package
15751 (name "r-huge")
15752 (version "1.3.5")
15753 (source
15754 (origin
15755 (method url-fetch)
15756 (uri (cran-uri "huge" version))
15757 (sha256
15758 (base32 "1sl457a1lndrx98y2j9a2smanawx2iqlhl82iand0g3p5xp8ch4j"))))
15759 (build-system r-build-system)
15760 (propagated-inputs
15761 (list r-igraph r-mass r-matrix r-rcpp r-rcppeigen))
15762 (home-page "https://cran.r-project.org/web/packages/huge")
15763 (synopsis "High-dimensional undirected graph estimation")
15764 (description
15765 "This package provides a general framework for high-dimensional
15766 undirected graph estimation. It integrates data preprocessing, neighborhood
15767 screening, graph estimation, and model selection techniques into a pipeline.")
15768 (license license:gpl2)))
15769
15770 (define-public r-parcor
15771 (package
15772 (name "r-parcor")
15773 (version "0.2-6")
15774 (source
15775 (origin
15776 (method url-fetch)
15777 (uri (cran-uri "parcor" version))
15778 (sha256
15779 (base32
15780 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
15781 (build-system r-build-system)
15782 (propagated-inputs
15783 (list r-epi r-genenet r-glmnet r-mass r-ppls))
15784 (home-page "https://cran.r-project.org/web/packages/parcor")
15785 (synopsis "Regularized estimation of partial correlation matrices")
15786 (description
15787 "This package estimates the matrix of partial correlations based on
15788 different regularized regression methods: lasso, adaptive lasso, PLS, and
15789 Ridge Regression. In addition, the package provides model selection for
15790 lasso, adaptive lasso and Ridge regression based on cross-validation.")
15791 (license license:gpl2+)))
15792
15793 (define-public r-mcmc
15794 (package
15795 (name "r-mcmc")
15796 (version "0.9-7")
15797 (source
15798 (origin
15799 (method url-fetch)
15800 (uri (cran-uri "mcmc" version))
15801 (sha256
15802 (base32
15803 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
15804 (build-system r-build-system)
15805 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
15806 (synopsis "Markov chain Monte Carlo")
15807 (description
15808 "This package simulates continuous distributions of random vectors using
15809 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
15810 function that evaluates the log unnormalized density. Algorithms are random
15811 walk Metropolis algorithm (function @code{metrop}), simulated
15812 tempering (function @code{temper}), and morphometric random walk
15813 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
15814 by change of variable.")
15815 (license license:expat)))
15816
15817 (define-public r-listenv
15818 (package
15819 (name "r-listenv")
15820 (version "0.8.0")
15821 (source
15822 (origin
15823 (method url-fetch)
15824 (uri (cran-uri "listenv" version))
15825 (sha256
15826 (base32
15827 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
15828 (build-system r-build-system)
15829 (arguments
15830 `(#:phases
15831 (modify-phases %standard-phases
15832 (add-after 'unpack 'set-HOME
15833 (lambda _ (setenv "HOME" "/tmp"))))))
15834 (native-inputs
15835 (list r-r-rsp)) ; vignette builder
15836 (home-page "https://github.com/HenrikBengtsson/listenv")
15837 (synopsis "Environments behaving (almost) as lists")
15838 (description
15839 "This package implements list environments. List environments are
15840 environments that have list-like properties. For instance, the elements of a
15841 list environment are ordered and can be accessed and iterated over using index
15842 subsetting.")
15843 (license license:lgpl2.1+)))
15844
15845 (define-public r-globals
15846 (package
15847 (name "r-globals")
15848 (version "0.15.0")
15849 (source
15850 (origin
15851 (method url-fetch)
15852 (uri (cran-uri "globals" version))
15853 (sha256
15854 (base32
15855 "15llx4233ihj4w815k7inc17530w9ja0mi29n1i0s2sr42j8jdpq"))))
15856 (build-system r-build-system)
15857 (propagated-inputs
15858 (list r-codetools))
15859 (home-page "https://github.com/HenrikBengtsson/globals")
15860 (synopsis "Identify global objects in R expressions")
15861 (description
15862 "This package provides tools to identify global (\"unknown\" or \"free\")
15863 objects in R expressions by code inspection using various strategies, e.g.
15864 conservative or liberal. The objective of this package is to make it as
15865 simple as possible to identify global objects for the purpose of exporting
15866 them in distributed compute environments.")
15867 (license license:lgpl2.1+)))
15868
15869 (define-public r-parallelly
15870 (package
15871 (name "r-parallelly")
15872 (version "1.31.1")
15873 (source
15874 (origin
15875 (method url-fetch)
15876 (uri (cran-uri "parallelly" version))
15877 (sha256
15878 (base32
15879 "1nhp66psk3m79is5qm4ppxkj7bdy46jr2h2pir22ia9ghhyzris0"))))
15880 (properties `((upstream-name . "parallelly")))
15881 (build-system r-build-system)
15882 (home-page "https://github.com/HenrikBengtsson/parallelly")
15883 (synopsis "Enhancements of the parallel package")
15884 (description
15885 "This package provides utility functions that enhance the @code{parallel}
15886 package and support the built-in parallel backends of the @code{future}
15887 package. For example, @code{availableCores} gives the number of CPU cores
15888 available to your R process as given by R options and environment variables,
15889 including those set by job schedulers on high-performance compute clusters.
15890 If none is set, it will fall back to @code{parallel::detectCores}. Another
15891 example is @code{makeClusterPSOCK}, which is backward compatible with
15892 @code{parallel::makePSOCKcluster} while doing a better job in setting up
15893 remote cluster workers without the need for configuring the firewall to do
15894 port-forwarding to your local computer.")
15895 (license license:lgpl2.1+)))
15896
15897 (define-public r-future
15898 (package
15899 (name "r-future")
15900 (version "1.26.1")
15901 (source
15902 (origin
15903 (method url-fetch)
15904 (uri (cran-uri "future" version))
15905 (sha256
15906 (base32
15907 "1mchjdvvwgs8v0iv8z5m6gav3xzvnq11h8qrc7lfnrb2x3d0np53"))))
15908 (build-system r-build-system)
15909 (arguments
15910 `(#:phases
15911 (modify-phases %standard-phases
15912 (add-after 'unpack 'set-HOME
15913 (lambda _ (setenv "HOME" "/tmp"))))))
15914 (propagated-inputs
15915 (list r-digest r-globals r-listenv r-parallelly))
15916 (native-inputs
15917 (list r-r-rsp)) ; vignette builder
15918 (home-page "https://github.com/HenrikBengtsson/future")
15919 (synopsis "Unified parallel and distributed processing in R")
15920 (description
15921 "The purpose of this package is to provide a lightweight and unified
15922 Future API for sequential and parallel processing of R expression via futures.
15923 This package implements sequential, multicore, multisession, and cluster
15924 futures. With these, R expressions can be evaluated on the local machine, in
15925 parallel a set of local machines, or distributed on a mix of local and remote
15926 machines. Extensions to this package implement additional backends for
15927 processing futures via compute cluster schedulers etc. Because of its unified
15928 API, there is no need to modify any code in order to switch from sequential on
15929 the local machine to, say, distributed processing on a remote compute cluster.")
15930 (license license:lgpl2.1+)))
15931
15932 (define-public r-future-apply
15933 (package
15934 (name "r-future-apply")
15935 (version "1.9.0")
15936 (source
15937 (origin
15938 (method url-fetch)
15939 (uri (cran-uri "future.apply" version))
15940 (sha256
15941 (base32
15942 "1xb7qj8izjwmy4aa92p5f4cdbhgp220hrly3b5879f9hrv2w2rk1"))))
15943 (properties `((upstream-name . "future.apply")))
15944 (build-system r-build-system)
15945 (arguments
15946 `(#:phases
15947 (modify-phases %standard-phases
15948 (add-after 'unpack 'set-HOME
15949 (lambda _ (setenv "HOME" "/tmp"))))))
15950 (propagated-inputs
15951 (list r-future r-globals))
15952 (native-inputs
15953 (list r-r-rsp)) ; vignette builder
15954 (home-page "https://github.com/HenrikBengtsson/future.apply")
15955 (synopsis "Apply function to elements in parallel using futures")
15956 (description
15957 "This package provides implementations of @code{apply()},
15958 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
15959 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
15960 can be resolved using any future-supported backend, e.g. parallel on the local
15961 machine or distributed on a compute cluster.")
15962 (license license:gpl2+)))
15963
15964 (define-public r-rsvd
15965 (package
15966 (name "r-rsvd")
15967 (version "1.0.5")
15968 (source
15969 (origin
15970 (method url-fetch)
15971 (uri (cran-uri "rsvd" version))
15972 (sha256
15973 (base32
15974 "07p2hjmpcwcsang8z9sjkpy94rydcin7m3hyvcgzgm5cd6w8c1p4"))))
15975 (build-system r-build-system)
15976 (propagated-inputs
15977 (list r-matrix))
15978 (home-page "https://github.com/erichson/rSVD")
15979 (synopsis "Randomized singular value decomposition")
15980 (description
15981 "Low-rank matrix decompositions are fundamental tools and widely used for
15982 data analysis, dimension reduction, and data compression. Classically, highly
15983 accurate deterministic matrix algorithms are used for this task. However, the
15984 emergence of large-scale data has severely challenged our computational
15985 ability to analyze big data. The concept of randomness has been demonstrated
15986 as an effective strategy to quickly produce approximate answers to familiar
15987 problems such as the @dfn{singular value decomposition} (SVD). This package
15988 provides several randomized matrix algorithms such as the randomized singular
15989 value decomposition (@code{rsvd}), randomized principal component
15990 analysis (@code{rpca}), randomized robust principal component
15991 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
15992 and the randomized CUR decomposition (@code{rcur}). In addition several plot
15993 functions are provided.")
15994 (license license:gpl3+)))
15995
15996 (define-public r-sloop
15997 (package
15998 (name "r-sloop")
15999 (version "1.0.1")
16000 (source
16001 (origin
16002 (method url-fetch)
16003 (uri (cran-uri "sloop" version))
16004 (sha256
16005 (base32
16006 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
16007 (build-system r-build-system)
16008 (propagated-inputs
16009 (list r-codetools r-crayon r-purrr r-rlang r-tibble))
16010 (home-page "https://github.com/r-lib/sloop")
16011 (synopsis "Helpers for object-oriented programming in R")
16012 (description
16013 "This package provides a collection of helper functions designed to
16014 help you to better understand object oriented programming in R, particularly
16015 using @code{S3}.")
16016 (license license:gpl3)))
16017
16018 (define-public r-capushe
16019 (package
16020 (name "r-capushe")
16021 (version "1.1.1")
16022 (source
16023 (origin
16024 (method url-fetch)
16025 (uri (cran-uri "capushe" version))
16026 (sha256
16027 (base32
16028 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
16029 (build-system r-build-system)
16030 (propagated-inputs (list r-mass))
16031 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
16032 (synopsis "Calibrating penalties using slope heuristics")
16033 (description
16034 "This package provides tools for the calibration of penalized criteria
16035 for model selection. The calibration methods available are based on the slope
16036 heuristics.")
16037 (license license:gpl2+)))
16038
16039 (define-public r-dorng
16040 (package
16041 (name "r-dorng")
16042 (version "1.8.2")
16043 (source
16044 (origin
16045 (method url-fetch)
16046 (uri (cran-uri "doRNG" version))
16047 (sha256
16048 (base32
16049 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
16050 (properties `((upstream-name . "doRNG")))
16051 (build-system r-build-system)
16052 (propagated-inputs
16053 (list r-foreach r-iterators r-rngtools))
16054 (home-page "https://renozao.github.io/doRNG/")
16055 (synopsis "Generic reproducible parallel backend for foreach loops")
16056 (description
16057 "This package provides functions to perform reproducible parallel
16058 @code{foreach} loops, using independent random streams as generated by
16059 L'Ecuyer's combined multiple-recursive generator. It enables to easily
16060 convert standard @code{%dopar%} loops into fully reproducible loops,
16061 independently of the number of workers, the task scheduling strategy, or the
16062 chosen parallel environment and associated foreach backend.")
16063 (license license:gpl2+)))
16064
16065 (define-public r-blockmodeling
16066 (package
16067 (name "r-blockmodeling")
16068 (version "1.0.5")
16069 (source
16070 (origin
16071 (method url-fetch)
16072 (uri (cran-uri "blockmodeling" version))
16073 (sha256
16074 (base32
16075 "1vc8gy4slsywcwxq532373i0dq73fhs5cac9mr6zz2pjaaxjghhq"))))
16076 (build-system r-build-system)
16077 (propagated-inputs
16078 (list r-matrix))
16079 (native-inputs (list gfortran))
16080 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
16081 (synopsis "Generalized and classical blockmodeling of valued networks")
16082 (description
16083 "This package is primarily meant as an implementation of generalized
16084 blockmodeling for valued networks. In addition, measures of similarity or
16085 dissimilarity based on structural equivalence and regular equivalence (REGE
16086 algorithms) can be computed and partitioned matrices can be plotted.")
16087 (license license:gpl2+)))
16088
16089 (define-public r-upsetr
16090 (package
16091 (name "r-upsetr")
16092 (version "1.4.0")
16093 (source
16094 (origin
16095 (method url-fetch)
16096 (uri (cran-uri "UpSetR" version))
16097 (sha256
16098 (base32
16099 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
16100 (properties `((upstream-name . "UpSetR")))
16101 (build-system r-build-system)
16102 (propagated-inputs
16103 (list r-ggplot2 r-gridextra r-plyr r-scales))
16104 (home-page "https://github.com/hms-dbmi/UpSetR")
16105 (synopsis "Visualize intersecting sets")
16106 (description
16107 "This package provides a more scalable alternative to Venn and Euler
16108 diagrams for visualizing intersecting sets. Create visualizations of
16109 intersecting sets using a novel matrix design, along with visualizations of
16110 several common set, element and attribute related tasks.")
16111 (license license:expat)))
16112
16113 ;; This package includes a JavaScript file, which is not minified. When
16114 ;; upgrading please check that there are no new minified JavaScript files.
16115 (define-public r-shinybs
16116 (package
16117 (name "r-shinybs")
16118 (version "0.61.1")
16119 (source
16120 (origin
16121 (method url-fetch)
16122 (uri (cran-uri "shinyBS" version))
16123 (sha256
16124 (base32
16125 "0h51685a9qll4agayldjyryi60ih969219ibg071slv0613p5v8a"))))
16126 (properties `((upstream-name . "shinyBS")))
16127 (build-system r-build-system)
16128 ;; The tests spawn Shiny browser apps. They cannot be run
16129 ;; non-interactively.
16130 (arguments '(#:tests? #f))
16131 (propagated-inputs
16132 (list r-htmltools r-shiny))
16133 (home-page "https://ebailey78.github.io/shinyBS/")
16134 (synopsis "Twitter Bootstrap components for Shiny")
16135 (description
16136 "This package adds additional Twitter Bootstrap components to Shiny.")
16137 (license license:gpl3)))
16138
16139 (define-public r-shinyjqui
16140 (package
16141 (name "r-shinyjqui")
16142 (version "0.4.1")
16143 (source
16144 (origin
16145 (method url-fetch)
16146 (uri (cran-uri "shinyjqui" version))
16147 (sha256
16148 (base32
16149 "135gwz7syyb6pbn0lkvmq0v1c6r1zivavnqhi1rnzbbzlysi27v1"))
16150 (snippet
16151 '(for-each delete-file
16152 (list "inst/www/shinyjqui.min.js"
16153 "inst/www/jquery.ui.touch-punch.min.js")))))
16154 (properties `((upstream-name . "shinyjqui")))
16155 (build-system r-build-system)
16156 (arguments
16157 `(#:phases
16158 (modify-phases %standard-phases
16159 (add-after 'unpack 'process-javascript
16160 (lambda* (#:key inputs #:allow-other-keys)
16161 (with-directory-excursion "inst/www"
16162 (let ((mapping
16163 `((,(string-append (assoc-ref inputs "js-jquery.ui.touch-punch")
16164 "/jquery.ui.touch-punch.js")
16165 . "jquery.ui.touch-punch.min.js")
16166 ("shinyjqui.js"
16167 . "shinyjqui.min.js"))))
16168 (for-each (lambda (source target)
16169 (format #true "Processing ~a --> ~a~%"
16170 source target)
16171 (invoke "esbuild" source "--minify"
16172 (string-append "--outfile=" target)))
16173 (map car mapping)
16174 (map cdr mapping)))))))))
16175 (propagated-inputs
16176 (list r-htmltools r-htmlwidgets r-jsonlite r-rlang r-shiny))
16177 (native-inputs
16178 `(("r-knitr" ,r-knitr)
16179 ("esbuild" ,esbuild)
16180 ("js-jquery.ui.touch-punch"
16181 ,(origin
16182 (method git-fetch)
16183 (uri (git-reference
16184 (url "https://github.com/furf/jquery-ui-touch-punch")
16185 (commit "8f7559b6e65cdc3ee3648d5fe76d38c653f87ff5")))
16186 (sha256
16187 (base32
16188 "1lzywp2q9hwx6d5fqjla95vp7ra2lahr5dam7lsqjmch9d98r48q"))))))
16189 (home-page "https://github.com/yang-tang/shinyjqui")
16190 (synopsis "jQuery UI interactions and effects for Shiny")
16191 (description
16192 "This is an extension to Shiny that brings interactions and animation
16193 effects from the jQuery UI library.")
16194 (license license:expat)))
16195
16196 (define-public r-shinymanager
16197 (package
16198 (name "r-shinymanager")
16199 (version "1.0.400")
16200 (source
16201 (origin
16202 (method url-fetch)
16203 (uri (cran-uri "shinymanager" version))
16204 (sha256
16205 (base32 "1np2yp5pn8g9i4jhysfgprmdn13cpw4vaaagrd72rnk2r4hpmyx4"))))
16206 (properties `((upstream-name . "shinymanager")))
16207 (build-system r-build-system)
16208 (propagated-inputs
16209 (list r-billboarder
16210 r-dbi
16211 r-dt
16212 r-htmltools
16213 r-openssl
16214 r-r-utils
16215 r-r6
16216 r-rsqlite
16217 r-scrypt
16218 r-shiny))
16219 (native-inputs (list r-knitr))
16220 (home-page "https://github.com/datastorm-open/shinymanager")
16221 (synopsis "Authentication management for Shiny applications")
16222 (description
16223 "This package provides simple and secure authentification mechanism for
16224 single Shiny applications. Credentials are stored in an encrypted SQLite
16225 database.")
16226 (license license:gpl3)))
16227
16228 (define-public r-outliers
16229 (package
16230 (name "r-outliers")
16231 (version "0.15")
16232 (source
16233 (origin
16234 (method url-fetch)
16235 (uri (cran-uri "outliers" version))
16236 (sha256
16237 (base32
16238 "1yrmwvjjb0a6sbx940k9svf23cykcxz8rrwcgyic7lpgzbrdfcfc"))))
16239 (build-system r-build-system)
16240 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
16241 (synopsis "Tests for outliers")
16242 (description
16243 "This package provides a collection of some tests commonly used for
16244 identifying outliers.")
16245 (license license:gpl2+)))
16246
16247 (define-public r-bayesm
16248 (package
16249 (name "r-bayesm")
16250 (version "3.1-4")
16251 (source
16252 (origin
16253 (method url-fetch)
16254 (uri (cran-uri "bayesm" version))
16255 (sha256
16256 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
16257 (build-system r-build-system)
16258 (propagated-inputs
16259 (list r-rcpp r-rcpparmadillo))
16260 (home-page "http://www.perossi.org/home/bsm-1")
16261 (synopsis "Bayesian inference for marketing/micro-econometrics")
16262 (description
16263 "This package covers many important models used in marketing and
16264 micro-econometrics applications, including Bayes Regression (univariate or
16265 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
16266 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
16267 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
16268 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
16269 Estimation with normal base, Hierarchical Linear Models with normal prior and
16270 covariates, Hierarchical Linear Models with a mixture of normals prior and
16271 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
16272 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
16273 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
16274 analysis of choice-based conjoint data, Bayesian treatment of linear
16275 instrumental variables models, Analysis of Multivariate Ordinal survey data
16276 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
16277 Coefficient Logit Models.")
16278 (license license:gpl2+)))
16279
16280 (define-public r-tensora
16281 (package
16282 (name "r-tensora")
16283 (version "0.36.2")
16284 (source
16285 (origin
16286 (method url-fetch)
16287 (uri (cran-uri "tensorA" version))
16288 (sha256
16289 (base32
16290 "19wwh654qlja4z1n7afjpzsrrm53p8ddysa2vra5mdnkddb4g2cf"))))
16291 (properties `((upstream-name . "tensorA")))
16292 (build-system r-build-system)
16293 (home-page "http://www.stat.boogaart.de/tensorA")
16294 (synopsis "Advanced tensor arithmetic with named indices")
16295 (description
16296 "This package provides convenience functions for advanced linear algebra
16297 with tensors and computation with datasets of tensors on a higher level
16298 abstraction. It includes Einstein and Riemann summing conventions, dragging,
16299 co- and contravariate indices, and parallel computations on sequences of
16300 tensors.")
16301 (license license:gpl2+)))
16302
16303 (define-public r-rarpack
16304 (package
16305 (name "r-rarpack")
16306 (version "0.11-0")
16307 (source
16308 (origin
16309 (method url-fetch)
16310 (uri (cran-uri "rARPACK" version))
16311 (sha256
16312 (base32
16313 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
16314 (properties `((upstream-name . "rARPACK")))
16315 (build-system r-build-system)
16316 (propagated-inputs (list r-rspectra))
16317 (home-page "https://github.com/yixuan/rARPACK")
16318 (synopsis "Solvers for large scale eigenvalue and SVD problems")
16319 (description
16320 "This package was previously an R wrapper of the ARPACK library, and now
16321 a shell of the R package RSpectra, an R interface to the Spectra library for
16322 solving large scale eigenvalue/vector problems. The current version of
16323 rARPACK simply imports and exports the functions provided by RSpectra. New
16324 users of rARPACK are advised to switch to the RSpectra package.")
16325 (license license:bsd-3)))
16326
16327 (define-public r-compositions
16328 (package
16329 (name "r-compositions")
16330 (version "2.0-4")
16331 (source
16332 (origin
16333 (method url-fetch)
16334 (uri (cran-uri "compositions" version))
16335 (sha256
16336 (base32
16337 "1bqg0qqzsf92q0jb7hdjycr54bwv8rk7ajhvxgch5yslyqxpm73v"))))
16338 (build-system r-build-system)
16339 (propagated-inputs
16340 (list r-bayesm r-mass r-robustbase r-tensora))
16341 (native-inputs
16342 (list r-knitr))
16343 (home-page "http://www.stat.boogaart.de/compositions")
16344 (synopsis "Compositional data analysis")
16345 (description
16346 "This package provides functions for the consistent analysis of
16347 compositional data (e.g. portions of substances) and positive
16348 numbers (e.g. concentrations).")
16349 (license license:gpl2+)))
16350
16351 (define-public r-cobs
16352 (package
16353 (name "r-cobs")
16354 (version "1.3-4")
16355 (source
16356 (origin
16357 (method url-fetch)
16358 (uri (cran-uri "cobs" version))
16359 (sha256
16360 (base32
16361 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
16362 (build-system r-build-system)
16363 (propagated-inputs
16364 (list r-quantreg r-sparsem))
16365 (home-page "https://cran.r-project.org/web/packages/cobs")
16366 (synopsis "Constrained B-Splines (sparse matrix based)")
16367 (description
16368 "This package provides qualitatively constrained (regression) smoothing
16369 splines via linear programming and sparse matrices.")
16370 (license license:gpl2+)))
16371
16372 (define-public r-drimpute
16373 (package
16374 (name "r-drimpute")
16375 (version "1.0")
16376 (source
16377 (origin
16378 (method url-fetch)
16379 (uri (cran-uri "DrImpute" version))
16380 (sha256
16381 (base32
16382 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
16383 (properties `((upstream-name . "DrImpute")))
16384 (build-system r-build-system)
16385 (propagated-inputs
16386 (list r-rcpp r-rcpparmadillo))
16387 (home-page "https://github.com/ikwak2/DrImpute")
16388 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
16389 (description
16390 "This is an R package for imputing dropout events. Many statistical
16391 methods in cell type identification, visualization and lineage reconstruction
16392 do not account for dropout events. DrImpute can improve the performance of
16393 such software by imputing dropout events.")
16394 (license license:gpl3)))
16395
16396 (define-public r-gamlss-dist
16397 (package
16398 (name "r-gamlss-dist")
16399 (version "6.0-3")
16400 (source
16401 (origin
16402 (method url-fetch)
16403 (uri (cran-uri "gamlss.dist" version))
16404 (sha256
16405 (base32 "1gqjr419v8z2ygh0h1xz7bipnsbp820njzwq7z3r9f41rn1ym47c"))))
16406 (properties `((upstream-name . "gamlss.dist")))
16407 (build-system r-build-system)
16408 (propagated-inputs (list r-mass))
16409 (home-page "http://www.gamlss.org/")
16410 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
16411 (description
16412 "This package provides a set of distributions which can be used for
16413 modelling the response variables in Generalized Additive Models for Location
16414 Scale and Shape. The distributions can be continuous, discrete or mixed
16415 distributions. Extra distributions can be created, by transforming, any
16416 continuous distribution defined on the real line, to a distribution defined on
16417 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
16418 transformation, respectively.")
16419 ;; Either version of the GPL.
16420 (license (list license:gpl2 license:gpl3))))
16421
16422 ;; This package includes JavaScript files, which are not minified. When
16423 ;; upgrading please check that there are no new minified JavaScript files.
16424 (define-public r-shinyjs
16425 (package
16426 (name "r-shinyjs")
16427 (version "2.1.0")
16428 (source
16429 (origin
16430 (method url-fetch)
16431 (uri (cran-uri "shinyjs" version))
16432 (sha256
16433 (base32
16434 "1id9gsrkr28xl80a8794in17rxmmz06zqvd5hlns7mqz3fzhrhky"))))
16435 (build-system r-build-system)
16436 (propagated-inputs
16437 (list r-digest r-jsonlite r-shiny))
16438 (native-inputs
16439 (list r-knitr))
16440 (home-page "https://deanattali.com/shinyjs")
16441 (synopsis "Improve the user experience of your Shiny apps")
16442 (description
16443 "Perform common useful JavaScript operations in Shiny apps that will
16444 greatly improve your apps without having to know any JavaScript. Examples
16445 include: hiding an element, disabling an input, resetting an input back to its
16446 original value, delaying code execution by a few seconds, and many more useful
16447 functions for both the end user and the developer. Shinyjs can also be used
16448 to easily call your own custom JavaScript functions from R.")
16449 (license license:agpl3+)))
16450
16451 ;; This package includes minified JavaScript files. When upgrading please
16452 ;; check that there are no new minified JavaScript files.
16453 (define-public r-colourpicker
16454 (package
16455 (name "r-colourpicker")
16456 (version "1.1.1")
16457 (source
16458 (origin
16459 (method url-fetch)
16460 (uri (cran-uri "colourpicker" version))
16461 (sha256
16462 (base32
16463 "1q1wi3g403fbzp4ys3gsjbwdc86x770cx323qgi47ca8n219kl50"))))
16464 (build-system r-build-system)
16465 (arguments
16466 `(#:phases
16467 (modify-phases %standard-phases
16468 (add-after 'unpack 'process-javascript
16469 (lambda* (#:key inputs #:allow-other-keys)
16470 (with-directory-excursion "inst"
16471 (let ((mapping
16472 `((,(assoc-ref inputs "js-salvattore")
16473 . "examples/colourInput/www/salvattore.min.js")
16474 (,(assoc-ref inputs "js-jquery")
16475 . "htmlwidgets/lib/jquery/jquery.min.js")
16476 ("www/shared/colourpicker/js/colourpicker.js"
16477 . "www/shared/colourpicker/js/colourpicker.min.js"))))
16478 (for-each (lambda (source target)
16479 (format #true "Processing ~a --> ~a~%"
16480 source target)
16481 (delete-file target)
16482 (invoke "esbuild" source "--minify"
16483 (string-append "--outfile=" target)))
16484 (map car mapping)
16485 (map cdr mapping)))))))))
16486 (propagated-inputs
16487 (list r-ggplot2
16488 r-htmltools
16489 r-htmlwidgets
16490 r-jsonlite
16491 r-miniui
16492 r-shiny
16493 r-shinyjs))
16494 (native-inputs
16495 `(("esbuild" ,esbuild)
16496 ("js-jquery"
16497 ,(origin
16498 (method url-fetch)
16499 (uri "https://code.jquery.com/jquery-1.11.3.js")
16500 (sha256
16501 (base32
16502 "1v956yf5spw0156rni5z77hzqwmby7ajwdcd6mkhb6zvl36awr90"))))
16503 ("js-salvattore"
16504 ,(origin
16505 (method url-fetch)
16506 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
16507 (sha256
16508 (base32
16509 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
16510 (home-page "https://github.com/daattali/colourpicker")
16511 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
16512 (description
16513 "This package provides a color picker that can be used as an input in
16514 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
16515 custom color palettes, and many more options. A plot color helper tool is
16516 available as an RStudio Addin, which helps you pick colors to use in your
16517 plots. A more generic color picker RStudio Addin is also provided to let you
16518 select colors to use in your R code.")
16519 (license license:expat)))
16520
16521 (define-public r-ggextra
16522 (package
16523 (name "r-ggextra")
16524 (version "0.10.0")
16525 (source
16526 (origin
16527 (method url-fetch)
16528 (uri (cran-uri "ggExtra" version))
16529 (sha256
16530 (base32
16531 "1rd3qv6ah3zphr1jicjhgxms73vi496mjnxnsrcgl7z8nyxmas6w"))))
16532 (properties `((upstream-name . "ggExtra")))
16533 (build-system r-build-system)
16534 (propagated-inputs
16535 (list r-colourpicker
16536 r-ggplot2
16537 r-gtable
16538 r-miniui
16539 r-r6
16540 r-scales
16541 r-shiny
16542 r-shinyjs))
16543 (native-inputs
16544 (list r-knitr))
16545 (home-page "https://github.com/daattali/ggExtra")
16546 (synopsis "Marginal histograms for ggplot2 and other enhancements")
16547 (description
16548 "This package is a collection of functions and layers to enhance ggplot2.
16549 The flagship function is @code{ggMarginal()}, which can be used to add
16550 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
16551 (license license:expat)))
16552
16553 (define-public r-minpack-lm
16554 (package
16555 (name "r-minpack-lm")
16556 (version "1.2-2")
16557 (source
16558 (origin
16559 (method url-fetch)
16560 (uri (cran-uri "minpack.lm" version))
16561 (sha256
16562 (base32
16563 "11yz6hk2r33571d16kq01cb1x6sgdzi6jmksqlrm8mr84l95c2f7"))))
16564 (properties `((upstream-name . "minpack.lm")))
16565 (build-system r-build-system)
16566 (native-inputs (list gfortran))
16567 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
16568 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
16569 (description
16570 "The @code{nls.lm} function provides an R interface to @code{lmder} and
16571 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
16572 problems by a modification of the Levenberg-Marquardt algorithm, with support
16573 for lower and upper parameter bounds. The implementation can be used via
16574 @code{nls}-like calls using the @code{nlsLM} function.")
16575 (license license:gpl3)))
16576
16577 (define-public r-moments
16578 (package
16579 (name "r-moments")
16580 (version "0.14.1")
16581 (source
16582 (origin
16583 (method url-fetch)
16584 (uri (cran-uri "moments" version))
16585 (sha256
16586 (base32
16587 "0r6qf3i1rzh2822bx1p0h8mh91gsbgg6asl2rzh2l4ys094bilif"))))
16588 (build-system r-build-system)
16589 (home-page "https://cran.r-project.org/web/packages/moments")
16590 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
16591 (description
16592 "This package provides functions to calculate: moments, Pearson's
16593 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
16594 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
16595 (license license:gpl2+)))
16596
16597 (define-public r-msir
16598 (package
16599 (name "r-msir")
16600 (version "1.3.3")
16601 (source
16602 (origin
16603 (method url-fetch)
16604 (uri (cran-uri "msir" version))
16605 (sha256
16606 (base32
16607 "1wm83m3cqd6llxb9p2jwim0wb81v84pgdmgcznygzaaq6kbn3n84"))))
16608 (build-system r-build-system)
16609 (propagated-inputs
16610 (list r-mclust))
16611 (native-inputs
16612 (list r-knitr))
16613 (home-page "https://cran.r-project.org/web/packages/msir")
16614 (synopsis "Model-based sliced inverse regression")
16615 (description
16616 "This is an R package for dimension reduction based on finite Gaussian
16617 mixture modeling of inverse regression.")
16618 (license license:gpl2+)))
16619
16620 (define-public r-pbivnorm
16621 (package
16622 (name "r-pbivnorm")
16623 (version "0.6.0")
16624 (source
16625 (origin
16626 (method url-fetch)
16627 (uri (cran-uri "pbivnorm" version))
16628 (sha256
16629 (base32
16630 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
16631 (build-system r-build-system)
16632 (native-inputs (list gfortran))
16633 (home-page "https://github.com/brentonk/pbivnorm")
16634 (synopsis "Vectorized bivariate normal CDF")
16635 (description
16636 "This package provides a vectorized R function for calculating
16637 probabilities from a standard bivariate normal CDF.")
16638 (license license:gpl2+)))
16639
16640 (define-public r-lavaan
16641 (package
16642 (name "r-lavaan")
16643 (version "0.6-11")
16644 (source
16645 (origin
16646 (method url-fetch)
16647 (uri (cran-uri "lavaan" version))
16648 (sha256
16649 (base32
16650 "026k32paf51lpy6zxm9m81zg9szx14j37dxdip6nba334jw97h9c"))))
16651 (build-system r-build-system)
16652 (propagated-inputs
16653 (list r-mass r-mnormt r-numderiv r-pbivnorm))
16654 (home-page "https://lavaan.ugent.be")
16655 (synopsis "Latent variable analysis")
16656 (description
16657 "This package provides tools to fit a variety of latent variable models,
16658 including confirmatory factor analysis, structural equation modeling and
16659 latent growth curve models.")
16660 (license license:gpl2+)))
16661
16662 (define-public r-nonnest2
16663 (package
16664 (name "r-nonnest2")
16665 (version "0.5-5")
16666 (source
16667 (origin
16668 (method url-fetch)
16669 (uri (cran-uri "nonnest2" version))
16670 (sha256
16671 (base32
16672 "1ddaqwx8i3ygwvxf11mc8xhgk4nkvnail99nr5szq8i168752zq2"))))
16673 (build-system r-build-system)
16674 (propagated-inputs
16675 (list r-compquadform r-lavaan r-mvtnorm r-sandwich))
16676 (native-inputs
16677 (list r-knitr))
16678 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
16679 (synopsis "Tests of non-nested models")
16680 (description
16681 "This package allows for testing of non-nested models. It includes tests
16682 of model distinguishability and of model fit that can be applied to both
16683 nested and non-nested models. The package also includes functionality to
16684 obtain confidence intervals associated with AIC and BIC.")
16685 ;; Either version of the GPL.
16686 (license (list license:gpl2 license:gpl3))))
16687
16688 (define-public r-penalized
16689 (package
16690 (name "r-penalized")
16691 (version "0.9-52")
16692 (source
16693 (origin
16694 (method url-fetch)
16695 (uri (cran-uri "penalized" version))
16696 (sha256
16697 (base32
16698 "08badmgygppbqzay20qijyww028yw6s8dyd8ijcp8g4r9rn8xqyq"))))
16699 (build-system r-build-system)
16700 (propagated-inputs
16701 (list r-rcpp r-rcpparmadillo r-survival))
16702 (home-page "https://cran.r-project.org/web/packages/penalized/")
16703 (synopsis "Penalized estimation in GLMs and in the Cox model")
16704 (description
16705 "This package provides tools for fitting possibly high dimensional
16706 penalized regression models. The penalty structure can be any combination of
16707 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
16708 constraint on the regression coefficients. The supported regression models
16709 are linear, logistic and Poisson regression and the Cox Proportional Hazards
16710 model. Cross-validation routines allow optimization of the tuning
16711 parameters.")
16712 (license license:gpl2+)))
16713
16714 (define-public r-zim
16715 (package
16716 (name "r-zim")
16717 (version "1.1.0")
16718 (source
16719 (origin
16720 (method url-fetch)
16721 (uri (cran-uri "ZIM" version))
16722 (sha256
16723 (base32
16724 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
16725 (properties `((upstream-name . "ZIM")))
16726 (build-system r-build-system)
16727 (propagated-inputs (list r-mass))
16728 (home-page "https://github.com/biostatstudio/ZIM")
16729 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
16730 (description
16731 "Analyze count time series with excess zeros. Two types of statistical
16732 models are supported: Markov regression and state-space models. They are also
16733 known as observation-driven and parameter-driven models respectively in the
16734 time series literature. The functions used for Markov regression or
16735 observation-driven models can also be used to fit ordinary regression models
16736 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
16737 negative binomial (ZINB) assumption. The package also contains miscellaneous
16738 functions to compute density, distribution, quantile, and generate random
16739 numbers from ZIP and ZINB distributions.")
16740 (license license:gpl3)))
16741
16742 (define-public r-nor1mix
16743 (package
16744 (name "r-nor1mix")
16745 (version "1.3-0")
16746 (source
16747 (origin
16748 (method url-fetch)
16749 (uri (cran-uri "nor1mix" version))
16750 (sha256
16751 (base32
16752 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
16753 (build-system r-build-system)
16754 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
16755 (synopsis "Normal (1-d) mixture models")
16756 (description
16757 "This package provides S3 classes and methods for one-dimensional normal
16758 mixture models, for, e.g., density estimation or clustering algorithms
16759 research and teaching; it provides the widely used Marron-Wand densities. It
16760 also provides tools for efficient random number generation and graphics.")
16761 (license license:gpl2+)))
16762
16763 (define-public r-beanplot
16764 (package
16765 (name "r-beanplot")
16766 (version "1.3.1")
16767 (source
16768 (origin
16769 (method url-fetch)
16770 (uri (cran-uri "beanplot" version))
16771 (sha256
16772 (base32
16773 "1b8mvlcsv5l9g08ag92hndsvk8jmgxvznhzgazc8y4296kp8l5a9"))))
16774 (build-system r-build-system)
16775 (home-page "https://cran.r-project.org/web/packages/beanplot/")
16776 (synopsis "Visualization via beanplots")
16777 (description
16778 "This package provides beanplots, an alternative to
16779 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
16780 graphs.")
16781 (license license:gpl2)))
16782
16783 (define-public r-pbdzmq
16784 (package
16785 (name "r-pbdzmq")
16786 (version "0.3-7")
16787 (source
16788 (origin
16789 (method url-fetch)
16790 (uri (cran-uri "pbdZMQ" version))
16791 (sha256
16792 (base32
16793 "020qy6fq8w8wq0j3bii14ahrlg8wzl0lrnndfr6scmrg9ghjnbfz"))))
16794 (properties `((upstream-name . "pbdZMQ")))
16795 (build-system r-build-system)
16796 (inputs
16797 (list zeromq zlib))
16798 (native-inputs
16799 (list pkg-config))
16800 (home-page "https://pbdr.org/")
16801 (synopsis "R interface to ZeroMQ")
16802 (description
16803 "ZeroMQ is a well-known library for high-performance asynchronous
16804 messaging in scalable, distributed applications. This package provides high
16805 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
16806 interactive client/server programming frameworks. A few wrapper functions
16807 compatible with @code{rzmq} are also provided.")
16808 (license license:gpl3)))
16809
16810 (define-public r-repr
16811 (package
16812 (name "r-repr")
16813 (version "1.1.4")
16814 (source
16815 (origin
16816 (method url-fetch)
16817 (uri (cran-uri "repr" version))
16818 (sha256
16819 (base32
16820 "0h3h14ybamcbwmm31ib66fx13v75vkzn4bn2v26n2h097sl9qybg"))))
16821 (build-system r-build-system)
16822 (propagated-inputs
16823 (list r-base64enc r-htmltools r-jsonlite r-pillar))
16824 (home-page "https://cran.r-project.org/web/packages/repr/")
16825 (synopsis "Serializable representations")
16826 (description
16827 "This package provides string and binary representations of objects for
16828 several formats and MIME types.")
16829 (license license:gpl3)))
16830
16831 (define-public r-irdisplay
16832 (package
16833 (name "r-irdisplay")
16834 (version "1.1")
16835 (source
16836 (origin
16837 (method url-fetch)
16838 (uri (cran-uri "IRdisplay" version))
16839 (sha256
16840 (base32
16841 "0awdiv4rr93y8jb1d64sm1iy37ywyniqm7w98yv6qm0zz47h7sw3"))))
16842 (properties `((upstream-name . "IRdisplay")))
16843 (build-system r-build-system)
16844 (propagated-inputs
16845 (list r-repr))
16846 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
16847 (synopsis "Jupyter display machinery")
16848 (description
16849 "This package provides an interface to the rich display capabilities of
16850 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
16851 running IRkernel session.")
16852 (license license:expat)))
16853
16854 (define-public r-irkernel
16855 (package
16856 (name "r-irkernel")
16857 (version "1.3")
16858 (source
16859 (origin
16860 (method url-fetch)
16861 (uri (cran-uri "IRkernel" version))
16862 (sha256
16863 (base32
16864 "00qrmsywpzw2hfp88020zjaijma7q4hqm9h2cz53rywdjzywnzss"))))
16865 (properties `((upstream-name . "IRkernel")))
16866 (build-system r-build-system)
16867 (arguments
16868 `(#:phases
16869 (modify-phases %standard-phases
16870 (add-after 'install 'install-kernelspec
16871 (lambda* (#:key outputs #:allow-other-keys)
16872 (let ((out (assoc-ref outputs "out")))
16873 (setenv "HOME" "/tmp")
16874 (invoke "jupyter" "kernelspec" "install"
16875 "--name" "ir"
16876 "--prefix" out
16877 (string-append out "/site-library/IRkernel/kernelspec"))
16878 ;; Record the absolute file name of the 'R' executable in
16879 ;; 'kernel.json'.
16880 (substitute* (string-append out "/share/jupyter"
16881 "/kernels/ir/kernel.json")
16882 (("\\[\"R\",")
16883 (string-append "[\"" (which "R") "\",")))
16884 #t))))))
16885 (inputs
16886 (list jupyter))
16887 (propagated-inputs
16888 (list r-crayon
16889 r-digest
16890 r-evaluate
16891 r-irdisplay
16892 r-jsonlite
16893 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
16894 r-minimal
16895 r-pbdzmq
16896 r-repr
16897 r-uuid))
16898 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
16899 (synopsis "Native R kernel for Jupyter")
16900 (description
16901 "The R kernel for the Jupyter environment executes R code which the
16902 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
16903 network.")
16904 (license license:expat)))
16905
16906 (define-public r-gmodels
16907 (package
16908 (name "r-gmodels")
16909 (version "2.18.1.1")
16910 (source
16911 (origin
16912 (method url-fetch)
16913 (uri (cran-uri "gmodels" version))
16914 (sha256
16915 (base32
16916 "158y7yh4maawn9vki8cq4sil48xib2bbpl6qgj5gvlkw3c14hzfs"))))
16917 (build-system r-build-system)
16918 (propagated-inputs
16919 (list r-gdata r-mass))
16920 (home-page "https://cran.r-project.org/web/packages/gmodels/")
16921 (synopsis "Various R programming tools for model fitting")
16922 (description
16923 "This package provides various R programming tools for model fitting.")
16924 (license license:gpl2)))
16925
16926 (define-public r-apcluster
16927 (package
16928 (name "r-apcluster")
16929 (version "1.4.9")
16930 (source
16931 (origin
16932 (method url-fetch)
16933 (uri (cran-uri "apcluster" version))
16934 (sha256
16935 (base32
16936 "0wnbb3kj9m7rfq63xr43jjf6n8jxm1r2wvvx6g0qkss0wvipbb1s"))))
16937 (build-system r-build-system)
16938 (propagated-inputs
16939 (list r-matrix r-rcpp))
16940 (native-inputs (list r-knitr))
16941 (home-page "https://cran.r-project.org/web/packages/apcluster/")
16942 (synopsis "Affinity propagation clustering")
16943 (description
16944 "This package implements affinity propagation clustering introduced by
16945 Frey and Dueck (2007). The package further provides leveraged affinity
16946 propagation and an algorithm for exemplar-based agglomerative clustering that
16947 can also be used to join clusters obtained from affinity propagation. Various
16948 plotting functions are available for analyzing clustering results.")
16949 (license license:gpl2+)))
16950
16951 (define-public r-rematch2
16952 (package
16953 (name "r-rematch2")
16954 (version "2.1.2")
16955 (source
16956 (origin
16957 (method url-fetch)
16958 (uri (cran-uri "rematch2" version))
16959 (sha256
16960 (base32
16961 "1fzpz8vhghw8ygwg6rsvfy3783pqk7ch029i5851lwypkplvz77y"))))
16962 (build-system r-build-system)
16963 (propagated-inputs
16964 (list r-tibble))
16965 (home-page "https://github.com/r-lib/rematch2")
16966 (synopsis "Tidy output from regular expression matching")
16967 (description
16968 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
16969 return the match results in tidy data frames.")
16970 (license license:expat)))
16971
16972 (define-public r-picante
16973 (package
16974 (name "r-picante")
16975 (version "1.8.2")
16976 (source
16977 (origin
16978 (method url-fetch)
16979 (uri (cran-uri "picante" version))
16980 (sha256
16981 (base32
16982 "19savjzj44b7ifdxcp02ynj22z4n4ikq2aipc74ljzy3yykmqmjn"))))
16983 (build-system r-build-system)
16984 (propagated-inputs
16985 (list r-ape r-nlme r-vegan))
16986 (home-page "https://cran.r-project.org/web/packages/picante/")
16987 (synopsis "Integrating phylogenies and ecology")
16988 (description
16989 "This package provides functions for phylocom integration, community
16990 analyses, null-models, traits and evolution. It implements numerous
16991 ecophylogenetic approaches including measures of community phylogenetic and
16992 trait diversity, phylogenetic signal, estimation of trait values for
16993 unobserved taxa, null models for community and phylogeny randomizations, and
16994 utility functions for data input/output and phylogeny plotting. A full
16995 description of package functionality and methods are provided by Kembel et
16996 al. (2010).")
16997 (license license:gpl2)))
16998
16999 (define-public r-reinforcelearn
17000 (package
17001 (name "r-reinforcelearn")
17002 (version "0.2.1")
17003 (source
17004 (origin
17005 (method url-fetch)
17006 (uri (cran-uri "reinforcelearn" version))
17007 (sha256
17008 (base32
17009 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
17010 (build-system r-build-system)
17011 (propagated-inputs
17012 (list r-checkmate r-nnet r-purrr r-r6))
17013 (home-page "https://markusdumke.github.io/reinforcelearn")
17014 (synopsis "Reinforcement learning")
17015 (description
17016 "This package implements reinforcement learning environments and
17017 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
17018 can be used with function approximation, eligibility traces (Singh & Sutton,
17019 1996) and experience replay (Mnih et al., 2013).")
17020 (license license:expat)))
17021
17022 (define-public r-lemon
17023 (package
17024 (name "r-lemon")
17025 (version "0.4.5")
17026 (source
17027 (origin
17028 (method url-fetch)
17029 (uri (cran-uri "lemon" version))
17030 (sha256
17031 (base32
17032 "1y3ljidhqdakxlya2npj2w0az820g8kw6gl1cfm4f0cxvzgd1ly4"))))
17033 (build-system r-build-system)
17034 (propagated-inputs
17035 (list r-ggplot2
17036 r-gridextra
17037 r-gtable
17038 r-knitr
17039 r-lattice
17040 r-plyr
17041 r-rlang
17042 r-scales))
17043 (native-inputs
17044 (list r-knitr))
17045 (home-page "https://github.com/stefanedwards/lemon")
17046 (synopsis "Freshen up your ggplot2 plots")
17047 (description
17048 "This package provides functions for working with legends and axis lines
17049 of ggplot2, facets that repeat axis lines on all panels, and some knitr
17050 extensions.")
17051 (license license:gpl3)))
17052
17053 (define-public r-wgaim
17054 (package
17055 (name "r-wgaim")
17056 (version "2.0-1")
17057 (source
17058 (origin
17059 (method url-fetch)
17060 (uri (cran-uri "wgaim" version))
17061 (sha256
17062 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
17063 (build-system r-build-system)
17064 (propagated-inputs
17065 (list r-ggplot2 r-qtl))
17066 (home-page "https://cran.r-project.org/web/packages/wgaim")
17067 (synopsis "Whole genome average interval mapping for QTL detection")
17068 (description
17069 "This package integrates sophisticated mixed modelling methods with a
17070 whole genome approach to detecting significant QTL in linkage maps.")
17071 (license license:gpl2+)))
17072
17073 (define-public r-bedr
17074 (package
17075 (name "r-bedr")
17076 (version "1.0.7")
17077 (source
17078 (origin
17079 (method url-fetch)
17080 (uri (cran-uri "bedr" version))
17081 (sha256
17082 (base32
17083 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
17084 (build-system r-build-system)
17085 (propagated-inputs
17086 (list r-data-table
17087 r-r-utils
17088 r-testthat
17089 r-venndiagram
17090 r-yaml
17091 bedops
17092 bedtools
17093 htslib)) ; for tabix
17094 (native-inputs
17095 (list r-knitr)) ; for vignettes
17096 (home-page "https://cran.r-project.org/web/packages/bedr")
17097 (synopsis "Genomic region processing")
17098 (description
17099 "This package is for genomic regions processing using command line tools
17100 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
17101 utilities to perform genome arithmetic e.g indexing, formatting and merging.
17102 The bedr package's API enhances access to these tools as well as offers
17103 additional utilities for genomic regions processing.")
17104 (license license:gpl2)))
17105
17106 (define-public r-sets
17107 (package
17108 (name "r-sets")
17109 (version "1.0-21")
17110 (source
17111 (origin
17112 (method url-fetch)
17113 (uri (cran-uri "sets" version))
17114 (sha256
17115 (base32
17116 "1h1a03b1850kh5hd3gxbspx2nxqxvk2gb0wm0s60b70qb6zg0csp"))))
17117 (properties `((upstream-name . "sets")))
17118 (build-system r-build-system)
17119 (home-page "https://cran.r-project.org/web/packages/sets")
17120 (synopsis "Sets, generalized sets, customizable sets and intervals")
17121 (description
17122 "This package provides data structures and basic operations for ordinary
17123 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
17124 customizable sets, and intervals.")
17125 (license license:gpl2)))
17126
17127 (define-public r-partitions
17128 (package
17129 (name "r-partitions")
17130 (version "1.9-22")
17131 (source
17132 (origin
17133 (method url-fetch)
17134 (uri (cran-uri "partitions" version))
17135 (sha256
17136 (base32
17137 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
17138 (build-system r-build-system)
17139 (propagated-inputs
17140 (list r-gmp r-polynom r-sets))
17141 (home-page "https://cran.r-project.org/web/packages/partitions")
17142 (synopsis "Additive partitions of integers")
17143 (description
17144 "This package provides tools to enumerates the partitions, unequal
17145 partitions, and restricted partitions of an integer; the three corresponding
17146 partition functions are also given.")
17147 ;; Any version of the GPL
17148 (license license:gpl2+)))
17149
17150 (define-public r-brobdingnag
17151 (package
17152 (name "r-brobdingnag")
17153 (version "1.2-7")
17154 (source
17155 (origin
17156 (method url-fetch)
17157 (uri (cran-uri "Brobdingnag" version))
17158 (sha256
17159 (base32
17160 "0hnp5nrpnscykvgrrbgp7987660hcbv92zc2q8lmpnin4ws399vk"))))
17161 (properties `((upstream-name . "Brobdingnag")))
17162 (build-system r-build-system)
17163 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
17164 (synopsis "Very large numbers in R")
17165 (description
17166 "This package handles very large numbers in R. Real numbers are held
17167 using their natural logarithms, plus a logical flag indicating sign. The
17168 package includes a vignette that gives a step-by-step introduction to using S4
17169 methods.")
17170 ;; Any version of the GPL
17171 (license license:gpl2+)))
17172
17173 (define-public r-untb
17174 (package
17175 (name "r-untb")
17176 (version "1.7-4")
17177 (source
17178 (origin
17179 (method url-fetch)
17180 (uri (cran-uri "untb" version))
17181 (sha256
17182 (base32
17183 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
17184 (build-system r-build-system)
17185 (propagated-inputs
17186 (list r-brobdingnag r-partitions r-polynom))
17187 (home-page "https://github.com/RobinHankin/untb.git")
17188 (synopsis "Ecological drift under the UNTB")
17189 (description
17190 "This package provides numerical simulations, and visualizations, of
17191 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
17192 (license license:gpl2+)))
17193
17194 (define-public r-stepwise
17195 (package
17196 (name "r-stepwise")
17197 (version "0.3")
17198 (source
17199 (origin
17200 (method url-fetch)
17201 (uri (cran-uri "stepwise" version))
17202 (sha256
17203 (base32
17204 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
17205 (build-system r-build-system)
17206 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
17207 (synopsis "Stepwise detection of recombination breakpoints")
17208 (description
17209 "This package provides a stepwise approach to identifying recombination
17210 breakpoints in a genomic sequence alignment.")
17211 (license license:gpl2+)))
17212
17213 (define-public r-snpmaxsel
17214 (package
17215 (name "r-snpmaxsel")
17216 (version "1.0-3")
17217 (source
17218 (origin
17219 (method url-fetch)
17220 (uri (cran-uri "SNPmaxsel" version))
17221 (sha256
17222 (base32
17223 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
17224 (properties `((upstream-name . "SNPmaxsel")))
17225 (build-system r-build-system)
17226 (propagated-inputs
17227 (list r-combinat r-mvtnorm))
17228 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
17229 (synopsis "Maximally selected statistics for SNP data")
17230 (description
17231 "This package implements asymptotic methods related to maximally selected
17232 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
17233 data.")
17234 (license license:gpl2+)))
17235
17236 (define-public r-acsnminer
17237 (package
17238 (name "r-acsnminer")
17239 (version "0.16.8.25")
17240 (source (origin
17241 (method url-fetch)
17242 (uri (cran-uri "ACSNMineR" version))
17243 (sha256
17244 (base32
17245 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
17246 (properties `((upstream-name . "ACSNMineR")))
17247 (build-system r-build-system)
17248 (propagated-inputs
17249 (list r-ggplot2 r-gridextra))
17250 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
17251 (synopsis "Gene enrichment analysis")
17252 (description
17253 "This package provides tools to compute and represent gene set enrichment
17254 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
17255 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
17256 enrichment can be run with hypergeometric test or Fisher exact test, and can
17257 use multiple corrections. Visualization of data can be done either by
17258 barplots or heatmaps.")
17259 (license license:gpl2+)))
17260
17261 (define-public r-seqinr
17262 (package
17263 (name "r-seqinr")
17264 (version "4.2-16")
17265 (source
17266 (origin
17267 (method url-fetch)
17268 (uri (cran-uri "seqinr" version))
17269 (sha256
17270 (base32
17271 "0cj07b7km5mla63qhbkxg1mnqq6vh79lsyyfpnbm29gw68w2bwy4"))))
17272 (build-system r-build-system)
17273 (propagated-inputs
17274 (list r-ade4 r-segmented))
17275 (inputs
17276 (list zlib))
17277 (home-page "http://seqinr.r-forge.r-project.org/")
17278 (synopsis "Biological sequences retrieval and analysis")
17279 (description
17280 "This package provides tools for exploratory data analysis and data
17281 visualization of biological sequence (DNA and protein) data. It also includes
17282 utilities for sequence data management under the ACNUC system.")
17283 (license license:gpl2+)))
17284
17285 (define-public r-units
17286 (package
17287 (name "r-units")
17288 (version "0.8-0")
17289 (source
17290 (origin
17291 (method url-fetch)
17292 (uri (cran-uri "units" version))
17293 (sha256
17294 (base32
17295 "06mjprqi06xprj6185k5cmrrdl025x0pd1r6a4x3s74ciq9zwilw"))))
17296 (build-system r-build-system)
17297 (inputs
17298 (list udunits))
17299 (propagated-inputs
17300 (list r-rcpp))
17301 (native-inputs
17302 (list r-knitr))
17303 (home-page "https://github.com/r-quantities/units/")
17304 (synopsis "Measurement Units for R Vectors")
17305 (description
17306 "This package provides support for measurement units in R vectors,
17307 matrices and arrays: automatic propagation, conversion, derivation and
17308 simplification of units; raising errors in case of unit incompatibility. It
17309 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
17310 classes.")
17311 (license license:gpl2)))
17312
17313 (define-public r-udunits2
17314 (package
17315 (name "r-udunits2")
17316 (version "0.13.2.1")
17317 (source
17318 (origin
17319 (method url-fetch)
17320 (uri (cran-uri "udunits2" version))
17321 (sha256
17322 (base32
17323 "00prsy8m41v1camcsz94d7gm8qab2mdnwl3x0dyhz4r49b02jm4z"))))
17324 (properties `((upstream-name . "udunits2")))
17325 (build-system r-build-system)
17326 (inputs
17327 (list udunits))
17328 (home-page "https://cran.r-project.org/package=udunits2")
17329 (synopsis "Udunits-2 bindings for R")
17330 (description
17331 "This package provides simple bindings to Unidata's udunits library.")
17332 (license license:gpl2)))
17333
17334 (define-public r-classint
17335 (package
17336 (name "r-classint")
17337 (version "0.4-3")
17338 (source
17339 (origin
17340 (method url-fetch)
17341 (uri (cran-uri "classInt" version))
17342 (sha256
17343 (base32
17344 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
17345 (properties `((upstream-name . "classInt")))
17346 (build-system r-build-system)
17347 (propagated-inputs
17348 (list r-class r-e1071 r-kernsmooth))
17349 (native-inputs
17350 (list gfortran r-knitr))
17351 (home-page "https://github.com/r-spatial/classInt/")
17352 (synopsis "Choose univariate class intervals")
17353 (description
17354 "This package provides selected commonly used methods for choosing
17355 univariate class intervals for mapping or other graphics purposes.")
17356 (license license:gpl2+)))
17357
17358 (define-public r-spdata
17359 (package
17360 (name "r-spdata")
17361 (version "2.0.1")
17362 (source
17363 (origin
17364 (method url-fetch)
17365 (uri (cran-uri "spData" version))
17366 (sha256
17367 (base32
17368 "1z4hp5ivwzyvl8mkp98j2ng1cl1xksqbjxv85vdlqfqjwpia6df6"))))
17369 (properties `((upstream-name . "spData")))
17370 (build-system r-build-system)
17371 (propagated-inputs
17372 (list r-raster r-sp))
17373 (home-page "https://github.com/Nowosad/spData")
17374 (synopsis "Datasets for spatial analysis")
17375 (description
17376 "This a package containing diverse spatial datasets for demonstrating,
17377 benchmarking and teaching spatial data analysis. It includes R data of class
17378 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
17379 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
17380 of the datasets are designed to illustrate specific analysis techniques.
17381 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
17382 illustrate point pattern analysis techniques.")
17383 (license license:cc0)))
17384
17385 (define-public r-learnbayes
17386 (package
17387 (name "r-learnbayes")
17388 (version "2.15.1")
17389 (source
17390 (origin
17391 (method url-fetch)
17392 (uri (cran-uri "LearnBayes" version))
17393 (sha256
17394 (base32
17395 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
17396 (properties `((upstream-name . "LearnBayes")))
17397 (build-system r-build-system)
17398 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
17399 (synopsis "Functions for learning Bayesian inference")
17400 (description
17401 "This package provides a collection of functions helpful in learning the
17402 basic tenets of Bayesian statistical inference. It contains functions for
17403 summarizing basic one and two parameter posterior distributions and predictive
17404 distributions. It contains MCMC algorithms for summarizing posterior
17405 distributions defined by the user. It also contains functions for regression
17406 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
17407 sampling.")
17408 (license license:gpl2+)))
17409
17410 (define-public r-deldir
17411 (package
17412 (name "r-deldir")
17413 (version "1.0-6")
17414 (source
17415 (origin
17416 (method url-fetch)
17417 (uri (cran-uri "deldir" version))
17418 (sha256
17419 (base32
17420 "1igq0l2knsbhizncgydcsidgkvvlwwlkrifbcdyhnzk0bhrdixkd"))))
17421 (build-system r-build-system)
17422 (native-inputs (list gfortran))
17423 (home-page "https://cran.r-project.org/web/packages/deldir")
17424 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
17425 (description
17426 "This package provides tools for calculating the Delaunay triangulation
17427 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
17428 of a planar point set. It plots triangulations and tessellations in various
17429 ways, clips tessellations to sub-windows, calculates perimeters of
17430 tessellations, and summarizes information about the tiles of the
17431 tessellation.")
17432 (license license:gpl2+)))
17433
17434 (define-public r-wk
17435 (package
17436 (name "r-wk")
17437 (version "0.6.0")
17438 (source
17439 (origin
17440 (method url-fetch)
17441 (uri (cran-uri "wk" version))
17442 (sha256
17443 (base32
17444 "1xga4rrqsr190g55by39az4nimnn06bf5b6mcjgwqvba0lvjhb5g"))))
17445 (properties `((upstream-name . "wk")))
17446 (build-system r-build-system)
17447 (home-page "https://paleolimbot.github.io/wk/")
17448 (synopsis "Lightweight well-known geometry parsing")
17449 (description
17450 "This package provides a minimal R and C++ API for parsing well-known
17451 binary and well-known text representation of geometries to and from R-native
17452 formats. Well-known binary is compact and fast to parse; well-known text is
17453 human-readable and is useful for writing tests. These formats are only useful
17454 in R if the information they contain can be accessed in R, for which
17455 high-performance functions are provided here.")
17456 (license license:expat)))
17457
17458 (define-public r-s2
17459 (package
17460 (name "r-s2")
17461 (version "1.0.7")
17462 (source
17463 (origin
17464 (method url-fetch)
17465 (uri (cran-uri "s2" version))
17466 (sha256
17467 (base32
17468 "0gwydn6wdl675ydkcckrci6ylcx30qn8nfhmrp4qx4r9mv3c2410"))))
17469 (properties `((upstream-name . "s2")))
17470 (build-system r-build-system)
17471 (propagated-inputs
17472 (list r-rcpp r-wk))
17473 (inputs
17474 (list openssl))
17475 (native-inputs
17476 (list pkg-config))
17477 (home-page "https://r-spatial.github.io/s2/")
17478 (synopsis "Spherical geometry operators using the S2 geometry library")
17479 (description
17480 "This package provides R bindings for Google's s2 library for geometric
17481 calculations on the sphere. High-performance constructors and exporters
17482 provide high compatibility with existing spatial packages, transformers
17483 construct new geometries from existing geometries, predicates provide a means
17484 to select geometries based on spatial relationships, and accessors extract
17485 information about geometries.")
17486 (license license:asl2.0)))
17487
17488 (define-public r-sf
17489 (package
17490 (name "r-sf")
17491 (version "1.0-7")
17492 (source
17493 (origin
17494 (method url-fetch)
17495 (uri (cran-uri "sf" version))
17496 (sha256
17497 (base32
17498 "0lsl4rh4lbv386hxlsnnwsjb5x1n9d3z0ckjmxakmmrqjjmiywyh"))))
17499 (build-system r-build-system)
17500 (inputs
17501 (list gdal geos proj sqlite zlib))
17502 (propagated-inputs
17503 (list r-classint
17504 r-dbi
17505 r-magrittr
17506 r-rcpp
17507 r-s2
17508 r-units))
17509 (native-inputs
17510 (list pkg-config r-knitr))
17511 (home-page "https://github.com/r-spatial/sf/")
17512 (synopsis "Simple features for R")
17513 (description
17514 "This package provides support for simple features, a standardized way to
17515 encode spatial vector data. It binds to GDAL for reading and writing data, to
17516 GEOS for geometrical operations, and to PROJ for projection conversions and
17517 datum transformations.")
17518 ;; Either of these licenses
17519 (license (list license:gpl2 license:expat))))
17520
17521 (define-public r-spdep
17522 (package
17523 (name "r-spdep")
17524 (version "1.2-4")
17525 (source (origin
17526 (method url-fetch)
17527 (uri (cran-uri "spdep" version))
17528 (sha256
17529 (base32
17530 "0xx6k3rsvsz1hwj0ny8aqfi9ca54x38f8pz8sfya5cggaspxbx59"))
17531 (snippet
17532 '(for-each delete-file '("inst/doc/CO69.html"
17533 "inst/doc/CO69.R"
17534 "inst/doc/nb.html"
17535 "inst/doc/nb.R"
17536 "inst/doc/nb_sf.html"
17537 "inst/doc/nb_sf.R"
17538 "inst/doc/nb_sf.Rmd"
17539 "inst/doc/sids.html"
17540 "inst/doc/sids.R")))))
17541 (build-system r-build-system)
17542 (propagated-inputs
17543 (list r-boot
17544 r-deldir
17545 r-e1071
17546 r-s2
17547 r-sf
17548 r-sp
17549 r-spdata
17550 r-units))
17551 (native-inputs
17552 (list r-knitr))
17553 (home-page "https://github.com/r-spatial/spdep/")
17554 (synopsis "Spatial dependence: weighting schemes, statistics and models")
17555 (description
17556 "This package provides a collection of functions to create spatial
17557 weights matrix objects from polygon contiguities, from point patterns by
17558 distance and tessellations, for summarizing these objects, and for permitting
17559 their use in spatial data analysis, including regional aggregation by minimum
17560 spanning tree.")
17561 (license license:gpl2+)))
17562
17563 (define-public r-adegenet
17564 (package
17565 (name "r-adegenet")
17566 (version "2.1.6")
17567 (source
17568 (origin
17569 (method url-fetch)
17570 (uri (cran-uri "adegenet" version))
17571 (sha256
17572 (base32
17573 "0sx25p7bgz0h9mc3jsdnnjhvmb7sy8nb3r0z923vhk336d4xw8vq"))))
17574 (build-system r-build-system)
17575 (propagated-inputs
17576 (list r-ade4
17577 r-ape
17578 r-boot
17579 r-dplyr
17580 r-ggplot2
17581 r-igraph
17582 r-mass
17583 r-reshape2
17584 r-seqinr
17585 r-shiny
17586 r-vegan))
17587 (home-page "https://github.com/thibautjombart/adegenet")
17588 (synopsis "Exploratory analysis of genetic and genomic data")
17589 (description
17590 "This package provides a toolset for the exploration of genetic and
17591 genomic data. Adegenet provides formal (S4) classes for storing and handling
17592 various genetic data, including genetic markers with varying ploidy and
17593 hierarchical population structure (@code{genind} class), alleles counts by
17594 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
17595 also implements original multivariate methods (DAPC, sPCA), graphics,
17596 statistical tests, simulation tools, distance and similarity measures, and
17597 several spatial methods. A range of both empirical and simulated datasets is
17598 also provided to illustrate various methods.")
17599 (license license:gpl2+)))
17600
17601 (define-public r-pegas
17602 (package
17603 (name "r-pegas")
17604 (version "1.1")
17605 (source
17606 (origin
17607 (method url-fetch)
17608 (uri (cran-uri "pegas" version))
17609 (sha256
17610 (base32 "0ngd0laqbs139ji9hm9kwsm9rm56agw2yyfcplxgqva936l93fl7"))))
17611 (build-system r-build-system)
17612 (propagated-inputs
17613 (list r-ape))
17614 (home-page "http://ape-package.ird.fr/pegas.html")
17615 (synopsis "Population and evolutionary genetics analysis system")
17616 (description
17617 "This package provides functions for reading, writing, plotting,
17618 analysing, and manipulating allelic and haplotypic data, including from VCF
17619 files, and for the analysis of population nucleotide sequences and
17620 micro-satellites including coalescent analyses, linkage disequilibrium,
17621 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
17622 minimum spanning tree and network, and median-joining networks.")
17623 (license license:gpl2+)))
17624
17625 (define-public r-rmetasim
17626 (package
17627 (name "r-rmetasim")
17628 (version "3.1.14")
17629 (source
17630 (origin
17631 (method url-fetch)
17632 (uri (cran-uri "rmetasim" version))
17633 (sha256
17634 (base32
17635 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
17636 (build-system r-build-system)
17637 (propagated-inputs
17638 (list r-ade4 r-adegenet r-gtools r-pegas))
17639 (home-page "https://cran.r-project.org/web/packages/rmetasim")
17640 (synopsis "Individual-based population genetic simulation environment")
17641 (description
17642 "This package provides an interface between R and the metasim simulation
17643 engine. The simulation environment is documented in: Strand, A.(2002),
17644 Metasim 1.0: an individual-based environment for simulating population
17645 genetics of complex population dynamics.")
17646 ;; Any GPL version
17647 (license license:gpl2+)))
17648
17649 (define-public r-genetics
17650 (package
17651 (name "r-genetics")
17652 (version "1.3.8.1.3")
17653 (source
17654 (origin
17655 (method url-fetch)
17656 (uri (cran-uri "genetics" version))
17657 (sha256
17658 (base32
17659 "0lljxvz7nc6y2z303icphar2niir0i407w5cyhy2pwspd9gwkwpy"))))
17660 (build-system r-build-system)
17661 (propagated-inputs
17662 (list r-combinat r-gdata r-gtools r-mass r-mvtnorm))
17663 (home-page "https://cran.r-project.org/web/packages/genetics/")
17664 (synopsis "Population genetics")
17665 (description
17666 "This package provides classes and methods for handling genetic data.
17667 It includes classes to represent genotypes and haplotypes at single markers up
17668 to multiple markers on multiple chromosomes. Function include allele
17669 frequencies, flagging homo/heterozygotes, flagging carriers of certain
17670 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
17671 and testing for linkage disequilibrium, ...")
17672 ;; Any GPL version.
17673 (license license:gpl2+)))
17674
17675 (define-public r-snp-plotter
17676 (package
17677 (name "r-snp-plotter")
17678 (version "0.5.1")
17679 (source
17680 (origin
17681 (method url-fetch)
17682 (uri (cran-uri "snp.plotter" version))
17683 (sha256
17684 (base32
17685 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
17686 (properties `((upstream-name . "snp.plotter")))
17687 (build-system r-build-system)
17688 (propagated-inputs (list r-genetics))
17689 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
17690 (synopsis "Plot p-values using single SNP and/or haplotype data")
17691 (description
17692 "This package helps you create plots of p-values using single SNP and/or
17693 haplotype data. Main features of the package include options to display a
17694 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
17695 datasets simultaneously. Plots can be created using global and/or individual
17696 haplotype p-values along with single SNP p-values. Images are created as
17697 either PDF/EPS files.")
17698 (license license:gpl2+)))
17699
17700 (define-public r-polspline
17701 (package
17702 (name "r-polspline")
17703 (version "1.1.20")
17704 (source
17705 (origin
17706 (method url-fetch)
17707 (uri (cran-uri "polspline" version))
17708 (sha256
17709 (base32 "1dd1jwiaglkkhajzvqfkd1x5r3wzjlk5ww0yxzmns0s1kr74i4k9"))))
17710 (build-system r-build-system)
17711 (native-inputs (list gfortran))
17712 (home-page "https://cran.r-project.org/web/packages/polspline/")
17713 (synopsis "Polynomial spline routines")
17714 (description
17715 "This package provides routines for the polynomial spline fitting
17716 routines hazard regression, hazard estimation with flexible tails, logspline,
17717 lspec, polyclass, and polymars.")
17718 (license license:gpl2+)))
17719
17720 (define-public r-rms
17721 (package
17722 (name "r-rms")
17723 (version "6.3-0")
17724 (source
17725 (origin
17726 (method url-fetch)
17727 (uri (cran-uri "rms" version))
17728 (sha256
17729 (base32 "1yfk800q4mgmrjkh0hqjkiv907sr1bi1jaigrj8l6pmg1mkynhbc"))))
17730 (build-system r-build-system)
17731 (propagated-inputs
17732 (list r-cluster
17733 r-digest
17734 r-ggplot2
17735 r-hmisc
17736 r-htmltable
17737 r-htmltools
17738 r-lattice
17739 r-mass
17740 r-multcomp
17741 r-nlme
17742 r-polspline
17743 r-quantreg
17744 r-rpart
17745 r-sparsem
17746 r-survival))
17747 (native-inputs (list gfortran))
17748 (home-page "http://biostat.mc.vanderbilt.edu/rms")
17749 (synopsis "Regression modeling strategies")
17750 (description
17751 "This is a package for regression modeling, testing, estimation,
17752 validation, graphics, prediction, and typesetting by storing enhanced model
17753 design attributes in the fit. The rms package is a collection of functions
17754 that assist with and streamline modeling. It also contains functions for
17755 binary and ordinal logistic regression models, ordinal models for continuous Y
17756 with a variety of distribution families, and the Buckley-James multiple
17757 regression model for right-censored responses, and implements penalized
17758 maximum likelihood estimation for logistic and ordinary linear models. The
17759 package works with almost any regression model, but it was especially written
17760 to work with binary or ordinal regression models, Cox regression, accelerated
17761 failure time models, ordinary linear models, the Buckley-James model,
17762 generalized least squares for serially or spatially correlated observations,
17763 generalized linear models, and quantile regression.")
17764 (license license:gpl2+)))
17765
17766 (define-public r-arsenal
17767 (package
17768 (name "r-arsenal")
17769 (version "3.6.3")
17770 (source
17771 (origin
17772 (method url-fetch)
17773 (uri (cran-uri "arsenal" version))
17774 (sha256
17775 (base32
17776 "0qvs3ld28djnjnggdhqjwq8sbv8zz322qahlvf7dnx35yqf6xkms"))))
17777 (properties `((upstream-name . "arsenal")))
17778 (build-system r-build-system)
17779 (propagated-inputs (list r-knitr))
17780 (native-inputs (list r-knitr))
17781 (home-page "https://github.com/mayoverse/arsenal")
17782 (synopsis "Functions for large-scale statistical summaries")
17783 (description
17784 "This package provides an arsenal of R functions for large-scale
17785 statistical summaries, which are streamlined to work within the latest
17786 reporting tools in R and RStudio and which use formulas and versatile
17787 summary statistics for summary tables and models. The primary functions
17788 include
17789
17790 @enumerate
17791 @item @code{tableby}, a Table-1-like summary of multiple variable types by the
17792 levels of one or more categorical variables;
17793 @item @code{paired}, a Table-1-like summary of multiple variable types paired
17794 across two time points;
17795 @item @code{modelsum}, which performs simple model fits on one or more
17796 endpoints for many variables (univariate or adjusted for covariates);
17797 @item @code{freqlist}, a powerful frequency table across many categorical
17798 variables;
17799 @item @code{comparedf}, a function for comparing @code{data.frames}; and
17800 @item @code{write2}, a function to output tables to a document.
17801 @end enumerate
17802 ")
17803 (license license:gpl2+)))
17804
17805 (define-public r-haplo-stats
17806 (package
17807 (name "r-haplo-stats")
17808 (version "1.8.7")
17809 (source
17810 (origin
17811 (method url-fetch)
17812 (uri (cran-uri "haplo.stats" version))
17813 (sha256
17814 (base32
17815 "1q2zn72j92bwhcdswk4qqfgzch56p9pcy2xhkd3safvqp3l9rzpw"))))
17816 (properties `((upstream-name . "haplo.stats")))
17817 (build-system r-build-system)
17818 (propagated-inputs
17819 (list r-arsenal r-rms))
17820 (native-inputs
17821 (list r-r-rsp)) ; for vignettes
17822 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
17823 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
17824 (description
17825 "This package provides routines for the analysis of indirectly measured
17826 haplotypes. The statistical methods assume that all subjects are unrelated
17827 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
17828 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
17829 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
17830 examples in the vignette.")
17831 (license license:gpl2+)))
17832
17833 (define-public r-bqtl
17834 (package
17835 (name "r-bqtl")
17836 (version "1.0-33")
17837 (source
17838 (origin
17839 (method url-fetch)
17840 (uri (cran-uri "bqtl" version))
17841 (sha256
17842 (base32
17843 "1sbzpi9z94f010lw2y1gmifjrvpmiqs4m26za7vr1xz72azrqvs9"))))
17844 (build-system r-build-system)
17845 (native-inputs (list gfortran))
17846 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
17847 (synopsis "Bayesian QTL mapping toolkit")
17848 (description
17849 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
17850 lines. It includes maximum likelihood and Bayesian tools.")
17851 (license license:gpl2+)))
17852
17853 (define-public r-ibdreg
17854 (package
17855 (name "r-ibdreg")
17856 (version "0.3.6")
17857 (source
17858 (origin
17859 (method url-fetch)
17860 (uri (cran-uri "ibdreg" version))
17861 (sha256
17862 (base32
17863 "1x8z0vr2cmdks12hxfm0wwxskb0cr669w5j5rpa2ln8q704yy41g"))))
17864 (build-system r-build-system)
17865 (home-page "https://www.mayo.edu/research/labs/\
17866 statistical-genetics-genetic-epidemiology/software")
17867 (synopsis "Regression methods for IBD linkage with covariates")
17868 (description
17869 "This package provides a method to test genetic linkage with covariates
17870 by regression methods with response IBD sharing for relative pairs. Account
17871 for correlations of IBD statistics and covariates for relative pairs within
17872 the same pedigree.")
17873 (license license:gpl2+)))
17874
17875 (define-public r-dlmap
17876 (package
17877 (name "r-dlmap")
17878 (version "1.13")
17879 (source
17880 (origin
17881 (method url-fetch)
17882 (uri (cran-uri "dlmap" version))
17883 (sha256
17884 (base32
17885 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
17886 (build-system r-build-system)
17887 (propagated-inputs
17888 (list r-ibdreg r-mgcv r-nlme r-qtl r-wgaim))
17889 (home-page "https://cran.r-project.org/web/packages/dlmap/")
17890 (synopsis "Detection localization mapping for QTL")
17891 (description
17892 "This is package for QTL mapping in a mixed model framework with separate
17893 detection and localization stages. The first stage detects the number of QTL
17894 on each chromosome based on the genetic variation due to grouped markers on
17895 the chromosome; the second stage uses this information to determine the most
17896 likely QTL positions. The mixed model can accommodate general fixed and
17897 random effects, including spatial effects in field trials and pedigree
17898 effects. It is applicable to backcrosses, doubled haploids, recombinant
17899 inbred lines, F2 intercrosses, and association mapping populations.")
17900 (license license:gpl2)))
17901
17902 (define-public r-hwde
17903 (package
17904 (name "r-hwde")
17905 (version "0.67")
17906 (source
17907 (origin
17908 (method url-fetch)
17909 (uri (cran-uri "hwde" version))
17910 (sha256
17911 (base32
17912 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
17913 (build-system r-build-system)
17914 (home-page "https://cran.r-project.org/web/packages/hwde/")
17915 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
17916 (description
17917 "This package fits models for genotypic disequilibria, as described in
17918 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
17919 terms are available that account for first order interactions between loci.
17920 It also implements, for a single locus in a single population, a conditional
17921 exact test for Hardy-Weinberg equilibrium.")
17922 (license license:gpl2+)))
17923
17924 (define-public r-tdthap
17925 (package
17926 (name "r-tdthap")
17927 (version "1.1-11")
17928 (source
17929 (origin
17930 (method url-fetch)
17931 (uri (cran-uri "tdthap" version))
17932 (sha256
17933 (base32
17934 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
17935 (build-system r-build-system)
17936 (home-page "https://cran.r-project.org/web/packages/tdthap/")
17937 (synopsis "TDT tests for extended haplotypes")
17938 (description
17939 "Functions and examples are provided for transmission/disequilibrium
17940 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
17941 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
17942 (license license:artistic2.0)))
17943
17944 (define-public r-sparql
17945 (package
17946 (name "r-sparql")
17947 (version "1.16")
17948 (source (origin
17949 (method url-fetch)
17950 (uri (cran-uri "SPARQL" version))
17951 (sha256
17952 (base32
17953 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
17954 (properties `((upstream-name . "SPARQL")))
17955 (build-system r-build-system)
17956 (propagated-inputs
17957 (list r-rcurl r-xml))
17958 (home-page "https://cran.r-project.org/web/packages/SPARQL")
17959 (synopsis "SPARQL client for R")
17960 (description "This package provides an interface to use SPARQL to pose
17961 SELECT or UPDATE queries to an end-point.")
17962 ;; The only license indication is found in the DESCRIPTION file,
17963 ;; which states GPL-3. So we cannot assume GPLv3+.
17964 (license license:gpl3)))
17965
17966 (define-public r-bookdown
17967 (package
17968 (name "r-bookdown")
17969 (version "0.26")
17970 (source (origin
17971 (method url-fetch)
17972 (uri (cran-uri "bookdown" version))
17973 (sha256
17974 (base32
17975 "11din9h2sgzvg44627xc5is4psbq2b34km5sbiaprskjrf474866"))))
17976 (build-system r-build-system)
17977 (propagated-inputs
17978 (list r-htmltools
17979 r-jquerylib
17980 r-knitr
17981 r-rmarkdown
17982 r-tinytex
17983 r-xfun
17984 r-yaml
17985 pandoc))
17986 ;; We cannot add knitr because this package depends on xfun, which is an
17987 ;; input to knitr.
17988 #;
17989 (native-inputs
17990 (list r-knitr))
17991 (home-page "https://github.com/rstudio/bookdown")
17992 (synopsis "Authoring books and technical documents with R markdown")
17993 (description "This package provides output formats and utilities for
17994 authoring books and technical documents with R Markdown.")
17995 (license license:gpl3)))
17996
17997 (define-public r-optparse
17998 (package
17999 (name "r-optparse")
18000 (version "1.7.1")
18001 (source
18002 (origin
18003 (method url-fetch)
18004 (uri (cran-uri "optparse" version))
18005 (sha256
18006 (base32
18007 "1rqz0y4r94y3mwbb9kyz97cjqpnprka96qbncvbnbmgg2d630kij"))))
18008 (build-system r-build-system)
18009 (propagated-inputs
18010 (list r-getopt))
18011 (native-inputs
18012 (list r-knitr))
18013 (home-page "https://github.com/trevorld/optparse")
18014 (synopsis "Command line option parser")
18015 (description
18016 "This package provides a command line parser inspired by Python's
18017 @code{optparse} library to be used with Rscript to write shebang scripts
18018 that accept short and long options.")
18019 (license license:gpl2+)))
18020
18021 (define-public r-kernlab
18022 (package
18023 (name "r-kernlab")
18024 (version "0.9-30")
18025 (source
18026 (origin
18027 (method url-fetch)
18028 (uri (cran-uri "kernlab" version))
18029 (sha256
18030 (base32 "10gfb542nbl1d5pfy6r7gcg3j1ikra9l18r6xjv8lzp5ka1kmz28"))))
18031 (build-system r-build-system)
18032 (home-page "https://cran.r-project.org/web/packages/kernlab")
18033 (synopsis "Kernel-based machine learning tools")
18034 (description
18035 "This package provides kernel-based machine learning methods for
18036 classification, regression, clustering, novelty detection, quantile regression
18037 and dimensionality reduction. Among other methods @code{kernlab} includes
18038 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
18039 and a QP solver.")
18040 (license license:gpl2)))
18041
18042 (define-public r-hierfstat
18043 (package
18044 (name "r-hierfstat")
18045 (version "0.5-11")
18046 (source
18047 (origin
18048 (method url-fetch)
18049 (uri (cran-uri "hierfstat" version))
18050 (sha256
18051 (base32
18052 "0nyb5091lr8ma9vydbssyx9503601rynlrbldv98mmrmh74h6v41"))))
18053 (build-system r-build-system)
18054 (propagated-inputs
18055 (list r-ade4 r-adegenet r-gaston r-gtools))
18056 (native-inputs
18057 (list r-knitr))
18058 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
18059 (synopsis "Estimation and tests of hierarchical F-statistics")
18060 (description
18061 "This package allows the estimation of hierarchical F-statistics from
18062 haploid or diploid genetic data with any numbers of levels in the hierarchy,
18063 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
18064 are also given to test via randomisations the significance of each F and
18065 variance components, using the likelihood-ratio statistics G.")
18066 (license license:gpl2+)))
18067
18068 (define-public r-hapassoc
18069 (package
18070 (name "r-hapassoc")
18071 (version "1.2-9")
18072 (source
18073 (origin
18074 (method url-fetch)
18075 (uri (cran-uri "hapassoc" version))
18076 (sha256
18077 (base32
18078 "09ijc4sbw743z74fzklmvig11ndkycg6j86k4214wfsj1yj6j9x6"))))
18079 (build-system r-build-system)
18080 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
18081 (synopsis "Inference of trait associations with SNP haplotypes")
18082 (description
18083 "Hapassoc performs likelihood inference of trait associations with
18084 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
18085 functions are developed primarily for data collected in cohort or
18086 cross-sectional studies. They can accommodate uncertain haplotype phase and
18087 handle missing genotypes at some SNPs.")
18088 (license license:gpl2)))
18089
18090 (define-public r-sampling
18091 (package
18092 (name "r-sampling")
18093 (version "2.9")
18094 (source
18095 (origin
18096 (method url-fetch)
18097 (uri (cran-uri "sampling" version))
18098 (sha256
18099 (base32
18100 "11xis4vzn2ga8ml9xrgfgqzccvwbnabq35aidzdvpnvciybsanvz"))))
18101 (build-system r-build-system)
18102 (propagated-inputs
18103 (list r-lpsolve r-mass))
18104 (home-page "https://cran.r-project.org/web/packages/sampling/")
18105 (synopsis "Survey sampling")
18106 (description
18107 "This package provides functions for drawing and calibrating samples.")
18108 (license license:gpl2+)))
18109
18110 (define-public r-r2html
18111 (package
18112 (name "r-r2html")
18113 (version "2.3.3")
18114 (source
18115 (origin
18116 (method url-fetch)
18117 (uri (cran-uri "R2HTML" version))
18118 (sha256
18119 (base32
18120 "12qg9rp1j26h2f48dfg5k9jds26ycacv3f3ymk686ks43hd1hzja"))))
18121 (properties `((upstream-name . "R2HTML")))
18122 (build-system r-build-system)
18123 (home-page "https://github.com/nalimilan/R2HTML")
18124 (synopsis "HTML export for R objects")
18125 (description
18126 "This package includes HTML functions and methods to write in an HTML
18127 file. Thus, making HTML reports is easy. It includes a function that allows
18128 redirection on the fly, which appears to be very useful for teaching purposes,
18129 as the student can keep a copy of the produced output to keep all that they
18130 did during the course. The package comes with a vignette describing how to
18131 write HTML reports for statistical analysis. Finally, a driver for Sweave
18132 parses HTML flat files containing R code and to automatically write
18133 the corresponding outputs (tables and graphs).")
18134 (license license:gpl2+)))
18135
18136 (define-public r-rjava
18137 (package
18138 (name "r-rjava")
18139 (version "1.0-6")
18140 (source
18141 (origin
18142 (method url-fetch)
18143 (uri (cran-uri "rJava" version))
18144 (sha256
18145 (base32
18146 "1ijqhvnb8ab38cp9pwdf7zq7xqqlm6x94gkrab2dd98p6d4x1472"))))
18147 (properties `((upstream-name . "rJava")))
18148 (build-system r-build-system)
18149 (arguments
18150 `(#:modules ((guix build utils)
18151 (guix build r-build-system)
18152 (ice-9 match))
18153 #:phases
18154 (modify-phases %standard-phases
18155 (add-after 'unpack 'set-JAVA_HOME
18156 (lambda* (#:key inputs #:allow-other-keys)
18157 (let ((jdk (assoc-ref inputs "jdk")))
18158 (setenv "JAVA_HOME" jdk)
18159 (setenv "JAVA" (which "java"))
18160 (setenv "JAR" (which "jar"))
18161 (setenv "JAVAC" (which "javac"))
18162 (setenv "JAVAH" (which "javah"))
18163 (setenv "JAVA_CPPFLAGS"
18164 (string-append "-I" jdk "/include "
18165 "-I" jdk "/include/linux"))
18166 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
18167 ((lib) (setenv "JAVA_LIBS" lib))
18168 (_ (error "Could not find libjvm.so"))))
18169 #t)))))
18170 (inputs
18171 `(("icu4c" ,icu4c)
18172 ("jdk" ,icedtea-8 "jdk")
18173 ("zlib" ,zlib)))
18174 (home-page "https://www.rforge.net/rJava/")
18175 (synopsis "Low-Level R to Java interface")
18176 (description
18177 "This package provides a low-level interface to the Java VM very much
18178 like .C/.Call and friends. It allows the creation of objects, calling methods
18179 and accessing fields.")
18180 (license license:gpl2)))
18181
18182 (define-public r-svmisc
18183 (package
18184 (name "r-svmisc")
18185 (version "1.2.3")
18186 (source
18187 (origin
18188 (method url-fetch)
18189 (uri (cran-uri "svMisc" version))
18190 (sha256
18191 (base32
18192 "1r3kih5bnr4plnzdn5f2gg3xl3krgyl7gkdlf58a2l8vk13j3m9d"))))
18193 (properties `((upstream-name . "svMisc")))
18194 (build-system r-build-system)
18195 (native-inputs
18196 (list r-knitr))
18197 (home-page "https://github.com/SciViews/svMisc")
18198 (synopsis "Miscellaneous functions for SciViews")
18199 (description
18200 "This package provides miscellaneous functions for SciViews or general
18201 use, including tools to manage a temporary environment attached to the search
18202 path for temporary variables you do not want to @code{save()} or
18203 @code{load()}; test the current platform; showing progress bars, etc.")
18204 (license license:gpl2)))
18205
18206 (define-public r-xyz
18207 (package
18208 (name "r-xyz")
18209 (version "0.2")
18210 (source
18211 (origin
18212 (method url-fetch)
18213 (uri (cran-uri "xyz" version))
18214 (sha256
18215 (base32
18216 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
18217 (build-system r-build-system)
18218 (propagated-inputs
18219 (list r-rcpp))
18220 (home-page "https://cran.r-project.org/web/packages/xyz/")
18221 (synopsis "Algorithm for fast interaction search in high-dimensional data")
18222 (description
18223 "High dimensional interaction search by brute force requires a quadratic
18224 computational cost in the number of variables. The xyz algorithm provably
18225 finds strong interactions in almost linear time. For details of the algorithm
18226 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
18227 interaction search in high-dimensional data.")
18228 ;; Any version of the GPL.
18229 (license license:gpl2+)))
18230
18231 (define-public r-rttf2pt1
18232 (package
18233 (name "r-rttf2pt1")
18234 (version "1.3.10")
18235 (source
18236 (origin
18237 (method url-fetch)
18238 (uri (cran-uri "Rttf2pt1" version))
18239 (sha256
18240 (base32
18241 "1fp1y0kxa5xg8w0dplm12wfm8h78az4k6ql1758wwhb3d17np241"))))
18242 (properties `((upstream-name . "Rttf2pt1")))
18243 (build-system r-build-system)
18244 (home-page "https://github.com/wch/Rttf2pt1")
18245 (synopsis "Font conversion utility")
18246 (description
18247 "This package contains the program @code{ttf2pt1}, for use with the
18248 @code{extrafont} package.")
18249 ;; Most of the files are covered under the Expat license. Some files are
18250 ;; covered under BSD-3. Deviations for individual files are recorded in
18251 ;; the LICENSE file.
18252 (license (list license:bsd-3 license:expat
18253 (license:non-copyleft "file://LICENSE")))))
18254
18255 (define-public r-extrafontdb
18256 (package
18257 (name "r-extrafontdb")
18258 (version "1.0")
18259 (source
18260 (origin
18261 (method url-fetch)
18262 (uri (cran-uri "extrafontdb" version))
18263 (sha256
18264 (base32
18265 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
18266 (build-system r-build-system)
18267 (home-page "https://github.com/wch/extrafontdb")
18268 (synopsis "Database for the extrafont package")
18269 (description
18270 "This package holds the database for the @code{extrafont} package.")
18271 (license license:gpl2)))
18272
18273 (define-public r-extrafont
18274 (package
18275 (name "r-extrafont")
18276 (version "0.18")
18277 (source
18278 (origin
18279 (method url-fetch)
18280 (uri (cran-uri "extrafont" version))
18281 (sha256
18282 (base32
18283 "0mx810mld67vb1w3wkl4fhpjmkq32lgpq5x1c0a9rf8li5wskrj4"))))
18284 (build-system r-build-system)
18285 (propagated-inputs
18286 (list r-extrafontdb r-rttf2pt1))
18287 (home-page "https://github.com/wch/extrafont")
18288 (synopsis "Tools for using fonts in R")
18289 (description
18290 "The extrafont package makes it easier to use fonts other than the basic
18291 PostScript fonts that R uses. Fonts that are imported into extrafont can be
18292 used with PDF or PostScript output files. There are two hurdles for using
18293 fonts in PDF (or Postscript) output files:
18294
18295 @enumerate
18296 @item Making R aware of the font and the dimensions of the characters.
18297 @item Embedding the fonts in the PDF file so that the PDF can be displayed
18298 properly on a device that doesn't have the font. This is usually needed if
18299 you want to print the PDF file or share it with others.
18300 @end enumerate
18301
18302 The extrafont package makes both of these things easier.")
18303 (license license:gpl2)))
18304
18305 (define-public r-xkcd
18306 (package
18307 (name "r-xkcd")
18308 (version "0.0.6")
18309 (source
18310 (origin
18311 (method url-fetch)
18312 (uri (cran-uri "xkcd" version))
18313 (sha256
18314 (base32
18315 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
18316 (build-system r-build-system)
18317 (propagated-inputs
18318 (list r-extrafont r-ggplot2 r-hmisc))
18319 (home-page "https://cran.r-project.org/web/packages/xkcd/")
18320 (synopsis "Plot ggplot2 graphics in the XKCD style")
18321 (description
18322 "This package provides the means to plot ggplot2 graphs in the style of
18323 the XKCD web comic.")
18324 (license license:gpl3)))
18325
18326 (define-public r-babelgene
18327 (package
18328 (name "r-babelgene")
18329 (version "22.3")
18330 (source
18331 (origin
18332 (method url-fetch)
18333 (uri (cran-uri "babelgene" version))
18334 (sha256
18335 (base32
18336 "1735h4s2vahv55pmq65zkgxq8d5x71i1is03rf17dric8yynjjhg"))))
18337 (properties `((upstream-name . "babelgene")))
18338 (build-system r-build-system)
18339 (propagated-inputs
18340 (list r-dplyr r-rlang))
18341 (native-inputs
18342 (list r-knitr))
18343 (home-page
18344 "https://igordot.github.io/babelgene/")
18345 (synopsis "Gene orthologs for model organisms in a Tidy data format")
18346 (description
18347 "Genomic analysis of model organisms often requires the use of databases
18348 based on human data or making comparisons to patient-derived resources. This
18349 requires converting genes between human and non-human analogues. The
18350 babelgene R package provides predicted gene orthologs/homologs for frequently
18351 studied model organisms in an R-friendly tidy/long format. The package
18352 integrates orthology assertion predictions sourced from multiple databases as
18353 compiled by the HGNC Comparison of Orthology Predictions (HCOP).")
18354 (license license:expat)))
18355
18356 (define-public r-msigdbr
18357 (package
18358 (name "r-msigdbr")
18359 (version "7.5.1")
18360 (source
18361 (origin
18362 (method url-fetch)
18363 (uri (cran-uri "msigdbr" version))
18364 (sha256
18365 (base32
18366 "1jna9bkq0a7r6f8nhxziyiw75kfhsyh1rv7sx5d4551mvxxlhc6w"))))
18367 (build-system r-build-system)
18368 (propagated-inputs
18369 (list r-babelgene
18370 r-dplyr
18371 r-magrittr
18372 r-rlang
18373 r-tibble
18374 r-tidyselect))
18375 (native-inputs
18376 (list r-knitr))
18377 (home-page "https://github.com/igordot/msigdbr")
18378 (synopsis "MSigDB gene sets for multiple organisms")
18379 (description
18380 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
18381 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
18382 software in a standard R data frame with key-value pairs. Included are the
18383 original human gene symbols and Entrez IDs as well as the equivalents for
18384 various frequently studied model organisms such as mouse, rat, pig, fly, and
18385 yeast.")
18386 ;; The package is covered under the Expat license, but the upstream MSigDB
18387 ;; files are made available under the Creative Commons Attribution 4.0
18388 ;; International license.
18389 (license (list license:expat license:cc-by4.0))))
18390
18391 (define-public r-gridgraphics
18392 (package
18393 (name "r-gridgraphics")
18394 (version "0.5-1")
18395 (source
18396 (origin
18397 (method url-fetch)
18398 (uri (cran-uri "gridGraphics" version))
18399 (sha256
18400 (base32
18401 "12yswy02j3h5wir7m5jnkhpjmb0sa4snn61vjd68i49qwsa6w219"))))
18402 (properties `((upstream-name . "gridGraphics")))
18403 (build-system r-build-system)
18404 (home-page "https://github.com/pmur002/gridgraphics")
18405 (synopsis "Redraw base graphics using @code{grid} graphics")
18406 (description
18407 "This package provides functions to convert a page of plots drawn with
18408 the @code{graphics} package into identical output drawn with the @code{grid}
18409 package. The result looks like the original @code{graphics}-based plot, but
18410 consists of @code{grid} grobs and viewports that can then be manipulated with
18411 @code{grid} functions (e.g., edit grobs and revisit viewports).")
18412 (license license:gpl2+)))
18413
18414 (define-public r-farver
18415 (package
18416 (name "r-farver")
18417 (version "2.1.0")
18418 (source
18419 (origin
18420 (method url-fetch)
18421 (uri (cran-uri "farver" version))
18422 (sha256
18423 (base32
18424 "1x6ffwxqbrwlylnk995jz2a6nz2y9z59jaq0ncpni7q40w367j75"))))
18425 (build-system r-build-system)
18426 (home-page "https://github.com/thomasp85/farver")
18427 (synopsis "Vectorized color conversion and comparison")
18428 (description
18429 "The encoding of color can be handled in many different ways, using
18430 different color spaces. As different color spaces have different uses,
18431 efficient conversion between these representations are important. This
18432 package provides a set of functions that gives access to very fast color space
18433 conversion and comparisons implemented in C++, and offers 100-fold speed
18434 improvements over the @code{convertColor} function in the @code{grDevices}
18435 package.")
18436 (license license:expat)))
18437
18438 (define-public r-yulab-utils
18439 (package
18440 (name "r-yulab-utils")
18441 (version "0.0.4")
18442 (source
18443 (origin
18444 (method url-fetch)
18445 (uri (cran-uri "yulab.utils" version))
18446 (sha256
18447 (base32
18448 "1bj93gnj7j4b7dgkbr5v22rsbwfcw5dvipl5irmidaakvrihd19q"))))
18449 (properties `((upstream-name . "yulab.utils")))
18450 (build-system r-build-system)
18451 (home-page "https://cran.r-project.org/package=yulab.utils")
18452 (synopsis "Supporting functions for packages maintained by YuLab-SMU")
18453 (description
18454 "Miscellaneous functions commonly used by YuLab-SMU, such as
18455 @code{install_zip_gh} to install R packages from Github ZIP files.")
18456 (license license:artistic2.0)))
18457
18458 (define-public r-ggplotify
18459 (package
18460 (name "r-ggplotify")
18461 (version "0.1.0")
18462 (source
18463 (origin
18464 (method url-fetch)
18465 (uri (cran-uri "ggplotify" version))
18466 (sha256
18467 (base32
18468 "12mk3fa8fdjxj7xxz21jkr7h91w5wdgwjqhszcz1qffwsgb773qp"))))
18469 (build-system r-build-system)
18470 (propagated-inputs
18471 (list r-ggplot2 r-gridgraphics r-yulab-utils))
18472 (native-inputs
18473 (list r-knitr))
18474 (home-page "https://github.com/GuangchuangYu/ggplotify")
18475 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
18476 (description
18477 "This package provides tools to convert plot function calls (using
18478 expression or formula) to @code{grob} or @code{ggplot} objects that are
18479 compatible with the @code{grid} and @code{ggplot2} environment. With this
18480 package, we are able to e.g. use @code{cowplot} to align plots produced by
18481 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
18482 converting them to @code{ggplot} objects.")
18483 (license license:artistic2.0)))
18484
18485 (define-public r-triebeard
18486 (package
18487 (name "r-triebeard")
18488 (version "0.3.0")
18489 (source
18490 (origin
18491 (method url-fetch)
18492 (uri (cran-uri "triebeard" version))
18493 (sha256
18494 (base32
18495 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
18496 (build-system r-build-system)
18497 (propagated-inputs (list r-rcpp))
18498 (home-page "https://github.com/Ironholds/triebeard/")
18499 (synopsis "Radix trees in Rcpp")
18500 (description
18501 "Radix trees, or tries, are key-value data structures optimized for
18502 efficient lookups, similar in purpose to hash tables. This package provides
18503 an implementation of radix trees for use in R programming and in developing
18504 packages with Rcpp.")
18505 (license license:expat)))
18506
18507 (define-public r-tweenr
18508 (package
18509 (name "r-tweenr")
18510 (version "1.0.2")
18511 (source
18512 (origin
18513 (method url-fetch)
18514 (uri (cran-uri "tweenr" version))
18515 (sha256
18516 (base32
18517 "17znizh4yabh2zs9mzyr0sl6p0pw49961i61br7cl1b7v9sza18q"))))
18518 (build-system r-build-system)
18519 (propagated-inputs
18520 (list r-farver r-magrittr r-rcpp r-rlang))
18521 (home-page "https://github.com/thomasp85/tweenr")
18522 (synopsis "Interpolate data for smooth animations")
18523 (description
18524 "In order to create smooth animation between states of data, tweening is
18525 necessary. This package provides a range of functions for creating tweened
18526 data that can be used as basis for animation. Furthermore it adds a number of
18527 vectorized interpolaters for common R data types such as numeric, date and
18528 color.")
18529 (license license:expat)))
18530
18531 (define-public r-polyclip
18532 (package
18533 (name "r-polyclip")
18534 (version "1.10-0")
18535 (source
18536 (origin
18537 (method url-fetch)
18538 (uri (cran-uri "polyclip" version))
18539 (sha256
18540 (base32
18541 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
18542 (build-system r-build-system)
18543 (native-inputs (list pkg-config))
18544 (home-page "http://www.angusj.com/delphi/clipper.php")
18545 (synopsis "Polygon clipping")
18546 (description
18547 "This package provides an R port of the library Clipper. It performs
18548 polygon clipping operations (intersection, union, set minus, set difference)
18549 for polygonal regions of arbitrary complexity, including holes. It computes
18550 offset polygons (spatial buffer zones, morphological dilations, Minkowski
18551 dilations) for polygonal regions and polygonal lines. It computes the
18552 Minkowski Sum of general polygons. There is a function for removing
18553 self-intersections from polygon data.")
18554 (license license:boost1.0)))
18555
18556 (define-public r-urltools
18557 (package
18558 (name "r-urltools")
18559 (version "1.7.3")
18560 (source
18561 (origin
18562 (method url-fetch)
18563 (uri (cran-uri "urltools" version))
18564 (sha256
18565 (base32
18566 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
18567 (build-system r-build-system)
18568 (propagated-inputs
18569 (list r-rcpp r-triebeard))
18570 (home-page "https://github.com/Ironholds/urltools/")
18571 (synopsis "Vectorized tools for URL handling and parsing")
18572 (description
18573 "This package provides a toolkit for all URL-handling needs, including
18574 encoding and decoding, parsing, parameter extraction and modification. All
18575 functions are designed to be both fast and entirely vectorized. It is
18576 intended to be useful for people dealing with web-related datasets, such as
18577 server-side logs, although may be useful for other situations involving large
18578 sets of URLs.")
18579 (license license:expat)))
18580
18581 (define-public r-ggforce
18582 (package
18583 (name "r-ggforce")
18584 (version "0.3.3")
18585 (source
18586 (origin
18587 (method url-fetch)
18588 (uri (cran-uri "ggforce" version))
18589 (sha256
18590 (base32
18591 "0bwzjbjl678xvc2ihm80dwn9pidwafqjdab3k299csys16s3na1a"))))
18592 (build-system r-build-system)
18593 (propagated-inputs
18594 (list r-ggplot2
18595 r-gtable
18596 r-mass
18597 r-polyclip
18598 r-rcpp
18599 r-rcppeigen
18600 r-rlang
18601 r-scales
18602 r-tidyselect
18603 r-tweenr
18604 r-withr))
18605 (home-page "https://ggforce.data-imaginist.com")
18606 (synopsis "Accelerating ggplot2")
18607 (description
18608 "The aim of the ggplot2 package is to aid in visual data investigations.
18609 This focus has led to a lack of facilities for composing specialized plots.
18610 This package aims to be a collection of mainly new statistics and geometries
18611 that fills this gap.")
18612 (license license:expat)))
18613
18614 (define-public r-europepmc
18615 (package
18616 (name "r-europepmc")
18617 (version "0.4.1")
18618 (source
18619 (origin
18620 (method url-fetch)
18621 (uri (cran-uri "europepmc" version))
18622 (sha256
18623 (base32
18624 "16japbndid34shqg8n0bmjrxn84xmhrylvz832zclcllm6i93fn1"))))
18625 (build-system r-build-system)
18626 (propagated-inputs
18627 (list r-dplyr
18628 r-httr
18629 r-jsonlite
18630 r-plyr
18631 r-progress
18632 r-purrr
18633 r-rlang
18634 r-tibble
18635 r-tidyr
18636 r-urltools
18637 r-xml2))
18638 (native-inputs
18639 (list r-knitr))
18640 (home-page "https://github.com/ropensci/europepmc/")
18641 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
18642 (description
18643 "This package provides an R Client for the
18644 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
18645 Service}. It gives access to both metadata on life science literature and
18646 open access full texts. Europe PMC indexes all PubMed content and other
18647 literature sources including Agricola, a bibliographic database of citations
18648 to the agricultural literature, or Biological Patents. In addition to
18649 bibliographic metadata, the client allows users to fetch citations and
18650 reference lists. Links between life-science literature and other EBI
18651 databases, including ENA, PDB or ChEMBL are also accessible.")
18652 (license license:gpl3)))
18653
18654 (define-public r-ggraph
18655 (package
18656 (name "r-ggraph")
18657 (version "2.0.5")
18658 (source
18659 (origin
18660 (method url-fetch)
18661 (uri (cran-uri "ggraph" version))
18662 (sha256
18663 (base32
18664 "0m4n8iw2b9jk8hcy5blg5w59zsqcpsbv27wbw598dvljpafx8sp3"))))
18665 (build-system r-build-system)
18666 (propagated-inputs
18667 (list r-digest
18668 r-dplyr
18669 r-ggforce
18670 r-ggplot2
18671 r-ggrepel
18672 r-graphlayouts
18673 r-gtable
18674 r-igraph
18675 r-mass
18676 r-rcpp
18677 r-rlang
18678 r-scales
18679 r-tidygraph
18680 r-viridis
18681 r-withr))
18682 (native-inputs
18683 (list r-knitr))
18684 (home-page "https://cran.r-project.org/web/packages/ggraph/")
18685 (synopsis "Implementation of grammar of graphics for graphs and networks")
18686 (description
18687 "The grammar of graphics as implemented in ggplot2 is a poor fit for
18688 graph and network visualizations due to its reliance on tabular data input.
18689 The ggraph package is an extension of the ggplot2 API tailored to graph
18690 visualizations and provides the same flexible approach to building up plots
18691 layer by layer.")
18692 (license license:gpl3)))
18693
18694 (define-public r-gkmsvm
18695 (package
18696 (name "r-gkmsvm")
18697 (version "0.81.0")
18698 (source
18699 (origin
18700 (method url-fetch)
18701 (uri (cran-uri "gkmSVM" version))
18702 (sha256
18703 (base32
18704 "119g5rhc7ffyviz04r04aj5z1g6abnj3ddd01g7db505sdr6lapj"))))
18705 (properties `((upstream-name . "gkmSVM")))
18706 (build-system r-build-system)
18707 (propagated-inputs
18708 (list r-kernlab r-rcpp r-rocr r-seqinr))
18709 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
18710 (synopsis "Gapped-kmer support vector machine")
18711 (description
18712 "This R package provides tools for training gapped-kmer SVM classifiers
18713 for DNA and protein sequences. This package supports several sequence
18714 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
18715 (license license:gpl2+)))
18716
18717 (define-public r-varselrf
18718 (package
18719 (name "r-varselrf")
18720 (version "0.7-8")
18721 (source
18722 (origin
18723 (method url-fetch)
18724 (uri (cran-uri "varSelRF" version))
18725 (sha256
18726 (base32
18727 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
18728 (properties `((upstream-name . "varSelRF")))
18729 (build-system r-build-system)
18730 (propagated-inputs
18731 (list r-randomforest))
18732 (home-page "https://www.ligarto.org/rdiaz/software/software")
18733 (synopsis "Variable selection using random forests")
18734 (description
18735 "This package provides tools for the variable selection from random
18736 forests using both backwards variable elimination (for the selection of small
18737 sets of non-redundant variables) and selection based on the importance
18738 spectrum (somewhat similar to scree plots; for the selection of large,
18739 potentially highly-correlated variables). The main applications are in
18740 high-dimensional data (e.g., microarray data, and other genomics and
18741 proteomics applications).")
18742 (license license:gpl2+)))
18743
18744 (define-public r-pamr
18745 (package
18746 (name "r-pamr")
18747 (version "1.56.1")
18748 (source
18749 (origin
18750 (method url-fetch)
18751 (uri (cran-uri "pamr" version))
18752 (sha256
18753 (base32
18754 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
18755 (build-system r-build-system)
18756 (propagated-inputs
18757 (list r-cluster r-survival))
18758 (native-inputs (list gfortran))
18759 (home-page "https://cran.r-project.org/web/packages/pamr/")
18760 (synopsis "Prediction Analysis for Microarrays")
18761 (description
18762 "This package provides some functions for sample classification in
18763 microarrays.")
18764 (license license:gpl2)))
18765
18766 (define-public r-rda
18767 (package
18768 (name "r-rda")
18769 (version "1.0.2-2.1")
18770 (source
18771 (origin
18772 (method url-fetch)
18773 (uri (cran-uri "rda" version))
18774 (sha256
18775 (base32
18776 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
18777 (build-system r-build-system)
18778 (home-page "https://cran.r-project.org/web/packages/rda/")
18779 (synopsis "Shrunken centroids regularized discriminant analysis")
18780 (description
18781 "This package provides tools for shrunken centroids regularized
18782 discriminant analysis for the purpose of classifying high dimensional data.")
18783 (license license:gpl2+)))
18784
18785 (define-public r-ggvis
18786 (package
18787 (name "r-ggvis")
18788 (version "0.4.7")
18789 (source
18790 (origin
18791 (method url-fetch)
18792 (uri (cran-uri "ggvis" version))
18793 (sha256
18794 (base32
18795 "1qv512pd4x5vmx15y9nvqmabbbw14h75fmi1sjbcg5yl25z0cswy"))))
18796 (build-system r-build-system)
18797 (propagated-inputs
18798 (list r-assertthat
18799 r-dplyr
18800 r-htmltools
18801 r-jsonlite
18802 r-magrittr
18803 r-rlang
18804 r-shiny))
18805 (home-page "https://ggvis.rstudio.com/")
18806 (synopsis "Interactive grammar of graphics")
18807 (description
18808 "This package is a data visualization package for R providing an
18809 implementation of an interactive grammar of graphics, taking the best parts of
18810 ggplot2, combining them with the reactive framework of Shiny and drawing web
18811 graphics using Vega.")
18812 (license license:gpl2)))
18813
18814 (define-public r-gbm
18815 (package
18816 (name "r-gbm")
18817 (version "2.1.8")
18818 (source
18819 (origin
18820 (method url-fetch)
18821 (uri (cran-uri "gbm" version))
18822 (sha256
18823 (base32
18824 "1h9f4ww9yc3nsvghgr2q7jjrlz29ibabxjbax1sk5wmqh2wy6pbx"))))
18825 (build-system r-build-system)
18826 (propagated-inputs
18827 (list r-lattice r-survival))
18828 (native-inputs
18829 (list r-knitr))
18830 (home-page "https://github.com/gbm-developers/gbm")
18831 (synopsis "Generalized boosted regression models")
18832 (description
18833 "This package is an implementation of extensions to Freund and Schapire's
18834 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
18835 regression methods for least squares, absolute loss, t-distribution loss,
18836 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
18837 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
18838 and Learning to Rank measures (LambdaMart).")
18839 (license license:gpl2+)))
18840
18841 (define-public r-threejs
18842 (package
18843 (name "r-threejs")
18844 (version "0.3.3")
18845 (source
18846 (origin
18847 (method url-fetch)
18848 (uri (cran-uri "threejs" version))
18849 (sha256
18850 (base32
18851 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
18852 (build-system r-build-system)
18853 (arguments
18854 `(#:modules ((guix build utils)
18855 (guix build r-build-system)
18856 (srfi srfi-1)
18857 (ice-9 popen))
18858 #:phases
18859 (modify-phases %standard-phases
18860 (add-after 'unpack 'process-javascript
18861 (lambda* (#:key inputs #:allow-other-keys)
18862 (with-directory-excursion "inst"
18863 (call-with-values
18864 (lambda ()
18865 (unzip2
18866 `((,(assoc-ref inputs "js-jquery")
18867 "htmlwidgets/lib/jquery/jquery.min.js")
18868 (,(assoc-ref inputs "js-threejs-111")
18869 "htmlwidgets/lib/threejs-111/three.min.js"))))
18870 (lambda (sources targets)
18871 (for-each (lambda (source target)
18872 (format #t "Processing ~a --> ~a~%"
18873 source target)
18874 (delete-file target)
18875 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
18876 (call-with-output-file target
18877 (lambda (port)
18878 (dump-port minified port)))))
18879 sources targets))))
18880 #t)))))
18881 (propagated-inputs
18882 (list r-base64enc r-crosstalk r-htmlwidgets r-igraph))
18883 (native-inputs
18884 `(("uglifyjs" ,node-uglify-js)
18885 ("js-jquery"
18886 ,(origin
18887 (method url-fetch)
18888 (uri "https://code.jquery.com/jquery-1.12.4.js")
18889 (sha256
18890 (base32
18891 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
18892 ("js-threejs-111"
18893 ,(origin
18894 (method url-fetch)
18895 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
18896 (sha256
18897 (base32
18898 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
18899 (home-page "https://bwlewis.github.io/rthreejs")
18900 (synopsis "Interactive 3D scatter plots, networks and globes")
18901 (description
18902 "Create interactive 3D scatter plots, network plots, and globes in R
18903 using the three.js visualization library.")
18904 (license license:expat)))
18905
18906 (define-public r-mlbench
18907 (package
18908 (name "r-mlbench")
18909 (version "2.1-3")
18910 (source
18911 (origin
18912 (method url-fetch)
18913 (uri (cran-uri "mlbench" version))
18914 (sha256
18915 (base32
18916 "157iqsld0wj8g8cbs7nh6p2x6kasmkhs3078hsmqac946gk2pydi"))))
18917 (build-system r-build-system)
18918 (home-page "https://cran.r-project.org/web/packages/mlbench/")
18919 (synopsis "Machine learning benchmark problems")
18920 (description
18921 "This package provides a collection of artificial and real-world machine
18922 learning benchmark problems, including, e.g., several data sets from the UCI
18923 repository.")
18924 (license license:gpl2)))
18925
18926 (define-public r-mpm
18927 (package
18928 (name "r-mpm")
18929 (version "1.0-23")
18930 (source
18931 (origin
18932 (method url-fetch)
18933 (uri (cran-uri "mpm" version))
18934 (sha256
18935 (base32
18936 "1jpv2ddmw7aarqbbyfys1yb840arw33319wnny3v2hk84hldmayj"))))
18937 (build-system r-build-system)
18938 (propagated-inputs
18939 (list r-kernsmooth r-mass))
18940 (home-page "http://mpm.r-forge.r-project.org")
18941 (synopsis "Multivariate projection methods")
18942 (description
18943 "This is a package for exploratory graphical analysis of multivariate
18944 data, specifically gene expression data with different projection methods:
18945 principal component analysis, correspondence analysis, spectral map
18946 analysis.")
18947 (license license:gpl2+)))
18948
18949 (define-public r-png
18950 (package
18951 (name "r-png")
18952 (version "0.1-7")
18953 (source (origin
18954 (method url-fetch)
18955 (uri (cran-uri "png" version))
18956 (sha256
18957 (base32
18958 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
18959 (build-system r-build-system)
18960 (inputs
18961 (list libpng zlib))
18962 (home-page "https://www.rforge.net/png/")
18963 (synopsis "Read and write PNG images")
18964 (description
18965 "This package provides an easy and simple way to read, write and display
18966 bitmap images stored in the PNG format. It can read and write both files and
18967 in-memory raw vectors.")
18968 ;; Any of these GPL versions.
18969 (license (list license:gpl2 license:gpl3))))
18970
18971 (define-public r-ggcorrplot
18972 (package
18973 (name "r-ggcorrplot")
18974 (version "0.1.3")
18975 (source
18976 (origin
18977 (method url-fetch)
18978 (uri (cran-uri "ggcorrplot" version))
18979 (sha256
18980 (base32
18981 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
18982 (build-system r-build-system)
18983 (propagated-inputs
18984 (list r-ggplot2 r-reshape2))
18985 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
18986 (synopsis "Visualization of a correlation matrix using ggplot2")
18987 (description
18988 "The ggcorrplot package can be used to visualize easily a correlation
18989 matrix using ggplot2. It provides a solution for reordering the correlation
18990 matrix and displays the significance level on the plot. It also includes a
18991 function for computing a matrix of correlation p-values.")
18992 (license license:gpl2)))
18993
18994 (define-public r-ggfun
18995 (package
18996 (name "r-ggfun")
18997 (version "0.0.6")
18998 (source
18999 (origin
19000 (method url-fetch)
19001 (uri (cran-uri "ggfun" version))
19002 (sha256
19003 (base32
19004 "06si42b60hp8wprs5nbks93qlb9s269k9kw7akcirizwc399x62r"))))
19005 (properties `((upstream-name . "ggfun")))
19006 (build-system r-build-system)
19007 (propagated-inputs
19008 (list r-ggplot2 r-rlang))
19009 (native-inputs (list r-knitr))
19010 (home-page "https://cran.r-project.org/package=ggfun")
19011 (synopsis "Miscellaneous functions for ggplot2")
19012 (description
19013 "This package provides useful functions to edit ggplot object (e.g.,
19014 setting fonts for theme and layers, adding rounded rectangle as background for
19015 each of the legends).")
19016 (license license:artistic2.0)))
19017
19018 (define-public r-gridtext
19019 (package
19020 (name "r-gridtext")
19021 (version "0.1.4")
19022 (source
19023 (origin
19024 (method url-fetch)
19025 (uri (cran-uri "gridtext" version))
19026 (sha256
19027 (base32
19028 "131kw7nkfwksviwfifd2kk7lyvhxzzzv1nnj8rahkr3dik3akk61"))))
19029 (properties `((upstream-name . "gridtext")))
19030 (build-system r-build-system)
19031 (propagated-inputs
19032 (list r-jpeg
19033 r-markdown
19034 r-png
19035 r-rcpp
19036 r-rcurl
19037 r-rlang
19038 r-stringr
19039 r-xml2))
19040 (home-page "https://wilkelab.org/gridtext/")
19041 (synopsis "Improved text rendering support for Grid graphics")
19042 (description
19043 "This package provides support for rendering of formatted text using Grid
19044 graphics. Text can be formatted via a minimal subset of Markdown, HTML, and
19045 inline CSS directives, and it can be rendered both with and without word
19046 wrap.")
19047 (license license:expat)))
19048
19049 (define-public r-ggtext
19050 (package
19051 (name "r-ggtext")
19052 (version "0.1.1")
19053 (source
19054 (origin
19055 (method url-fetch)
19056 (uri (cran-uri "ggtext" version))
19057 (sha256
19058 (base32
19059 "0n19dlcys8v7myfyckr6dnq0kx79k3sbh8nwx1jsx8pgzfbi8a2b"))))
19060 (properties `((upstream-name . "ggtext")))
19061 (build-system r-build-system)
19062 (propagated-inputs
19063 (list r-ggplot2 r-gridtext r-rlang r-scales))
19064 (native-inputs (list r-knitr))
19065 (home-page "https://wilkelab.org/ggtext/")
19066 (synopsis "Improved text rendering support for ggplot2")
19067 (description
19068 "This package provides a ggplot2 extension that enables the rendering of
19069 complex formatted plot labels (titles, subtitles, facet labels, axis labels,
19070 etc.). Text boxes with automatic word wrap are also supported.")
19071 (license license:gpl2)))
19072
19073 ;; This package includes minified JavaScript files. When upgrading please
19074 ;; check that there are no new minified JavaScript files.
19075 (define-public r-flexdashboard
19076 (package
19077 (name "r-flexdashboard")
19078 (version "0.5.2")
19079 (source
19080 (origin
19081 (method url-fetch)
19082 (uri (cran-uri "flexdashboard" version))
19083 (sha256
19084 (base32
19085 "1bh759llp15fxrx2rwvxd8p3w84vjmkid32ism7zg49a127fjib4"))
19086 (modules '((guix build utils)))
19087 (snippet
19088 '(begin
19089 ;; Delete bundled minified JavaScript files
19090 (delete-file "inst/htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
19091 (delete-file "inst/www/sly/sly.min.js")
19092 (delete-file "inst/www/stickytableheaders/jquery.stickytableheaders.min.js")
19093 (delete-file "inst/www/prism/prism.js")
19094 #t))))
19095 (build-system r-build-system)
19096 (arguments
19097 `(#:modules ((guix build utils)
19098 (guix build r-build-system)
19099 (srfi srfi-1)
19100 (srfi srfi-26)
19101 (ice-9 popen)
19102 (ice-9 textual-ports))
19103 #:phases
19104 (modify-phases %standard-phases
19105 (add-after 'unpack 'process-javascript
19106 (lambda* (#:key inputs #:allow-other-keys)
19107 (with-directory-excursion "inst"
19108 ;; Concatenate all components of prism.js
19109 (let ((contents (string-join
19110 (map (lambda (name)
19111 (call-with-input-file
19112 (assoc-ref inputs name)
19113 get-string-all))
19114 (list "js-prism"
19115 "js-prism-r"
19116 "js-prism-line-numbers"))
19117 "\n")))
19118 (call-with-output-file "prism-src.js"
19119 (cut display contents <>)))
19120 (call-with-values
19121 (lambda ()
19122 (unzip2
19123 `(("www/stickytableheaders/jquery.stickytableheaders.js"
19124 "www/stickytableheaders/jquery.stickytableheaders.min.js")
19125 ("www/sly/sly.js"
19126 "www/sly/sly.min.js")
19127 ("prism-src.js"
19128 "www/prism/prism.js")
19129 (,(assoc-ref inputs "js-raphael")
19130 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
19131 (,(assoc-ref inputs "js-featherlight")
19132 "www/featherlight/featherlight.min.js"))))
19133 (lambda (sources targets)
19134 (for-each (lambda (source target)
19135 (format #t "Processing ~a --> ~a~%"
19136 source target)
19137 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
19138 (call-with-output-file target
19139 (lambda (port)
19140 (dump-port minified port)))))
19141 sources targets))))
19142 #t)))))
19143 (propagated-inputs
19144 (list r-htmltools
19145 r-htmlwidgets
19146 r-jsonlite
19147 r-knitr
19148 r-rmarkdown
19149 r-shiny))
19150 (native-inputs
19151 `(("uglifyjs" ,node-uglify-js)
19152 ("js-raphael"
19153 ,(origin
19154 (method url-fetch)
19155 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
19156 (sha256
19157 (base32
19158 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
19159 ("js-prism"
19160 ,(origin
19161 (method url-fetch)
19162 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
19163 (sha256
19164 (base32
19165 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
19166 ("js-prism-r"
19167 ,(origin
19168 (method url-fetch)
19169 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
19170 (sha256
19171 (base32
19172 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
19173 ("js-prism-line-numbers"
19174 ,(origin
19175 (method url-fetch)
19176 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
19177 (sha256
19178 (base32
19179 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
19180 ("js-featherlight"
19181 ,(origin
19182 (method url-fetch)
19183 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
19184 (sha256
19185 (base32
19186 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
19187 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
19188 (synopsis "R Markdown format for flexible dashboards")
19189 (description
19190 "This package provides an R Markdown format for converting an R Markdown
19191 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
19192 of its components to the containing web page.")
19193 (license license:expat)))
19194
19195 (define-public r-preseqr
19196 (package
19197 (name "r-preseqr")
19198 (version "4.0.0")
19199 (source
19200 (origin
19201 (method url-fetch)
19202 (uri (cran-uri "preseqR" version))
19203 (sha256
19204 (base32
19205 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
19206 (properties `((upstream-name . "preseqR")))
19207 (build-system r-build-system)
19208 (propagated-inputs
19209 (list r-polynom))
19210 (home-page "https://cran.r-project.org/web/packages/preseqR/")
19211 (synopsis "Predicting species accumulation curves")
19212 (description
19213 "This package can be used to predict the r-species accumulation
19214 curve (r-SAC), which is the number of species represented at least r times as
19215 a function of the sampling effort. When r = 1, the curve is known as the
19216 species accumulation curve, or the library complexity curve in high-throughput
19217 genomic sequencing. The package includes both parametric and nonparametric
19218 methods, as described by Deng C, et al. (2018).")
19219 (license license:gpl3)))
19220
19221 (define-public r-mapplots
19222 (package
19223 (name "r-mapplots")
19224 (version "1.5.1")
19225 (source
19226 (origin
19227 (method url-fetch)
19228 (uri (cran-uri "mapplots" version))
19229 (sha256
19230 (base32
19231 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
19232 (build-system r-build-system)
19233 (home-page "https://cran.r-project.org/web/packages/mapplots/")
19234 (synopsis "Data visualization on maps")
19235 (description
19236 "This package helps you create simple maps; add sub-plots like pie plots
19237 to a map or any other plot; format, plot and export gridded data. The package
19238 was developed for displaying fisheries data but most functions can be used for
19239 more generic data visualisation.")
19240 (license license:gpl2+)))
19241
19242 (define-public r-pmcmr
19243 (package
19244 (name "r-pmcmr")
19245 (version "4.4")
19246 (source
19247 (origin
19248 (method url-fetch)
19249 (uri (cran-uri "PMCMR" version))
19250 (sha256
19251 (base32
19252 "05n13pp5yff6pzk4ry07crddfaj3jlglrd1vkcnacyd8jpaxkd77"))))
19253 (properties `((upstream-name . "PMCMR")))
19254 (build-system r-build-system)
19255 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
19256 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
19257 (description
19258 "This is a deprecated package for calculating pairwise multiple
19259 comparisons of mean rank sums. This package is superseded by the novel
19260 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
19261 compatibility of dependent packages for some time.")
19262 (license license:gpl3+)))
19263
19264 (define-public r-downloader
19265 (package
19266 (name "r-downloader")
19267 (version "0.4")
19268 (source
19269 (origin
19270 (method url-fetch)
19271 (uri (cran-uri "downloader" version))
19272 (sha256
19273 (base32
19274 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
19275 (build-system r-build-system)
19276 (propagated-inputs
19277 (list r-digest))
19278 (home-page "https://github.com/wch/downloader")
19279 (synopsis "Download files over HTTP and HTTPS")
19280 (description
19281 "This package provides a wrapper for the @code{download.file} function,
19282 making it possible to download files over HTTPS across platforms. The
19283 @code{RCurl} package provides this functionality (and much more) but has
19284 external dependencies. This package has is implemented purely in R.")
19285 (license license:gpl2)))
19286
19287 (define-public r-aplot
19288 (package
19289 (name "r-aplot")
19290 (version "0.1.4")
19291 (source
19292 (origin
19293 (method url-fetch)
19294 (uri (cran-uri "aplot" version))
19295 (sha256
19296 (base32
19297 "1b4jjj05a602dgn6yr1bsmbzlzkj6wf6af3k3w63g3mkqv0xzsfd"))))
19298 (properties `((upstream-name . "aplot")))
19299 (build-system r-build-system)
19300 (propagated-inputs
19301 (list r-ggfun
19302 r-ggplot2
19303 r-ggplotify
19304 r-magrittr
19305 r-patchwork))
19306 (home-page "https://github.com/YuLab-SMU/aplot")
19307 (synopsis "Decorate a ggplot with associated information")
19308 (description
19309 "Users may want to align plots with associated information that requires
19310 axes to be exactly matched in subplots, e.g. hierarchical clustering with a
19311 heatmap. This package provides utilities to align associated subplots to a
19312 main plot at different sides (left, right, top and bottom) with axes exactly
19313 matched.")
19314 (license license:artistic2.0)))
19315
19316 (define-public r-ggnewscale
19317 (package
19318 (name "r-ggnewscale")
19319 (version "0.4.7")
19320 (source
19321 (origin
19322 (method url-fetch)
19323 (uri (cran-uri "ggnewscale" version))
19324 (sha256
19325 (base32
19326 "108a7y6sqqvzyfk247lbmnacfpwdl405rf1b3fa62cgx8ycsq4kb"))))
19327 (properties `((upstream-name . "ggnewscale")))
19328 (build-system r-build-system)
19329 (propagated-inputs
19330 (list r-ggplot2))
19331 (home-page "https://cran.r-project.org/package=ggnewscale")
19332 (synopsis "Multiple fill and color scales in ggplot2")
19333 (description
19334 "This package lets you use multiple fill and color scales in ggplot2.")
19335 (license license:gpl3)))
19336
19337 (define-public r-ggpointdensity
19338 (package
19339 (name "r-ggpointdensity")
19340 (version "0.1.0")
19341 (source
19342 (origin
19343 (method url-fetch)
19344 (uri (cran-uri "ggpointdensity" version))
19345 (sha256
19346 (base32
19347 "0c9a14j3b0hvamqylhzldw2hjdxmfbllwahjkf3gg2rw337ld9iy"))))
19348 (properties
19349 `((upstream-name . "ggpointdensity")))
19350 (build-system r-build-system)
19351 (propagated-inputs
19352 (list r-ggplot2))
19353 (home-page "https://github.com/LKremer/ggpointdensity")
19354 (synopsis "Cross between a 2D density plot and a scatter plot")
19355 (description
19356 "This package provides a cross between a 2D density plot and a scatter
19357 plot, implemented as a ggplot2 @code{geom}. Points in the scatter plot are
19358 colored by the number of neighboring points. This is useful to visualize the
19359 2D-distribution of points in case of overplotting.")
19360 (license license:gpl3)))
19361
19362 (define-public r-arrow
19363 (package
19364 (name "r-arrow")
19365 (version "8.0.0")
19366 (source
19367 (origin
19368 (method url-fetch)
19369 (uri (cran-uri "arrow" version))
19370 (sha256
19371 (base32
19372 "1b85vc5ld7nibqgsdkl5kbzc0rm5jh5lqfdrssvrrcxpd26a16kc"))))
19373 (properties `((upstream-name . "arrow")))
19374 (build-system r-build-system)
19375 (inputs
19376 (list `(,apache-arrow "lib") zlib))
19377 (propagated-inputs
19378 (list r-assertthat
19379 r-bit64
19380 r-cpp11
19381 r-purrr
19382 r-r6
19383 r-rlang
19384 r-tidyselect
19385 r-vctrs))
19386 (native-inputs
19387 (list pkg-config r-knitr))
19388 (home-page "https://github.com/apache/arrow/")
19389 (synopsis "R integration to Apache Arrow")
19390 (description
19391 "Apache Arrow is a cross-language development platform for in-memory
19392 data. It specifies a standardized language-independent columnar memory format
19393 for flat and hierarchical data, organized for efficient analytic operations on
19394 modern hardware. This package provides an R interface to the Arrow C++
19395 library.")
19396 (license license:asl2.0)))
19397
19398 (define-public r-rex
19399 (package
19400 (name "r-rex")
19401 (version "1.2.1")
19402 (source
19403 (origin
19404 (method url-fetch)
19405 (uri (cran-uri "rex" version))
19406 (sha256
19407 (base32
19408 "1mmzlc3j7xa0rbjxa369f4sr0iw3gq58g8fmjjxbsjvfq14ychmg"))))
19409 (build-system r-build-system)
19410 (propagated-inputs
19411 (list r-lazyeval))
19412 (native-inputs
19413 (list r-knitr))
19414 (home-page "https://github.com/kevinushey/rex")
19415 (synopsis "Friendly regular expressions")
19416 (description
19417 "This package provides a friendly interface for the construction of
19418 regular expressions. Regular expressions are a very powerful feature, however
19419 they are often difficult to interpret. Rex allows you to build complex
19420 regular expressions from human readable expressions")
19421 (license license:expat)))
19422
19423 (define-public r-mlapi
19424 (package
19425 (name "r-mlapi")
19426 (version "0.1.1")
19427 (source
19428 (origin
19429 (method url-fetch)
19430 (uri (cran-uri "mlapi" version))
19431 (sha256
19432 (base32
19433 "1qyiii6x9b89i4pd4yi2zd23aabpmnpj18gqi5va0zy0l8r7kknr"))))
19434 (properties `((upstream-name . "mlapi")))
19435 (build-system r-build-system)
19436 (propagated-inputs
19437 (list r-matrix r-r6))
19438 (native-inputs
19439 (list r-knitr))
19440 (home-page "https://cran.r-project.org/package=mlapi")
19441 (synopsis "Abstract classes for building scikit-learn like API")
19442 (description
19443 "This package provides R6 abstract classes for building machine learning
19444 models with a scikit-learn like API. Scikit-learn is a popular module for the
19445 Python programming language whose design became a de facto standard in
19446 industry for machine learning tasks.")
19447 (license license:expat)))
19448
19449 (define-public r-float
19450 (package
19451 (name "r-float")
19452 (version "0.3-0")
19453 (source
19454 (origin
19455 (method url-fetch)
19456 (uri (cran-uri "float" version))
19457 (sha256
19458 (base32
19459 "0m7bf3548vlgkk1c78jyrgj72ngwg0gsccap2iqinm3l3qrm4zbs"))))
19460 (properties `((upstream-name . "float")))
19461 (build-system r-build-system)
19462 (native-inputs
19463 (list gfortran))
19464 (home-page "https://github.com/wrathematics/float")
19465 (synopsis "32-bit floats")
19466 (description
19467 "R comes with a suite of utilities for linear algebra with
19468 \"numeric\" (double precision) vectors/matrices. However, sometimes single
19469 precision (or less!) is more than enough for a particular task. This package
19470 extends R's linear algebra facilities to include 32-bit float (single
19471 precision) data. Float vectors/matrices have half the precision of their
19472 \"numeric\"-type counterparts but are generally faster to numerically operate
19473 on, for a performance vs accuracy trade-off.")
19474 (license license:bsd-2)))
19475
19476 (define-public r-rsparse
19477 (package
19478 (name "r-rsparse")
19479 (version "0.5.0")
19480 (source
19481 (origin
19482 (method url-fetch)
19483 (uri (cran-uri "rsparse" version))
19484 (sha256
19485 (base32
19486 "0d05h47j29zipyxbkv9cwzv2dzj894z6hh9dqfhwswwjbv6ciwpq"))))
19487 (properties `((upstream-name . "rsparse")))
19488 (build-system r-build-system)
19489 (propagated-inputs
19490 (list r-data-table
19491 r-float
19492 r-lgr
19493 r-matrix
19494 r-matrixextra
19495 r-rcpp
19496 r-rcpparmadillo
19497 r-rhpcblasctl))
19498 (home-page "https://github.com/rexyai/rsparse")
19499 (synopsis "Statistical learning on sparse matrices")
19500 (description
19501 "This package implements many algorithms for statistical learning on
19502 sparse matrices: matrix factorizations, matrix completion, elastic net
19503 regressions, factorization machines. The rsparse package also enhances the
19504 Matrix package by providing methods for multithreaded <sparse, dense> matrix
19505 products and native slicing of the sparse matrices in @dfn{Compressed Sparse
19506 Row} (CSR) format.")
19507 (license license:gpl2+)))
19508
19509 (define-public r-text2vec
19510 (package
19511 (name "r-text2vec")
19512 (version "0.6.1")
19513 (source
19514 (origin
19515 (method url-fetch)
19516 (uri (cran-uri "text2vec" version))
19517 (sha256
19518 (base32
19519 "0bisr31051hnshw26rp9r4bm8ksr977dl9k1d3fb1x79pq5aa2pi"))))
19520 (properties `((upstream-name . "text2vec")))
19521 (build-system r-build-system)
19522 (propagated-inputs
19523 (list r-data-table
19524 r-digest
19525 r-lgr
19526 r-matrix
19527 r-mlapi
19528 r-r6
19529 r-rcpp
19530 r-rsparse
19531 r-stringi))
19532 (native-inputs
19533 (list r-knitr))
19534 (home-page "http://text2vec.org")
19535 (synopsis "Text mining framework for R")
19536 (description
19537 "This package provides fast and memory-friendly tools for text
19538 vectorization, topic modeling (LDA, LSA), word embeddings (GloVe),
19539 similarities. It provides a source-agnostic streaming API, which allows
19540 researchers to perform analysis of collections of documents which are larger
19541 than available RAM. All core functions are parallelized to benefit from
19542 multicore machines.")
19543 (license license:gpl2+)))
19544
19545 (define-public r-mcmcpack
19546 (package
19547 (name "r-mcmcpack")
19548 (version "1.6-3")
19549 (source
19550 (origin
19551 (method url-fetch)
19552 (uri (cran-uri "MCMCpack" version))
19553 (sha256
19554 (base32
19555 "1cwdjn43b9hxpxf9mnas583myhk6r2258mh57f0zsc8bd4hbl56b"))))
19556 (properties `((upstream-name . "MCMCpack")))
19557 (build-system r-build-system)
19558 (propagated-inputs
19559 (list r-coda r-lattice r-mass r-mcmc r-quantreg))
19560 (home-page "https://cran.r-project.org/package=MCMCpack")
19561 (synopsis "Markov Chain Monte Carlo (MCMC) package")
19562 (description
19563 "This package contains functions to perform Bayesian inference using
19564 posterior simulation for a number of statistical models. Most simulation is
19565 done in compiled C++ written in the Scythe Statistical Library. All models
19566 return @code{coda} @code{mcmc} objects that can then be summarized using the
19567 @code{coda} package. Some useful utility functions such as density functions,
19568 pseudo-random number generators for statistical distributions, a general
19569 purpose Metropolis sampling algorithm, and tools for visualization are
19570 provided.")
19571 (license license:gpl3)))
19572
19573 (define-public r-xmlparsedata
19574 (package
19575 (name "r-xmlparsedata")
19576 (version "1.0.5")
19577 (source
19578 (origin
19579 (method url-fetch)
19580 (uri (cran-uri "xmlparsedata" version))
19581 (sha256
19582 (base32
19583 "1c6bnz3ng1qw7sfip8wq3a4dn36a4d6rbja0sadn0a4pbsmk8q3n"))))
19584 (properties `((upstream-name . "xmlparsedata")))
19585 (build-system r-build-system)
19586 (home-page "https://github.com/r-lib/xmlparsedata#readme")
19587 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
19588 (description
19589 "This package provides tools to convert the output of
19590 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
19591 @code{XPath}, and is easier to manipulate in general.")
19592 (license license:expat)))
19593
19594 (define-public r-cyclocomp
19595 (package
19596 (name "r-cyclocomp")
19597 (version "1.1.0")
19598 (source
19599 (origin
19600 (method url-fetch)
19601 (uri (cran-uri "cyclocomp" version))
19602 (sha256
19603 (base32
19604 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
19605 (properties `((upstream-name . "cyclocomp")))
19606 (build-system r-build-system)
19607 (propagated-inputs
19608 (list r-callr r-crayon r-desc r-remotes r-withr))
19609 (home-page "https://github.com/MangoTheCat/cyclocomp")
19610 (synopsis "Cyclomatic complexity of R code")
19611 (description
19612 "Cyclomatic complexity is a software metric, used to indicate the
19613 complexity of a program. It is a quantitative measure of the number of
19614 linearly independent paths through a program's source code. This package
19615 provides tools to compute this metric.")
19616 (license license:expat)))
19617
19618 (define-public r-lintr
19619 (package
19620 (name "r-lintr")
19621 (version "2.0.1")
19622 (source
19623 (origin
19624 (method url-fetch)
19625 (uri (cran-uri "lintr" version))
19626 (sha256
19627 (base32
19628 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
19629 (properties `((upstream-name . "lintr")))
19630 (build-system r-build-system)
19631 (propagated-inputs
19632 (list r-codetools
19633 r-crayon
19634 r-cyclocomp
19635 r-digest
19636 r-httr
19637 r-jsonlite
19638 r-knitr
19639 r-rex
19640 r-rstudioapi
19641 r-testthat
19642 r-xml2
19643 r-xmlparsedata))
19644 (home-page "https://github.com/jimhester/lintr")
19645 (synopsis "Linter for R code")
19646 (description "This package checks adherence to a given style, syntax
19647 errors and possible semantic issues. It supports on the fly checking of R
19648 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
19649 (license license:expat)))
19650
19651 (define-public r-sctransform
19652 (package
19653 (name "r-sctransform")
19654 (version "0.3.3")
19655 (source
19656 (origin
19657 (method url-fetch)
19658 (uri (cran-uri "sctransform" version))
19659 (sha256
19660 (base32
19661 "0aqbcarsvvzkh5h4i65f08y4b8dfcs3zi62hmvfy24gj81f15bw3"))))
19662 (build-system r-build-system)
19663 (propagated-inputs
19664 (list r-dplyr
19665 r-future
19666 r-future-apply
19667 r-ggplot2
19668 r-gridextra
19669 r-magrittr
19670 r-mass
19671 r-matrix
19672 r-matrixstats
19673 r-rcpp
19674 r-rcpparmadillo
19675 r-reshape2
19676 r-rlang))
19677 (home-page "https://github.com/ChristophH/sctransform")
19678 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
19679 (description
19680 "This package provides a normalization method for single-cell UMI count
19681 data using a variance stabilizing transformation. The transformation is based
19682 on a negative binomial regression model with regularized parameters. As part
19683 of the same regression framework, this package also provides functions for
19684 batch correction, and data correction.")
19685 (license license:gpl3)))
19686
19687 (define-public r-styler
19688 (package
19689 (name "r-styler")
19690 (version "1.7.0")
19691 (source
19692 (origin
19693 (method url-fetch)
19694 (uri (cran-uri "styler" version))
19695 (sha256
19696 (base32
19697 "1ki260ga0jrmayhdlx2sl788yp5kkmi4wyl32nmvvyb55sng6j9y"))))
19698 (build-system r-build-system)
19699 ;; This is needed by R.cache.
19700 (arguments
19701 `(#:phases
19702 (modify-phases %standard-phases
19703 (add-after 'unpack 'set-HOME
19704 (lambda _ (setenv "HOME" "/tmp"))))))
19705 (propagated-inputs
19706 (list r-cli
19707 r-magrittr
19708 r-purrr
19709 r-r-cache
19710 r-rematch2
19711 r-rlang
19712 r-rprojroot
19713 r-tibble
19714 r-withr))
19715 (native-inputs
19716 (list r-knitr))
19717 (home-page "https://github.com/r-lib/styler")
19718 (synopsis "Non-invasive pretty printing of R code")
19719 (description
19720 "This is a package for pretty-printing R code without changing the user's
19721 formatting intent.")
19722 (license license:gpl3)))
19723
19724 (define-public r-scrime
19725 (package
19726 (name "r-scrime")
19727 (version "1.3.5")
19728 (source
19729 (origin
19730 (method url-fetch)
19731 (uri (cran-uri "scrime" version))
19732 (sha256
19733 (base32
19734 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
19735 (build-system r-build-system)
19736 (home-page "https://cran.r-project.org/web/packages/scrime/")
19737 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
19738 (description
19739 "This package provides tools for the analysis of high-dimensional data
19740 developed/implemented at the group \"Statistical Complexity Reduction In
19741 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
19742 the functions can also be applied to other types of categorical data.")
19743 (license license:gpl2)))
19744
19745 (define-public r-pbmcapply
19746 (package
19747 (name "r-pbmcapply")
19748 (version "1.5.1")
19749 (source
19750 (origin
19751 (method url-fetch)
19752 (uri (cran-uri "pbmcapply" version))
19753 (sha256
19754 (base32
19755 "1p8jf7c4k45482w72sr0jw4jkz787krrxai3sl6jz5l4lda2iz3z"))))
19756 (build-system r-build-system)
19757 (home-page "https://github.com/kvnkuang/pbmcapply")
19758 (synopsis "Track the progress of apply procedures with a progress bar")
19759 (description
19760 "This light-weight package helps you track and visualize the progress of
19761 parallel versions of vectorized R functions of the @code{mc*apply} family.")
19762 (license license:expat)))
19763
19764 (define-public r-blme
19765 (package
19766 (name "r-blme")
19767 (version "1.0-5")
19768 (source
19769 (origin
19770 (method url-fetch)
19771 (uri (cran-uri "blme" version))
19772 (sha256
19773 (base32
19774 "0413j7gwr5yj14jamkizj55q7xii1a0kgazzj0ilqn2ascclz6k7"))))
19775 (build-system r-build-system)
19776 (propagated-inputs (list r-lme4))
19777 (home-page "https://github.com/vdorie/blme")
19778 (synopsis "Bayesian linear mixed-effects models")
19779 (description
19780 "This package provides tools for maximum a posteriori estimation for
19781 linear and generalized linear mixed-effects models in a Bayesian setting. It
19782 extends the lme4 package.")
19783 (license license:gpl2+)))
19784
19785 (define-public r-batchtools
19786 (package
19787 (name "r-batchtools")
19788 (version "0.9.15")
19789 (source
19790 (origin
19791 (method url-fetch)
19792 (uri (cran-uri "batchtools" version))
19793 (sha256
19794 (base32
19795 "0d2xy77hkzhcnyz8zxcv98i80fx6ripjw4rvyx4ww1d0vjjgqf52"))))
19796 (build-system r-build-system)
19797 (propagated-inputs
19798 (list r-backports
19799 r-base64url
19800 r-brew
19801 r-checkmate
19802 r-data-table
19803 r-digest
19804 r-fs
19805 r-progress
19806 r-r6
19807 r-rappdirs
19808 r-stringi
19809 r-withr))
19810 (native-inputs
19811 (list r-knitr))
19812 (home-page "https://github.com/mllg/batchtools")
19813 (synopsis "Tools for computation on batch systems")
19814 (description
19815 "As a successor of the packages BatchJobs and BatchExperiments, this
19816 package provides a parallel implementation of the Map function for high
19817 performance computing systems managed by various schedulers. A multicore and
19818 socket mode allow the parallelization on a local machines, and multiple
19819 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
19820 the package provides an abstraction mechanism to define large-scale computer
19821 experiments in a well-organized and reproducible way.")
19822 (license license:lgpl3)))
19823
19824 (define-public r-clue
19825 (package
19826 (name "r-clue")
19827 (version "0.3-60")
19828 (source
19829 (origin
19830 (method url-fetch)
19831 (uri (cran-uri "clue" version))
19832 (sha256
19833 (base32
19834 "0apgpdnn74mqg2bnr8yjyxgyvdl411h0r2b1r2xd67k21pyxs8bd"))))
19835 (build-system r-build-system)
19836 (propagated-inputs (list r-cluster))
19837 (home-page "https://cran.r-project.org/web/packages/clue/")
19838 (synopsis "Tools for analyzing cluster ensembles")
19839 (description "Cluster ensembles are collections of individual solutions to
19840 a given clustering problem which are useful or necessary to consider in a wide
19841 range of applications. This R package provides an extensible computational
19842 environment for creating and analyzing cluster ensembles, with basic data
19843 structures for representing partitions and hierarchies, and facilities for
19844 computing on them, including methods for measuring proximity and obtaining
19845 consensus and secondary clusterings.")
19846 (license license:gpl2)))
19847
19848 (define-public r-sitmo
19849 (package
19850 (name "r-sitmo")
19851 (version "2.0.2")
19852 (source
19853 (origin
19854 (method url-fetch)
19855 (uri (cran-uri "sitmo" version))
19856 (sha256
19857 (base32
19858 "1hm89zi38ldgbskyx1cn7gm87yqy7zrxli8q05a36y1ndvazi3j4"))))
19859 (build-system r-build-system)
19860 (propagated-inputs (list r-rcpp))
19861 (native-inputs
19862 (list r-knitr))
19863 (home-page "https://github.com/coatless/sitmo/")
19864 (synopsis "Parallel pseudo random number generator header files")
19865 (description
19866 "This package provides two high quality and fast PPRNGs that may be used
19867 in an OpenMP parallel environment. In addition, there is a generator for one
19868 dimensional low-discrepancy sequence.")
19869 (license license:expat)))
19870
19871 (define-public r-dqrng
19872 (package
19873 (name "r-dqrng")
19874 (version "0.3.0")
19875 (source
19876 (origin
19877 (method url-fetch)
19878 (uri (cran-uri "dqrng" version))
19879 (sha256
19880 (base32
19881 "1fwsldqcri2lccna4icbmmlqic3w4xyjm7rn0xmikrsw4kzapvjb"))))
19882 (build-system r-build-system)
19883 (propagated-inputs
19884 (list r-bh r-rcpp r-sitmo))
19885 (native-inputs
19886 (list r-knitr))
19887 (home-page "https://www.daqana.org/dqrng")
19888 (synopsis "Fast pseudo random number generators")
19889 (description
19890 "Several fast random number generators are provided as C++ header-only
19891 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
19892 Additionally, fast functions for generating random numbers according to a
19893 uniform, normal and exponential distribution are included. The latter two use
19894 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
19895 functions are exported to R and as a C++ interface and are enabled for use
19896 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
19897 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
19898 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
19899 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
19900 ;; whole is distributed under the terms of the AGPL 3.
19901 (license license:agpl3)))
19902
19903 (define-public r-ingredients
19904 (package
19905 (name "r-ingredients")
19906 (version "2.2.0")
19907 (source
19908 (origin
19909 (method url-fetch)
19910 (uri (cran-uri "ingredients" version))
19911 (sha256
19912 (base32
19913 "11bv4l4fn9kr7y2nfzrwnaya8fi9w3nwcm9vzlqb7dva83rkqbsc"))))
19914 (properties `((upstream-name . "ingredients")))
19915 (build-system r-build-system)
19916 (propagated-inputs
19917 (list r-ggplot2 r-gridextra r-scales))
19918 (native-inputs (list r-knitr))
19919 (home-page "https://ModelOriented.github.io/ingredients/")
19920 (synopsis "Effects and importances of model ingredients")
19921 (description
19922 "This is a collection of tools for assessment of feature importance and
19923 feature effects. Key functions are:
19924
19925 @itemize
19926 @item @code{feature_importance()} for assessment of global level feature
19927 importance,
19928 @item @code{ceteris_paribus()} for calculation of the what-if plots,
19929 @item @code{partial_dependence()} for partial dependence plots,
19930 @item @code{conditional_dependence()} for conditional dependence plots,
19931 @item @code{accumulated_dependence()} for accumulated local effects plots,
19932 @item @code{aggregate_profiles()} and @code{cluster_profiles()} for
19933 aggregation of ceteris paribus profiles,
19934 @item generic @code{print()} and @code{plot()} for better usability of
19935 selected explainers,
19936 @item generic @code{plotD3()} for interactive, D3 based explanations, and
19937 @item generic @code{describe()} for explanations in natural language.
19938 @end itemize\n")
19939 (license license:gpl3)))
19940
19941 (define-public r-ibreakdown
19942 (package
19943 (name "r-ibreakdown")
19944 (version "2.0.1")
19945 (source
19946 (origin
19947 (method url-fetch)
19948 (uri (cran-uri "iBreakDown" version))
19949 (sha256
19950 (base32
19951 "00jzrndb3ahsv6ihp2pvs732n9cc944m83vdinrl9v1pxd82prkh"))))
19952 (properties `((upstream-name . "iBreakDown")))
19953 (build-system r-build-system)
19954 (propagated-inputs (list r-ggplot2))
19955 (native-inputs (list r-knitr))
19956 (home-page "https://ModelOriented.github.io/iBreakDown/")
19957 (synopsis "Model agnostic instance level variable attributions")
19958 (description
19959 "This package provides a model agnostic tool for decomposition of
19960 predictions from black boxes. It supports additive attributions and
19961 attributions with interactions. The Break Down Table shows contributions of
19962 every variable to a final prediction. The Break Down Plot presents variable
19963 contributions in a concise graphical way. This package works for
19964 classification and regression models.")
19965 (license license:gpl3)))
19966
19967 (define-public r-dae
19968 (package
19969 (name "r-dae")
19970 (version "3.2-13")
19971 (source
19972 (origin
19973 (method url-fetch)
19974 (uri (cran-uri "dae" version))
19975 (sha256
19976 (base32
19977 "0mq94ah21p1glvsbvdmi2p7nlgz1bvq7w3rz2z3mdqq18kz6nkjw"))))
19978 (build-system r-build-system)
19979 (propagated-inputs
19980 (list r-ggplot2 r-plyr))
19981 (native-inputs
19982 (list r-r-rsp)) ; vignette builder
19983 (home-page "http://chris.brien.name")
19984 (synopsis "Functions useful in the design and ANOVA of experiments")
19985 (description
19986 "This package provides functions useful in the design and ANOVA of
19987 experiments. The content falls into the following groupings:
19988
19989 @enumerate
19990 @item data,
19991 @item factor manipulation functions,
19992 @item design functions,
19993 @item ANOVA functions,
19994 @item matrix functions,
19995 @item projector and canonical efficiency functions, and
19996 @item miscellaneous functions.
19997 @end enumerate
19998
19999 There is a vignette called @code{DesignNotes} describing how to use the design
20000 functions for randomizing and assessing designs. The ANOVA functions
20001 facilitate the extraction of information when the @code{Error} function has
20002 been used in the call to @code{aov}.")
20003 (license license:gpl2)))
20004
20005 (define-public r-dalex
20006 (package
20007 (name "r-dalex")
20008 (version "2.4.1")
20009 (source
20010 (origin
20011 (method url-fetch)
20012 (uri (cran-uri "DALEX" version))
20013 (sha256
20014 (base32
20015 "0mcdd2bd8zlsz7x174g87dp8vy4wc06w58dyr27f6lgv9shzya8j"))))
20016 (properties `((upstream-name . "DALEX")))
20017 (build-system r-build-system)
20018 (propagated-inputs
20019 (list r-ggplot2 r-ibreakdown r-ingredients))
20020 (home-page "https://pbiecek.github.io/DALEX/")
20021 (synopsis "Descriptive machine learning explanations")
20022 (description
20023 "Machine Learning models are widely used and have various applications in
20024 classification or regression. Models created with boosting, bagging, stacking
20025 or similar techniques are often used due to their high performance, but such
20026 black-box models usually lack interpretability. The DALEX package contains
20027 various explainers that help to understand the link between input variables
20028 and model output.")
20029 ;; Any version of the GPL
20030 (license license:gpl3+)))
20031
20032 (define-public r-enrichr
20033 (package
20034 (name "r-enrichr")
20035 (version "3.0")
20036 (source
20037 (origin
20038 (method url-fetch)
20039 (uri (cran-uri "enrichR" version))
20040 (sha256
20041 (base32
20042 "0i3kfq4fkmx47n61zj5f87iv8ci6gbgy90a7s8dy9zbndzvbgya3"))))
20043 (properties `((upstream-name . "enrichR")))
20044 (build-system r-build-system)
20045 (propagated-inputs
20046 (list r-ggplot2 r-httr r-rjson))
20047 (native-inputs
20048 (list r-knitr))
20049 (home-page "https://cran.r-project.org/web/packages/enrichR/")
20050 (synopsis "R Interface to Enrichr database for analyzing gene sets")
20051 (description
20052 "This package provides an R interface to all Enrichr databases, a
20053 web-based tool for analyzing gene sets and returns any enrichment of common
20054 annotated biological functions.")
20055 (license license:gpl2+)))
20056
20057 (define-public r-plot3d
20058 (package
20059 (name "r-plot3d")
20060 (version "1.4")
20061 (source
20062 (origin
20063 (method url-fetch)
20064 (uri (cran-uri "plot3D" version))
20065 (sha256
20066 (base32
20067 "1h59zlsyzbjylaziwavppl9bjmnba4iiq34772y3dys6fqclajnh"))))
20068 (properties `((upstream-name . "plot3D")))
20069 (build-system r-build-system)
20070 (propagated-inputs (list r-misc3d))
20071 (home-page "https://cran.r-project.org/web/packages/plot3D")
20072 (synopsis "Plot multi-dimensional data")
20073 (description
20074 "This package provides functions for viewing 2D and 3D data, including
20075 perspective plots, slice plots, surface plots, scatter plots, etc. It
20076 includes data sets from oceanography.")
20077 (license license:gpl3+)))
20078
20079 (define-public r-ggfortify
20080 (package
20081 (name "r-ggfortify")
20082 (version "0.4.14")
20083 (source
20084 (origin
20085 (method url-fetch)
20086 (uri (cran-uri "ggfortify" version))
20087 (sha256
20088 (base32
20089 "038m74azpy43869ax1yi6wxbl1kr59iaxl8raiikjg749vcx6njw"))))
20090 (build-system r-build-system)
20091 (propagated-inputs
20092 (list r-dplyr
20093 r-ggplot2
20094 r-gridextra
20095 r-scales
20096 r-stringr
20097 r-tibble
20098 r-tidyr))
20099 (native-inputs
20100 (list r-knitr))
20101 (home-page "https://github.com/sinhrks/ggfortify")
20102 (synopsis "Data visualization tools for statistical analysis results")
20103 (description
20104 "This package provides unified plotting tools for statistics commonly
20105 used, such as GLM, time series, PCA families, clustering and survival
20106 analysis. The package offers a single plotting interface for these analysis
20107 results and plots in a unified style using the @code{ggplot2} package.")
20108 (license license:gpl2)))
20109
20110 (define-public r-refmanager
20111 (package
20112 (name "r-refmanager")
20113 (version "1.3.0")
20114 (source
20115 (origin
20116 (method url-fetch)
20117 (uri (cran-uri "RefManageR" version))
20118 (sha256
20119 (base32
20120 "1spzdp5ni52dybcaxqnhwdphh27wjyrsfy4hsxsplpg9rqwfqfps"))))
20121 (properties `((upstream-name . "RefManageR")))
20122 (build-system r-build-system)
20123 (propagated-inputs
20124 (list r-httr
20125 r-jsonlite
20126 r-lubridate
20127 r-plyr
20128 r-stringr
20129 r-xml2))
20130 (native-inputs
20131 (list r-knitr))
20132 (home-page "https://github.com/ropensci/RefManageR/")
20133 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
20134 (description
20135 "This package provides tools for importing and working with bibliographic
20136 references. It greatly enhances the @code{bibentry} class by providing a
20137 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
20138 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
20139 by various formats for name lists (author by last names, translator by full
20140 names, etc.). Entries can be updated, combined, sorted, printed in a number
20141 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
20142 into R and converted to @code{BibEntry} objects.")
20143 ;; Any of these licenses may be picked.
20144 (license (list license:gpl2 license:gpl3 license:bsd-3))))
20145
20146 (define-public r-citr
20147 (package
20148 (name "r-citr")
20149 (version "0.3.2")
20150 (source
20151 (origin
20152 (method url-fetch)
20153 (uri (cran-uri "citr" version))
20154 (sha256
20155 (base32
20156 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
20157 (build-system r-build-system)
20158 (propagated-inputs
20159 (list r-assertthat
20160 r-curl
20161 r-httr
20162 r-miniui
20163 r-refmanager
20164 r-rstudioapi
20165 r-shiny
20166 r-shinyjs
20167 r-yaml))
20168 (home-page "https://github.com/crsh/citr")
20169 (synopsis "RStudio add-in to insert Markdown citations")
20170 (description
20171 "This package provides functions and an RStudio add-in that search a
20172 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
20173 the current document.")
20174 (license license:expat)))
20175
20176 (define-public r-xgboost
20177 (package
20178 (name "r-xgboost")
20179 (version "1.6.0.1")
20180 (source
20181 (origin
20182 (method url-fetch)
20183 (uri (cran-uri "xgboost" version))
20184 (sha256
20185 (base32
20186 "1gafjv6vcpny03lqw8s68xszalsylniavaqwsbzh46vyk4h9mscs"))))
20187 (build-system r-build-system)
20188 (propagated-inputs
20189 (list r-data-table r-jsonlite r-matrix))
20190 (native-inputs
20191 (list r-knitr))
20192 (home-page "https://github.com/dmlc/xgboost")
20193 (synopsis "Extreme gradient boosting")
20194 (description
20195 "This package provides an R interface to Extreme Gradient Boosting, which
20196 is an efficient implementation of the gradient boosting framework from Chen
20197 and Guestrin (2016). The package includes efficient linear model solver and
20198 tree learning algorithms. The package can automatically do parallel
20199 computation on a single machine. It supports various objective functions,
20200 including regression, classification and ranking. The package is made to be
20201 extensible, so that users are also allowed to define their own objectives
20202 easily.")
20203 (license license:asl2.0)))
20204
20205 (define-public r-umap
20206 (package
20207 (name "r-umap")
20208 (version "0.2.8.0")
20209 (source
20210 (origin
20211 (method url-fetch)
20212 (uri (cran-uri "umap" version))
20213 (sha256
20214 (base32
20215 "0aiarnzc8gl932gi8fxd9f9rshaiwh9vj570l135fkiaja3q2wap"))))
20216 (build-system r-build-system)
20217 (propagated-inputs
20218 (list r-matrix r-openssl r-rcpp r-reticulate r-rspectra))
20219 (native-inputs
20220 (list r-knitr))
20221 (home-page "https://github.com/tkonopka/umap")
20222 (synopsis "Uniform manifold approximation and projection")
20223 (description
20224 "Uniform manifold approximation and projection is a technique for
20225 dimension reduction. This package provides an interface to the UMAP algorithm
20226 in R, including a translation of the original algorithm into R.")
20227 (license license:expat)))
20228
20229 (define-public r-uwot
20230 (package
20231 (name "r-uwot")
20232 (version "0.1.11")
20233 (source
20234 (origin
20235 (method url-fetch)
20236 (uri (cran-uri "uwot" version))
20237 (sha256
20238 (base32
20239 "06ylzxmdh8jipbrzgqaiivd2lnqmbcva41cyvc0iyals6vqr1ksg"))))
20240 (build-system r-build-system)
20241 (propagated-inputs
20242 (list r-dqrng
20243 r-fnn
20244 r-irlba
20245 r-matrix
20246 r-rcpp
20247 r-rcppannoy
20248 r-rcppprogress
20249 r-rspectra))
20250 (home-page "https://github.com/jlmelville/uwot")
20251 (synopsis "Uniform manifold approximation and projection")
20252 (description
20253 "This package provides an implementation of the Uniform Manifold
20254 Approximation and Projection dimensionality reduction by McInnes et
20255 al. (2018). It also provides means to transform new data and to carry out
20256 supervised dimensionality reduction. An implementation of the related
20257 LargeVis method of Tang et al. (2016) is also provided.")
20258 (license license:gpl3)))
20259
20260 (define-public r-kableextra
20261 (package
20262 (name "r-kableextra")
20263 (version "1.3.4")
20264 (source
20265 (origin
20266 (method url-fetch)
20267 (uri (cran-uri "kableExtra" version))
20268 (sha256
20269 (base32
20270 "1c5vzy95cbz36jwyssr927qicrayifinv861rvnmg4nghb1gl7q9"))))
20271 (properties `((upstream-name . "kableExtra")))
20272 (build-system r-build-system)
20273 (propagated-inputs
20274 (list r-digest
20275 r-glue
20276 r-htmltools
20277 r-knitr
20278 r-magrittr
20279 r-rmarkdown
20280 r-rstudioapi
20281 r-rvest
20282 r-scales
20283 r-stringr
20284 r-svglite
20285 r-viridislite
20286 r-webshot
20287 r-xml2))
20288 (native-inputs
20289 (list r-knitr))
20290 (home-page "https://haozhu233.github.io/kableExtra/")
20291 (synopsis "Construct complex tables with pipe syntax")
20292 (description
20293 "Build complex HTML or LaTeX tables using @code{kable()} from
20294 @code{knitr} and the piping syntax from @code{magrittr}. The function
20295 @code{kable()} is a light weight table generator coming from @code{knitr}.
20296 This package simplifies the way to manipulate the HTML or LaTeX codes
20297 generated by @code{kable()} and allows users to construct complex tables and
20298 customize styles using a readable syntax.")
20299 (license license:expat)))
20300
20301 (define-public r-glasso
20302 (package
20303 (name "r-glasso")
20304 (version "1.11")
20305 (source
20306 (origin
20307 (method url-fetch)
20308 (uri (cran-uri "glasso" version))
20309 (sha256
20310 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
20311 (build-system r-build-system)
20312 (native-inputs (list gfortran))
20313 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
20314 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
20315 (description
20316 "This is a package for estimation of a sparse inverse covariance matrix
20317 using a lasso (L1) penalty. Facilities are provided for estimates along a
20318 path of values for the regularization parameter.")
20319 (license license:gpl2)))
20320
20321 (define-public r-rhpcblasctl
20322 (package
20323 (name "r-rhpcblasctl")
20324 (version "0.21-247.1")
20325 (source
20326 (origin
20327 (method url-fetch)
20328 (uri (cran-uri "RhpcBLASctl" version))
20329 (sha256
20330 (base32
20331 "0scpr6jq25xx7wmqyc380ann4h536ll0g7wblikk25yqvpamzrav"))))
20332 (properties `((upstream-name . "RhpcBLASctl")))
20333 (build-system r-build-system)
20334 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
20335 (synopsis "Control the number of threads on BLAS")
20336 (description
20337 "This package allows you to control the number of threads the BLAS
20338 library uses. It is also possible to control the number of threads in
20339 OpenMP.")
20340 (license license:agpl3+)))
20341
20342 (define-public r-lda
20343 (package
20344 (name "r-lda")
20345 (version "1.4.2")
20346 (source
20347 (origin
20348 (method url-fetch)
20349 (uri (cran-uri "lda" version))
20350 (sha256
20351 (base32
20352 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
20353 (build-system r-build-system)
20354 (home-page "https://cran.r-project.org/web/packages/lda/")
20355 (synopsis "Collapsed Gibbs sampling methods for topic models")
20356 (description
20357 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
20358 related models. This includes (but is not limited to) sLDA, corrLDA, and the
20359 mixed-membership stochastic blockmodel. Inference for all of these models is
20360 implemented via a fast collapsed Gibbs sampler written in C. Utility
20361 functions for reading/writing data typically used in topic models, as well as
20362 tools for examining posterior distributions are also included.")
20363 ;; Any version of the LGPL
20364 (license license:lgpl3+)))
20365
20366 (define-public r-rann-l1
20367 (package
20368 (name "r-rann-l1")
20369 (version "2.5.2")
20370 (source
20371 (origin
20372 (method url-fetch)
20373 (uri (cran-uri "RANN.L1" version))
20374 (sha256
20375 (base32
20376 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
20377 (properties `((upstream-name . "RANN.L1")))
20378 (build-system r-build-system)
20379 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
20380 (synopsis "Fast nearest neighbour search using L1 metric")
20381 (description
20382 "This package provides tools to find the k nearest neighbours for every
20383 point in a given dataset in O(N log N) time using Arya and Mount's ANN
20384 library. There is support for approximate as well as exact searches, fixed
20385 radius searches and @code{bd} as well as @code{kd} trees. The distance is
20386 computed using the L1 (Manhattan, taxicab) metric.")
20387 (license license:gpl3+)))
20388
20389 (define-public r-leiden
20390 (package
20391 (name "r-leiden")
20392 (version "0.4.2")
20393 (source
20394 (origin
20395 (method url-fetch)
20396 (uri (cran-uri "leiden" version))
20397 (sha256
20398 (base32
20399 "1gg24afwbz818041bhmswmdqgxv35zp5h1i1102p58aaiis8dkna"))))
20400 (properties `((upstream-name . "leiden")))
20401 (build-system r-build-system)
20402 (propagated-inputs
20403 (list r-igraph r-matrix r-reticulate))
20404 (native-inputs
20405 (list r-knitr))
20406 (home-page "https://github.com/TomKellyGenetics/leiden")
20407 (synopsis "R implementation of Leiden clustering algorithm")
20408 (description
20409 "This package implements the Python @code{leidenalg} module to be called
20410 in R. It enables clustering using the Leiden algorithm for partitioning a
20411 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
20412 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
20413 (license license:gpl3)))
20414
20415 (define-public r-patchwork
20416 (package
20417 (name "r-patchwork")
20418 (version "1.1.1")
20419 (source
20420 (origin
20421 (method url-fetch)
20422 (uri (cran-uri "patchwork" version))
20423 (sha256
20424 (base32
20425 "10glgkf58lcykcwda1hj6xdps02m3i247qynk6s2jmwljagps3fg"))))
20426 (build-system r-build-system)
20427 (propagated-inputs
20428 (list r-ggplot2 r-gtable))
20429 (native-inputs
20430 (list r-knitr))
20431 (home-page "https://github.com/thomasp85/patchwork")
20432 (synopsis "Compose ggplot2 plots")
20433 (description
20434 "The @code{ggplot2} package provides a strong API for sequentially
20435 building up a plot, but does not concern itself with composition of multiple
20436 plots. Patchwork is a package that expands the API to allow for arbitrarily
20437 complex composition of plots by providing mathematical operators for combining
20438 multiple plots.")
20439 (license license:expat)))
20440
20441 (define-public r-liger
20442 (package
20443 (name "r-liger")
20444 (version "0.4.2")
20445 (source
20446 (origin
20447 (method git-fetch)
20448 (uri (git-reference
20449 (url "https://github.com/MacoskoLab/liger")
20450 (commit (string-append "v" version))))
20451 (file-name (git-file-name name version))
20452 (sha256
20453 (base32
20454 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
20455 (modules '((guix build utils)))
20456 (snippet
20457 '(begin
20458 (delete-file "inst/java/ModularityOptimizer.jar")
20459 #t))))
20460 (build-system r-build-system)
20461 (arguments
20462 `(#:phases
20463 (modify-phases %standard-phases
20464 (add-after 'unpack 'build-java-part
20465 (lambda* (#:key inputs #:allow-other-keys)
20466 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
20467 (for-each (lambda (file) (invoke "javac" file))
20468 (find-files "." "\\.java$"))
20469 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
20470 (find-files "." "\\.class$"))
20471 #t)))))
20472 (propagated-inputs
20473 (list r-cowplot
20474 r-dosnow
20475 r-dplyr
20476 r-fnn
20477 r-foreach
20478 r-ggplot2
20479 r-ggrepel
20480 r-hmisc
20481 r-ica
20482 r-irlba
20483 r-matrix
20484 r-mclust
20485 r-patchwork
20486 r-plyr
20487 r-rann-l1
20488 r-rcpp
20489 r-rcpparmadillo
20490 r-riverplot
20491 r-rtsne
20492 r-snow))
20493 (native-inputs
20494 `(("jdk" ,icedtea "jdk")
20495 ;; See https://github.com/MacoskoLab/liger/issues/96
20496 ;; The optimizer is released under the Expat license.
20497 ("optimizer-src"
20498 ,(origin
20499 (method url-fetch)
20500 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
20501 (sha256
20502 (base32
20503 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
20504 ("unzip" ,unzip)
20505 ("r-knitr" ,r-knitr))) ; for vignettes
20506 (home-page "https://github.com/MacoskoLab/liger")
20507 (synopsis "Integrate and analyze multiple single-cell datasets")
20508 (description
20509 "LIGER is a package for integrating and analyzing multiple single-cell
20510 datasets, developed and maintained by the Macosko lab. It relies on
20511 integrative non-negative matrix factorization to identify shared and
20512 dataset-specific factors.")
20513 (license license:gpl3)))
20514
20515 (define-public r-harmony
20516 (package
20517 (name "r-harmony")
20518 (version "0.1")
20519 (source
20520 (origin
20521 (method git-fetch)
20522 (uri (git-reference
20523 (url "https://github.com/immunogenomics/harmony")
20524 (commit version)))
20525 (file-name (git-file-name name version))
20526 (sha256
20527 (base32
20528 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
20529 (modules '((guix build utils)))
20530 (snippet
20531 '(begin
20532 (for-each delete-file '("config.status" "configure"))
20533 #t))))
20534 (build-system r-build-system)
20535 (propagated-inputs
20536 (list r-cowplot
20537 r-dplyr
20538 r-ggplot2
20539 r-irlba
20540 r-matrix
20541 r-rcpp
20542 r-rcpparmadillo
20543 r-rcppprogress
20544 r-rlang
20545 r-tibble
20546 r-tidyr))
20547 (native-inputs
20548 (list autoconf))
20549 (home-page "https://github.com/immunogenomics/harmony")
20550 (synopsis "Integration of single cell sequencing data")
20551 (description
20552 "This package provides an implementation of the Harmony algorithm for
20553 single cell integration, described in Korsunsky et al
20554 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
20555 function and interfaces to external frameworks.")
20556 (license license:gpl3)))
20557
20558 (define-public r-covr
20559 (package
20560 (name "r-covr")
20561 (version "3.5.1")
20562 (source
20563 (origin
20564 (method url-fetch)
20565 (uri (cran-uri "covr" version))
20566 (sha256
20567 (base32 "0v5cv3cw2kpdr6wxmkbd3wclavr17zipypdcb10hhmpa4cvgqk55"))))
20568 (properties `((upstream-name . "covr")))
20569 (build-system r-build-system)
20570 (propagated-inputs
20571 (list r-crayon
20572 r-digest
20573 r-httr
20574 r-jsonlite
20575 r-rex
20576 r-withr
20577 r-yaml))
20578 (native-inputs
20579 (list r-knitr)) ; for vignettes
20580 (home-page "https://github.com/r-lib/covr")
20581 (synopsis "Test coverage for R packages")
20582 (description
20583 "Thisp package enables you to track and report code coverage for your
20584 package and (optionally) upload the results to a coverage service. Code
20585 coverage is a measure of the amount of code being exercised by a set of tests.
20586 It is an indirect measure of test quality and completeness. This package is
20587 compatible with any testing methodology or framework and tracks coverage of
20588 both R code and compiled C/C++/FORTRAN code.")
20589 (license license:gpl3)))
20590
20591 (define-public r-systemfonts
20592 (package
20593 (name "r-systemfonts")
20594 (version "1.0.4")
20595 (source
20596 (origin
20597 (method url-fetch)
20598 (uri (cran-uri "systemfonts" version))
20599 (sha256
20600 (base32
20601 "1h44bal845jp7ya8i7ff1kz1n3wklkb00jk6hb9lgwa2p5snqxpg"))))
20602 (properties `((upstream-name . "systemfonts")))
20603 (build-system r-build-system)
20604 (propagated-inputs
20605 (list r-cpp11))
20606 (inputs
20607 (list fontconfig freetype zlib))
20608 (native-inputs
20609 (list pkg-config r-knitr))
20610 (home-page "https://github.com/r-lib/systemfonts")
20611 (synopsis "System native font finding")
20612 (description
20613 "This package provides system native access to the font catalogue. As
20614 font handling varies between systems it is difficult to correctly locate
20615 installed fonts across different operating systems. The 'systemfonts' package
20616 provides bindings to the native libraries for finding font files that can then
20617 be used further by e.g. graphic devices.")
20618 (license license:expat)))
20619
20620 (define-public r-graphlayouts
20621 (package
20622 (name "r-graphlayouts")
20623 (version "0.8.0")
20624 (source
20625 (origin
20626 (method url-fetch)
20627 (uri (cran-uri "graphlayouts" version))
20628 (sha256
20629 (base32
20630 "1l7gkn0r1ijllv3w7cbwcbi0jggs7wlkq9b2lykprng4g1kjc96p"))))
20631 (properties `((upstream-name . "graphlayouts")))
20632 (build-system r-build-system)
20633 (propagated-inputs
20634 (list r-igraph r-rcpp r-rcpparmadillo))
20635 (home-page "https://github.com/schochastics/graphlayouts")
20636 (synopsis "Additional layout algorithms for network visualizations")
20637 (description
20638 "This package provides several layout algorithms to visualize networks
20639 which are not part of the igraph library. Most are based on the concept of
20640 stress majorization by Gansner et al. (2004)
20641 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
20642 emphasize hidden group structures in networks or focus on specific nodes.")
20643 (license license:expat)))
20644
20645 (define-public r-terra
20646 (package
20647 (name "r-terra")
20648 (version "1.5-21")
20649 (source
20650 (origin
20651 (method url-fetch)
20652 (uri (cran-uri "terra" version))
20653 (sha256
20654 (base32
20655 "0gzl0ka19jjw0dmaghjk2sgwi78kkz4w3rlfkym62rdarhlfj7h9"))))
20656 (properties `((upstream-name . "terra")))
20657 (build-system r-build-system)
20658 (inputs
20659 (list gdal
20660 geos
20661 proj
20662 sqlite ; needed for proj
20663 zlib))
20664 (propagated-inputs
20665 (list r-rcpp))
20666 (native-inputs
20667 (list pkg-config))
20668 (home-page "https://rspatial.org/terra")
20669 (synopsis "Spatial data analysis")
20670 (description
20671 "This package provides methods for spatial data analysis, especially
20672 raster data. The included methods allow for low-level data manipulation as
20673 well as high-level global, local, zonal, and focal computation. The predict
20674 and interpolate methods facilitate the use of regression type (interpolation,
20675 machine learning) models for spatial prediction. Processing of very large
20676 files is supported.")
20677 (license license:gpl3+)))
20678
20679 (define-public r-tidygraph
20680 (package
20681 (name "r-tidygraph")
20682 (version "1.2.1")
20683 (source
20684 (origin
20685 (method url-fetch)
20686 (uri (cran-uri "tidygraph" version))
20687 (sha256
20688 (base32
20689 "0dmdff3bkg53xn0c51xd6k2d9c7l250x1lhl5z3libf533dw5g9g"))))
20690 (properties `((upstream-name . "tidygraph")))
20691 (build-system r-build-system)
20692 (propagated-inputs
20693 (list r-cli
20694 r-cpp11
20695 r-dplyr
20696 r-igraph
20697 r-magrittr
20698 r-pillar
20699 r-r6
20700 r-rlang
20701 r-tibble
20702 r-tidyr))
20703 (home-page "https://github.com/thomasp85/tidygraph")
20704 (synopsis "Tidy API for graph manipulation")
20705 (description
20706 "This package provides a graph implementation that can be thought of as
20707 two tidy data frames describing node and edge data respectively. It provides
20708 an approach to manipulate these two virtual data frames using the API defined
20709 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
20710 common graph algorithms.")
20711 (license license:expat)))
20712
20713 (define-public r-soupx
20714 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
20715 (revision "1"))
20716 (package
20717 (name "r-soupx")
20718 (version (git-version "0.3.1" revision commit))
20719 (source
20720 (origin
20721 (method git-fetch)
20722 (uri (git-reference
20723 (url "https://github.com/constantAmateur/SoupX")
20724 (commit commit)))
20725 (file-name (git-file-name name version))
20726 (sha256
20727 (base32
20728 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
20729 (properties `((upstream-name . "SoupX")))
20730 (build-system r-build-system)
20731 (propagated-inputs
20732 (list r-ggplot2 r-matrix r-seurat))
20733 (home-page "https://github.com/constantAmateur/SoupX")
20734 (synopsis "Single cell mRNA Soup eXterminator")
20735 (description
20736 "This package provides a package for quantifying, profiling and
20737 removing cell free mRNA contamination (the \"soup\") from droplet based single
20738 cell RNA-seq experiments.")
20739 (license license:gpl2))))
20740
20741 (define-public r-assertr
20742 (package
20743 (name "r-assertr")
20744 (version "2.8")
20745 (source
20746 (origin
20747 (method url-fetch)
20748 (uri (cran-uri "assertr" version))
20749 (sha256
20750 (base32
20751 "00764vv86r3bn4r85in4w637harffyw605fgq0dj6mrbrwcfb650"))))
20752 (build-system r-build-system)
20753 (propagated-inputs
20754 (list r-dplyr r-mass r-rlang))
20755 (native-inputs
20756 (list r-knitr)) ; needed for vignette
20757 (home-page "https://github.com/ropensci/assertr")
20758 (synopsis "Assertive programming for R analysis pipelines")
20759 (description
20760 "This package provides functionality to assert conditions that have to be
20761 met so that errors in data used in analysis pipelines can fail quickly. It is
20762 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
20763 in pipelines.")
20764 (license license:expat)))
20765
20766 (define-public r-parameters
20767 (package
20768 (name "r-parameters")
20769 (version "0.18.0")
20770 (source
20771 (origin
20772 (method url-fetch)
20773 (uri (cran-uri "parameters" version))
20774 (sha256
20775 (base32
20776 "0r6bj29frhqyv75cviw0p8kns6h8z10n7g7khyk0hzq2fqjsjrwh"))))
20777 (properties `((upstream-name . "parameters")))
20778 (build-system r-build-system)
20779 (propagated-inputs
20780 (list r-bayestestr r-datawizard r-insight))
20781 (native-inputs
20782 (list r-knitr))
20783 (home-page "https://cran.r-project.org/web/packages/parameters")
20784 (synopsis "Processing of model parameters")
20785 (description
20786 "This package provides utilities for processing the parameters of various
20787 statistical models. Beyond computing p values, CIs, and other indices for a
20788 wide variety of models, this package implements features like standardization
20789 or bootstrapping of parameters and models, feature reduction (feature
20790 extraction and variable selection) as well as conversion between indices of
20791 effect size.")
20792 (license license:gpl3)))
20793
20794 (define-public r-rgdal
20795 (package
20796 (name "r-rgdal")
20797 (version "1.5-32")
20798 (source
20799 (origin
20800 (method url-fetch)
20801 (uri (cran-uri "rgdal" version))
20802 (sha256
20803 (base32 "1vbkyhw8nd7dw1r53qisphav31x6zvpbzilvnlvbjbj9hzhs90s5"))))
20804 (properties `((upstream-name . "rgdal")))
20805 (build-system r-build-system)
20806 (inputs
20807 (list gdal proj zlib))
20808 (propagated-inputs
20809 (list r-sp))
20810 (native-inputs
20811 (list pkg-config r-knitr))
20812 (home-page "http://rgdal.r-forge.r-project.org")
20813 (synopsis "Bindings for the Geospatial Data Abstraction Library")
20814 (description
20815 "This package provides bindings to the Geospatial Data Abstraction
20816 Library (GDAL) and access to projection/transformation operations from the
20817 PROJ.4 library.")
20818 (license license:gpl2+)))
20819
20820 (define-public r-insol
20821 (package
20822 (name "r-insol")
20823 (version "1.2.2")
20824 (source
20825 (origin
20826 (method url-fetch)
20827 (uri (cran-uri "insol" version))
20828 (sha256
20829 (base32
20830 "166kgxgzbh55y2qqya6c2si22x0v7asi70im054g6xxwc5187kh3"))))
20831 (properties `((upstream-name . "insol")))
20832 (build-system r-build-system)
20833 (propagated-inputs
20834 (list r-raster))
20835 (native-inputs
20836 (list gfortran))
20837 (home-page "https://meteoexploration.com/R/insol/index.html")
20838 (synopsis "Tools for calculating solar radiation")
20839 (description
20840 "This package provides functions to compute insolation on tilted
20841 surfaces, computes atmospheric transmittance and related parameters such as:
20842 Earth radius vector, declination, sunset and sunrise, daylength, equation of
20843 time, vector in the direction of the sun, vector normal to surface, and some
20844 atmospheric physics.")
20845 (license license:gpl2+)))
20846
20847 (define-public r-lifecycle
20848 (package
20849 (name "r-lifecycle")
20850 (version "1.0.1")
20851 (source
20852 (origin
20853 (method url-fetch)
20854 (uri (cran-uri "lifecycle" version))
20855 (sha256
20856 (base32
20857 "183v1z1h037pvsgrj6vakpwhnhsr29hsw8p16k59dgpi00f6x9qx"))))
20858 (properties `((upstream-name . "lifecycle")))
20859 (build-system r-build-system)
20860 (propagated-inputs
20861 (list r-glue r-rlang))
20862 (native-inputs
20863 (list r-knitr)) ; for vignettes
20864 (home-page "https://github.com/r-lib/lifecycle")
20865 (synopsis "Manage the life cycle of your package functions")
20866 (description
20867 "Manage the life cycle of your exported functions with shared
20868 conventions, documentation badges, and non-invasive deprecation warnings. The
20869 lifecycle package defines four development stages (experimental, maturing,
20870 stable, and questioning) and three deprecation stages (soft-deprecated,
20871 deprecated, and defunct). It makes it easy to insert badges corresponding to
20872 these stages in your documentation. Usage of deprecated functions are
20873 signalled with increasing levels of non-invasive verbosity.")
20874 (license license:gpl3)))
20875
20876 (define-public r-assertable
20877 (package
20878 (name "r-assertable")
20879 (version "0.2.8")
20880 (source
20881 (origin
20882 (method url-fetch)
20883 (uri (cran-uri "assertable" version))
20884 (sha256
20885 (base32
20886 "1cciil1nzxd8gbj49w99jiv077lbpb59vx7bmb4p218aj2h5hqq4"))))
20887 (build-system r-build-system)
20888 (propagated-inputs
20889 (list r-data-table))
20890 (native-inputs
20891 (list r-knitr))
20892 (home-page "https://cran.r-project.org/web/packages/assertable/")
20893 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
20894 (description "This package provides simple, flexible assertions on
20895 data.frame or data.table objects with verbose output for vetting. While other
20896 assertion packages apply towards more general use-cases, @code{assertable} is
20897 tailored towards tabular data. It includes functions to check variable names
20898 and values, whether the dataset contains all combinations of a given set of
20899 unique identifiers, and whether it is a certain length. In addition,
20900 @code{assertable} includes utility functions to check the existence of target
20901 files and to efficiently import multiple tabular data files into one
20902 data.table.")
20903 (license license:gpl3)))
20904
20905 (define-public r-quadprog
20906 (package
20907 (name "r-quadprog")
20908 (version "1.5-8")
20909 (source
20910 (origin
20911 (method url-fetch)
20912 (uri (cran-uri "quadprog" version))
20913 (sha256
20914 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
20915 (build-system r-build-system)
20916 (native-inputs
20917 (list gfortran))
20918 (home-page "https://cran.r-project.org/web/packages/quadprog")
20919 (synopsis "Functions to solve quadratic programming problems")
20920 (description
20921 "This package contains routines and documentation for solving quadratic
20922 programming problems.")
20923 (license license:gpl3+)))
20924
20925 (define-public r-desolve
20926 (package
20927 (name "r-desolve")
20928 (version "1.32")
20929 (source
20930 (origin
20931 (method url-fetch)
20932 (uri (cran-uri "deSolve" version))
20933 (sha256
20934 (base32 "1bfr4w760nr7mjhpmf32z39swr6isnn1665cld2d1pdgx8b0yrvl"))))
20935 (properties `((upstream-name . "deSolve")))
20936 (build-system r-build-system)
20937 (native-inputs
20938 (list gfortran))
20939 (home-page "https://desolve.r-forge.r-project.org/")
20940 (synopsis "Solvers for initial value problems of differential equations")
20941 (description "This package provides functions that solve initial value
20942 problems of a system of first-order @dfn{ordinary differential
20943 equations} (ODE), of @dfn{partial differential equations} (PDE), of
20944 @dfn{differential algebraic equations} (DAE), and of delay differential
20945 equations. The functions provide an interface to the FORTRAN functions
20946 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
20947 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
20948 C-implementation of solvers of the Runge-Kutta family with fixed or variable
20949 time steps. The package contains routines designed for solving ODEs resulting
20950 from 1-D, 2-D and 3-D partial differential equations that have been converted
20951 to ODEs by numerical differencing.")
20952 (license license:gpl2+)))
20953
20954 (define-public r-pmcmrplus
20955 (package
20956 (name "r-pmcmrplus")
20957 (version "1.9.4")
20958 (source
20959 (origin
20960 (method url-fetch)
20961 (uri (cran-uri "PMCMRplus" version))
20962 (sha256
20963 (base32 "16m1pdrzjq9vnx5v7zv56mz9r1205rkw92883cxaqbvdpds6dhqy"))))
20964 (properties `((upstream-name . "PMCMRplus")))
20965 (build-system r-build-system)
20966 (inputs (list gmp))
20967 (propagated-inputs
20968 (list r-bwstest
20969 r-gmp
20970 r-ksamples
20971 r-mass
20972 r-multcompview
20973 r-mvtnorm
20974 r-rmpfr
20975 r-suppdists))
20976 (native-inputs (list gfortran r-knitr))
20977 (home-page "https://cran.r-project.org/package=PMCMRplus")
20978 (synopsis "Calculate pairwise multiple comparisons of mean rank sums extended")
20979 (description
20980 "This package provides multiple pairwise tests.")
20981 (license license:gpl3+)))
20982
20983 (define-public r-pracma
20984 (package
20985 (name "r-pracma")
20986 (version "2.3.8")
20987 (source (origin
20988 (method url-fetch)
20989 (uri (cran-uri "pracma" version))
20990 (sha256
20991 (base32 "0r17siivm37k4gp253v9mlg5m7cwqp85h9kk2hbp2wkf81ad80i3"))))
20992 (build-system r-build-system)
20993 (home-page "https://cran.r-project.org/web/packages/pracma/")
20994 (synopsis "Practical numerical math functions")
20995 (description "This package provides functions for numerical analysis and
20996 linear algebra, numerical optimization, differential equations, plus some
20997 special functions. It uses Matlab function names where appropriate to simplify
20998 porting.")
20999 (license license:gpl3+)))
21000
21001 (define-public r-subplex
21002 (package
21003 (name "r-subplex")
21004 (version "1.8")
21005 (source
21006 (origin
21007 (method url-fetch)
21008 (uri (cran-uri "subplex" version))
21009 (sha256
21010 (base32
21011 "19g5bd39gmcn27xdsklkzxg99x1r5v5q8zcw1iwry31qj24ivhrv"))))
21012 (build-system r-build-system)
21013 (native-inputs
21014 (list gfortran))
21015 (home-page "https://cran.r-project.org/web/packages/subplex")
21016 (synopsis "Unconstrained optimization using the subplex algorithm")
21017 (description
21018 "This package implements the Subplex optimization algorithm.
21019 It solves unconstrained optimization problems using a simplex method on
21020 subspaces. The method is well suited for optimizing objective functions that
21021 are noisy or are discontinuous at the solution.")
21022 (license license:gpl3+)))
21023
21024 (define-public r-txtplot
21025 (package
21026 (name "r-txtplot")
21027 (version "1.0-4")
21028 (source
21029 (origin
21030 (method url-fetch)
21031 (uri (cran-uri "txtplot" version))
21032 (sha256
21033 (base32
21034 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
21035 (build-system r-build-system)
21036 (home-page "https://cran.r-project.org/web/packages/txtplot/")
21037 (synopsis "Text-based plotting")
21038 (description "This package provides functions to produce rudimentary ASCII
21039 graphics directly in the terminal window. This package provides a basic
21040 plotting function (and equivalents of curve, density, acf and barplot) as well
21041 as a boxplot function.")
21042 (license license:lgpl3+)))
21043
21044 (define-public r-bio3d
21045 (package
21046 (name "r-bio3d")
21047 (version "2.4-3")
21048 (source
21049 (origin
21050 (method url-fetch)
21051 (uri (cran-uri "bio3d" version))
21052 (sha256
21053 (base32
21054 "0x3apqxbk4lvvcnvvdsyjd9f6qh9f9qgml3ih69hl9ikj06iy0y6"))))
21055 (properties `((upstream-name . "bio3d")))
21056 (build-system r-build-system)
21057 (inputs (list zlib))
21058 (propagated-inputs (list r-rcpp))
21059 (native-inputs
21060 (list r-knitr))
21061 (home-page "http://thegrantlab.org/bio3d/")
21062 (synopsis "Biological structure analysis")
21063 (description
21064 "This package provides utilities to process, organize and explore protein
21065 structure, sequence and dynamics data. Features include the ability to read
21066 and write structure, sequence and dynamic trajectory data, perform sequence
21067 and structure database searches, data summaries, atom selection, alignment,
21068 superposition, rigid core identification, clustering, torsion analysis,
21069 distance matrix analysis, structure and sequence conservation analysis, normal
21070 mode analysis, principal component analysis of heterogeneous structure data,
21071 and correlation network analysis from normal mode and molecular dynamics data.
21072 In addition, various utility functions are provided to enable the statistical
21073 and graphical power of the R environment to work with biological sequence and
21074 structural data.")
21075 (license license:gpl2+)))
21076
21077 (define-public r-bios2cor
21078 (package
21079 (name "r-bios2cor")
21080 (version "2.2")
21081 (source
21082 (origin
21083 (method url-fetch)
21084 (uri (cran-uri "Bios2cor" version))
21085 (sha256
21086 (base32
21087 "1wkj9vr33m9jilidil9jpw5rzr3pf7gkimxdvch22ks4bgkx7l1w"))))
21088 (properties `((upstream-name . "Bios2cor")))
21089 (build-system r-build-system)
21090 (propagated-inputs
21091 (list r-bigmemory r-bio3d r-circular r-igraph))
21092 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
21093 (synopsis "From biological sequences and simulations to correlation analysis")
21094 (description
21095 "This package provides utilities for computation and analysis of
21096 correlation/covariation in multiple sequence alignments and in side chain
21097 motions during molecular dynamics simulations. Features include the
21098 computation of correlation/covariation scores using a variety of scoring
21099 functions between either sequence positions in alignments or side chain
21100 dihedral angles in molecular dynamics simulations and utilities to analyze the
21101 correlation/covariation matrix through a variety of tools including network
21102 representation and principal components analysis. In addition, several
21103 utility functions are based on the R graphical environment to provide friendly
21104 tools for help in data interpretation.")
21105 (license license:gpl2+)))
21106
21107 ;; This package includes minified JavaScript files. When upgrading please
21108 ;; check that there are no new minified JavaScript files.
21109 (define-public r-networkd3
21110 (package
21111 (name "r-networkd3")
21112 (version "0.4")
21113 (source
21114 (origin
21115 (method url-fetch)
21116 (uri (cran-uri "networkD3" version))
21117 (sha256
21118 (base32
21119 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
21120 (snippet
21121 '(begin
21122 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
21123 #t))))
21124 (properties `((upstream-name . "networkD3")))
21125 (build-system r-build-system)
21126 (arguments
21127 `(#:modules ((guix build utils)
21128 (guix build r-build-system)
21129 (srfi srfi-1)
21130 (ice-9 popen))
21131 #:phases
21132 (modify-phases %standard-phases
21133 (add-after 'unpack 'process-javascript
21134 (lambda* (#:key inputs #:allow-other-keys)
21135 (with-directory-excursion "inst/htmlwidgets/lib/"
21136 (call-with-values
21137 (lambda ()
21138 (unzip2
21139 `((,(assoc-ref inputs "d3.v4.js")
21140 "d3-4.5.0/d3.min.js"))))
21141 (lambda (sources targets)
21142 (for-each (lambda (source target)
21143 (format #t "Processing ~a --> ~a~%"
21144 source target)
21145 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
21146 (call-with-output-file target
21147 (lambda (port)
21148 (dump-port minified port)))))
21149 sources targets))))
21150 #t)))))
21151 (native-inputs
21152 `(("uglifyjs" ,node-uglify-js)
21153 ;; NOTE: Make sure that this version of d3 is still valid when
21154 ;; upgrading the package.
21155 ("d3.v4.js"
21156 ,(origin
21157 (method url-fetch)
21158 (uri "https://d3js.org/d3.v4.js")
21159 (sha256
21160 (base32
21161 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
21162 (propagated-inputs
21163 (list r-htmlwidgets r-igraph r-magrittr))
21164 (home-page "https://cran.r-project.org/package=networkD3")
21165 (synopsis "D3 JavaScript network graphs from R")
21166 (description
21167 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
21168 graphs from R.")
21169 (license license:gpl3+)))
21170
21171 (define-public r-aasea
21172 (package
21173 (name "r-aasea")
21174 (version "1.1.0")
21175 (source
21176 (origin
21177 (method url-fetch)
21178 (uri (cran-uri "aaSEA" version))
21179 (sha256
21180 (base32
21181 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
21182 (properties `((upstream-name . "aaSEA")))
21183 (build-system r-build-system)
21184 (propagated-inputs
21185 (list r-bios2cor
21186 r-dt
21187 r-hmisc
21188 r-magrittr
21189 r-networkd3
21190 r-plotly
21191 r-seqinr
21192 r-shiny
21193 r-shinydashboard))
21194 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
21195 (synopsis "Amino acid substitution effect analyzer")
21196 (description
21197 "Given a protein multiple sequence alignment, it is a daunting task to
21198 assess the effects of substitutions along sequence length. The aaSEA package
21199 is intended to help researchers to rapidly analyze property changes caused by
21200 single, multiple and correlated amino acid substitutions in proteins.")
21201 (license license:gpl3)))
21202
21203 (define-public r-abacus
21204 (package
21205 (name "r-abacus")
21206 (version "1.0.0")
21207 (source
21208 (origin
21209 (method url-fetch)
21210 (uri (cran-uri "ABACUS" version))
21211 (sha256
21212 (base32
21213 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
21214 (properties `((upstream-name . "ABACUS")))
21215 (build-system r-build-system)
21216 (propagated-inputs
21217 (list r-ggplot2 r-shiny))
21218 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
21219 (synopsis "Apps-based activities for communicating and understanding statistics")
21220 (description
21221 "This package provides a set of Shiny apps for effective communication
21222 and understanding in statistics. The current version includes properties of
21223 normal distribution, properties of sampling distribution, one-sample z and t
21224 tests, two samples independent (unpaired) t test and analysis of variance.")
21225 (license license:gpl3)))
21226
21227 (define-public r-abc-rap
21228 (package
21229 (name "r-abc-rap")
21230 (version "0.9.0")
21231 (source
21232 (origin
21233 (method url-fetch)
21234 (uri (cran-uri "ABC.RAP" version))
21235 (sha256
21236 (base32
21237 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
21238 (properties `((upstream-name . "ABC.RAP")))
21239 (build-system r-build-system)
21240 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
21241 (synopsis "Array-based CpG region analysis pipeline")
21242 (description
21243 "This package aims to identify candidate genes that are differentially
21244 methylated between cases and controls. It applies Student's t-test and delta
21245 beta analysis to identify candidate genes containing multiple CpG sites.")
21246 (license license:gpl3)))
21247
21248 (define-public r-abcadm
21249 (package
21250 (name "r-abcadm")
21251 (version "1.0")
21252 (source
21253 (origin
21254 (method url-fetch)
21255 (uri (cran-uri "abcADM" version))
21256 (sha256
21257 (base32
21258 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
21259 (properties `((upstream-name . "abcADM")))
21260 (build-system r-build-system)
21261 (propagated-inputs
21262 (list r-bh r-rcpp))
21263 (home-page "https://cran.r-project.org/web/packages/abcADM/")
21264 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
21265 (description
21266 "This package provides tools to estimate parameters of accumulated
21267 damage (load duration) models based on failure time data under a Bayesian
21268 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
21269 long-term reliability under stochastic load profiles.")
21270 (license license:gpl3)))
21271
21272 (define-public r-rglpk
21273 (package
21274 (name "r-rglpk")
21275 (version "0.6-4")
21276 (source
21277 (origin
21278 (method url-fetch)
21279 (uri (cran-uri "Rglpk" version))
21280 (sha256
21281 (base32
21282 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
21283 (properties `((upstream-name . "Rglpk")))
21284 (build-system r-build-system)
21285 (propagated-inputs
21286 (list r-slam))
21287 (inputs
21288 (list glpk))
21289 (home-page "https://r-forge.r-project.org/projects/rglp/")
21290 (synopsis "R interface to the GNU Linear Programming Kit")
21291 (description
21292 "This package provides an R interface to the GNU Linear Programming Kit,
21293 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
21294 integer linear programming} (MILP) and other related problems.")
21295 ;; Either license
21296 (license (list license:gpl2 license:gpl3))))
21297
21298 (define-public r-abcdefba
21299 (package
21300 (name "r-abcdefba")
21301 (version "0.4")
21302 (source
21303 (origin
21304 (method url-fetch)
21305 (uri (cran-uri "abcdeFBA" version))
21306 (sha256
21307 (base32
21308 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
21309 (properties `((upstream-name . "abcdeFBA")))
21310 (build-system r-build-system)
21311 (propagated-inputs
21312 (list r-corrplot r-lattice r-rgl r-rglpk))
21313 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
21314 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
21315 (description
21316 "This package provides functions for Constraint Based Simulation using
21317 Flux Balance Analysis and informative analysis of the data generated during
21318 simulation.")
21319 (license license:gpl2)))
21320
21321 (define-public r-abcrlda
21322 (package
21323 (name "r-abcrlda")
21324 (version "1.0.3")
21325 (source
21326 (origin
21327 (method url-fetch)
21328 (uri (cran-uri "abcrlda" version))
21329 (sha256
21330 (base32
21331 "04pcdnk2szfpc2ylcw5ds7y895ivy03bycal03kxw7cwylzxasks"))))
21332 (properties `((upstream-name . "abcrlda")))
21333 (build-system r-build-system)
21334 (home-page "https://ieeexplore.ieee.org/document/8720003/")
21335 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
21336 (description
21337 "This package offers methods to perform @dfn{asymptotically
21338 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
21339 cost-sensitive binary classification. The bias-correction is an estimate of
21340 the bias term added to regularized discriminant analysis that minimizes the
21341 overall risk.")
21342 (license license:gpl3)))
21343
21344 (define-public r-abemus
21345 (package
21346 (name "r-abemus")
21347 (version "1.0.1")
21348 (source
21349 (origin
21350 (method url-fetch)
21351 (uri (cran-uri "abemus" version))
21352 (sha256
21353 (base32
21354 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
21355 (properties `((upstream-name . "abemus")))
21356 (build-system r-build-system)
21357 (propagated-inputs
21358 (list r-data-table))
21359 (home-page "https://cran.r-project.org/web/packages/abemus/")
21360 (synopsis "Adaptive base error model in ultra-deep sequencing data")
21361 (description
21362 "This package provides an implementation of @dfn{Adaptive Base Error
21363 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
21364 platform-specific genetic knowledge and empirical signal to readily detect and
21365 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
21366 cell free DNA} (cfDNA).")
21367 (license license:gpl3)))
21368
21369 ;; This package includes minified JavaScript files. When upgrading please
21370 ;; check that there are no new minified JavaScript files.
21371 (define-public r-rintrojs
21372 (package
21373 (name "r-rintrojs")
21374 (version "0.3.0")
21375 (source
21376 (origin
21377 (method url-fetch)
21378 (uri (cran-uri "rintrojs" version))
21379 (sha256
21380 (base32
21381 "00l5mk80gj3xkbf3m1kip566ic98bhd88lh0bg69ybkpk4gifpyw"))
21382 (snippet
21383 '(delete-file "inst/javascript/introjs/intro.min.js"))))
21384 (properties `((upstream-name . "rintrojs")))
21385 (build-system r-build-system)
21386 (arguments
21387 `(#:phases
21388 (modify-phases %standard-phases
21389 (add-after 'unpack 'process-javascript
21390 (lambda* (#:key inputs #:allow-other-keys)
21391 (with-directory-excursion "inst/javascript/introjs/"
21392 (let ((source (assoc-ref inputs "intro.js"))
21393 (target "intro.min.js"))
21394 (format #true "Processing ~a --> ~a~%"
21395 source target)
21396 (invoke "esbuild" source "--minify"
21397 (string-append "--outfile=" target)))))))))
21398 (native-inputs
21399 `(("esbuild" ,esbuild)
21400 ("intro.js"
21401 ,(origin
21402 (method url-fetch)
21403 (uri "https://cdn.jsdelivr.net/npm/intro.js@3.2.1/intro.js")
21404 (sha256
21405 (base32
21406 "0vh5n7hqqyx2pdvlqq6xadfqibcn78h5961rwhpf817kpxfzv8v7"))))))
21407 (propagated-inputs
21408 (list r-jsonlite r-shiny))
21409 (home-page "https://github.com/carlganz/rintrojs")
21410 (synopsis "Wrapper for the Intro.js library")
21411 (description
21412 "This package provides a wrapper for the @url{http://www.introjs.com,
21413 Intro.js} library. This package makes it easy to include step-by-step
21414 introductions, and clickable hints in a Shiny application. It supports both
21415 static introductions in the UI, and programmatic introductions from the
21416 server-side.")
21417 ;; The intro.js library is licensed under Expat.
21418 (license (list license:agpl3+ license:expat))))
21419
21420 (define-public r-sysfonts
21421 (package
21422 (name "r-sysfonts")
21423 (version "0.8.8")
21424 (source
21425 (origin
21426 (method url-fetch)
21427 (uri (cran-uri "sysfonts" version))
21428 (sha256
21429 (base32
21430 "1fq5dn4l09sgrbznfz9cakf4vgc3761zwicvqaazh0s8mzbaicpn"))))
21431 (properties `((upstream-name . "sysfonts")))
21432 (build-system r-build-system)
21433 (inputs
21434 (list freetype libpng zlib))
21435 (native-inputs
21436 (list pkg-config))
21437 (home-page "https://github.com/yixuan/sysfonts")
21438 (synopsis "Loading fonts into R")
21439 (description
21440 "This is a package to simplify loading of system fonts and Google Fonts
21441 into R, in order to support other packages.")
21442 (license license:gpl2)))
21443
21444 (define-public r-showtextdb
21445 (package
21446 (name "r-showtextdb")
21447 (version "3.0")
21448 (source
21449 (origin
21450 (method url-fetch)
21451 (uri (cran-uri "showtextdb" version))
21452 (sha256
21453 (base32
21454 "0hlnc3fhgrdkd46n7hb6id0gg1v0bf8s4679nrr7rchyp455szq2"))))
21455 (properties `((upstream-name . "showtextdb")))
21456 (build-system r-build-system)
21457 (propagated-inputs
21458 (list r-sysfonts))
21459 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
21460 (synopsis "Font files for the 'showtext' package")
21461 (description
21462 "This package provides font files that can be used by the @code{showtext}
21463 package.")
21464 (license license:asl2.0)))
21465
21466 (define-public r-showtext
21467 (package
21468 (name "r-showtext")
21469 (version "0.9-5")
21470 (source
21471 (origin
21472 (method url-fetch)
21473 (uri (cran-uri "showtext" version))
21474 (sha256
21475 (base32
21476 "1larnqxn9nanbqiadm35ah5hh89xrzm4fdj9pfc93zzzhlfrvhb3"))))
21477 (properties `((upstream-name . "showtext")))
21478 (build-system r-build-system)
21479 (inputs
21480 (list freetype libpng zlib))
21481 (propagated-inputs
21482 (list r-showtextdb r-sysfonts))
21483 (native-inputs
21484 (list pkg-config r-knitr))
21485 (home-page "https://github.com/yixuan/showtext")
21486 (synopsis "Using fonts more easily in R graphs")
21487 (description
21488 "This package aims to make it easy to use various types of
21489 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
21490 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
21491 will be converted into polygons or raster images, hence after the plot has
21492 been created, it no longer relies on the font files. No external software
21493 such as Ghostscript is needed to use this package.")
21494 (license license:asl2.0)))
21495
21496 (define-public r-emojifont
21497 (package
21498 (name "r-emojifont")
21499 (version "0.5.5")
21500 (source
21501 (origin
21502 (method url-fetch)
21503 (uri (cran-uri "emojifont" version))
21504 (sha256
21505 (base32
21506 "1hhrwilv36hd9gs1kcl2zsi6519md0h9aixjrm6lfclxvz8r6k1i"))))
21507 (properties `((upstream-name . "emojifont")))
21508 (build-system r-build-system)
21509 (propagated-inputs
21510 (list r-ggplot2 r-proto r-showtext r-sysfonts))
21511 (native-inputs
21512 (list r-knitr))
21513 (home-page "https://guangchuangyu.github.io/emojifont")
21514 (synopsis "Emoji and Font Awesome in R graphics")
21515 (description
21516 "This package enables the use of emoji and the Font Awesome glyphs in
21517 both base and ggplot2 graphics.")
21518 (license license:artistic2.0)))
21519
21520 (define-public r-abstractr
21521 (package
21522 (name "r-abstractr")
21523 (version "0.1.0")
21524 (source
21525 (origin
21526 (method url-fetch)
21527 (uri (cran-uri "abstractr" version))
21528 (sha256
21529 (base32
21530 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
21531 (properties `((upstream-name . "abstractr")))
21532 (build-system r-build-system)
21533 (propagated-inputs
21534 (list r-colourpicker
21535 r-emojifont
21536 r-ggplot2
21537 r-gridextra
21538 r-rintrojs
21539 r-shiny
21540 r-shinythemes))
21541 (home-page "https://matt-kumar.shinyapps.io/portfolio")
21542 (synopsis "R-Shiny application for creating visual abstracts")
21543 (description
21544 "This package provides an R Shiny application to create visual abstracts
21545 for original research. A variety of user defined options and formatting are
21546 included.")
21547 (license license:gpl3)))
21548
21549 (define-public r-qgam
21550 (package
21551 (name "r-qgam")
21552 (version "1.3.4")
21553 (source
21554 (origin
21555 (method url-fetch)
21556 (uri (cran-uri "qgam" version))
21557 (sha256
21558 (base32
21559 "1jyamamdffaks89rspyhmg18b4iik0nb1j0vgqzvfnm890514cvn"))))
21560 (properties `((upstream-name . "qgam")))
21561 (build-system r-build-system)
21562 (propagated-inputs
21563 (list r-doparallel r-mgcv r-plyr r-shiny))
21564 (native-inputs (list r-knitr))
21565 (home-page "https://cran.r-project.org/web/packages/qgam/")
21566 (synopsis "Smooth additive quantile regression models")
21567 (description
21568 "This package provides smooth additive quantile regression models, fitted
21569 using the methods of Fasiolo et al. (2017). Differently from @code{quantreg},
21570 the smoothing parameters are estimated automatically by marginal loss
21571 minimization, while the regression coefficients are estimated using either
21572 PIRLS or Newton algorithm. The learning rate is determined so that the
21573 Bayesian credible intervals of the estimated effects have approximately the
21574 correct coverage. The main function is @code{qgam()} which is similar to
21575 @code{gam()} in the @code{mgcv} package, but fits non-parametric quantile
21576 regression models.")
21577 (license license:gpl2+)))
21578
21579 (define-public r-abtest
21580 (package
21581 (name "r-abtest")
21582 (version "1.0.1")
21583 (source
21584 (origin
21585 (method url-fetch)
21586 (uri (cran-uri "abtest" version))
21587 (sha256
21588 (base32
21589 "0jz2ry5364p8h8xlk5a5sycn8xlpxd1iasfg99bcr4jqzd92jfqg"))))
21590 (properties `((upstream-name . "abtest")))
21591 (build-system r-build-system)
21592 (propagated-inputs
21593 (list r-matrix
21594 r-mvtnorm
21595 r-plotrix
21596 r-qgam
21597 r-rcolorbrewer
21598 r-rcpp
21599 r-sn
21600 r-truncnorm))
21601 (home-page "https://cran.r-project.org/web/packages/abtest/")
21602 (synopsis "Bayesian A/B testing")
21603 (description
21604 "This package provides functions for Bayesian A/B testing including prior
21605 elicitation options based on Kass and Vaidyanathan (1992)
21606 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
21607 (license license:gpl2+)))
21608
21609 (define-public r-reldist
21610 (package
21611 (name "r-reldist")
21612 (version "1.7-1")
21613 (source
21614 (origin
21615 (method url-fetch)
21616 (uri (cran-uri "reldist" version))
21617 (sha256
21618 (base32
21619 "17kbqqapqmckghv7jizibmicv3bzbycfr3mz4xg3yjp3c2bap4r6"))))
21620 (properties `((upstream-name . "reldist")))
21621 (build-system r-build-system)
21622 (propagated-inputs
21623 (list r-densestbayes r-mgcv))
21624 (home-page "http://www.stat.ucla.edu/~handcock/RelDist")
21625 (synopsis "Relative distribution methods")
21626 (description
21627 "This package provides tools for the comparison of distributions. This
21628 includes nonparametric estimation of the relative distribution PDF and CDF and
21629 numerical summaries as described in \"Relative Distribution Methods in the
21630 Social Sciences\" by Mark S. Handcock and Martina Morris, Springer-Verlag,
21631 1999, Springer-Verlag, ISBN 0387987789.")
21632 ;; See also https://cran.r-project.org/web/packages/reldist/LICENSE for
21633 ;; attribution requirements.
21634 (license license:gpl3)))
21635
21636 (define-public r-accept
21637 (package
21638 (name "r-accept")
21639 (version "0.9.0")
21640 (source
21641 (origin
21642 (method url-fetch)
21643 (uri (cran-uri "accept" version))
21644 (sha256
21645 (base32
21646 "13kx8fbnbpasjklgbq2rf4n73j2s8rvy5v77ywqhfzln24937qgh"))))
21647 (properties `((upstream-name . "accept")))
21648 (build-system r-build-system)
21649 (propagated-inputs
21650 (list r-dplyr r-reldist))
21651 (home-page "https://cran.r-project.org/web/packages/accept/")
21652 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
21653 (description
21654 "This package allows clinicians to predict the rate and severity of
21655 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
21656 Disease} (COPD) patients, based on the clinical prediction model published in
21657 Adibi et al. (2019) @url{doi:10.1101/651901}.")
21658 (license license:gpl3)))
21659
21660 (define-public r-smpracticals
21661 (package
21662 (name "r-smpracticals")
21663 (version "1.4-3")
21664 (source
21665 (origin
21666 (method url-fetch)
21667 (uri (cran-uri "SMPracticals" version))
21668 (sha256
21669 (base32
21670 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
21671 (properties `((upstream-name . "SMPracticals")))
21672 (build-system r-build-system)
21673 (propagated-inputs
21674 (list r-ellipse r-mass r-nlme r-survival))
21675 (home-page "http://statwww.epfl.ch/davison/SM/")
21676 (synopsis "Practicals for use with Davison (2003) Statistical Models")
21677 (description
21678 "This package contains the datasets and a few functions for use with the
21679 practicals outlined in Appendix A of the book Statistical Models (Davison,
21680 2003, Cambridge University Press). The practicals themselves can be found at
21681 @url{http://statwww.epfl.ch/davison/SM/}.")
21682 (license license:gpl2+)))
21683
21684 (define-public r-fgui
21685 (package
21686 (name "r-fgui")
21687 (version "1.0-8")
21688 (source
21689 (origin
21690 (method url-fetch)
21691 (uri (cran-uri "fgui" version))
21692 (sha256
21693 (base32
21694 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
21695 (properties `((upstream-name . "fgui")))
21696 (build-system r-build-system)
21697 (home-page
21698 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
21699 (synopsis "Create GUI for R functions")
21700 (description
21701 "Rapidly create a GUI for a function you created by automatically
21702 creating widgets for arguments of the function. This package automatically
21703 parses help routines for context-sensitive help to these arguments. The
21704 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
21705 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
21706 incorporated into the interface for greater customization for the more
21707 experienced.")
21708 ;; Any version of the GPL.
21709 (license (list license:gpl2+ license:gpl3+))))
21710
21711 (define-public r-tcltk2
21712 (package
21713 (name "r-tcltk2")
21714 (version "1.2-11")
21715 (source
21716 (origin
21717 (method url-fetch)
21718 (uri (cran-uri "tcltk2" version))
21719 (sha256
21720 (base32
21721 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
21722 (properties `((upstream-name . "tcltk2")))
21723 (build-system r-build-system)
21724 (inputs
21725 (list tcl tk))
21726 (home-page "https://www.sciviews.org/SciViews-R")
21727 (synopsis "Tcl/Tk additions")
21728 (description
21729 "This package provides a series of additional Tcl commands and Tk widgets
21730 with style and various functions to supplement the tcltk package")
21731 (license license:lgpl3)))
21732
21733 (define-public r-accrual
21734 (package
21735 (name "r-accrual")
21736 (version "1.3")
21737 (source
21738 (origin
21739 (method url-fetch)
21740 (uri (cran-uri "accrual" version))
21741 (sha256
21742 (base32
21743 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
21744 (properties `((upstream-name . "accrual")))
21745 (build-system r-build-system)
21746 (propagated-inputs
21747 (list r-fgui r-smpracticals r-tcltk2))
21748 (home-page "https://cran.r-project.org/web/packages/accrual/")
21749 (synopsis "Bayesian accrual prediction")
21750 (description
21751 "Subject recruitment for medical research is challenging. Slow patient
21752 accrual leads to delay in research. Accrual monitoring during the process of
21753 recruitment is critical. Researchers need reliable tools to manage the
21754 accrual rate. This package provides an implementation of a Bayesian method
21755 that integrates researcher's experience on previous trials and data from the
21756 current study, providing reliable prediction on accrual rate for clinical
21757 studies. It provides functions for Bayesian accrual prediction which can be
21758 easily used by statisticians and clinical researchers.")
21759 (license license:gpl2)))
21760
21761 (define-public r-accrued
21762 (package
21763 (name "r-accrued")
21764 (version "1.4.1")
21765 (source
21766 (origin
21767 (method url-fetch)
21768 (uri (cran-uri "accrued" version))
21769 (sha256
21770 (base32
21771 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
21772 (properties `((upstream-name . "accrued")))
21773 (build-system r-build-system)
21774 (home-page "https://cran.r-project.org/web/packages/accrued/")
21775 (synopsis "Data quality visualization tools for partially accruing data")
21776 (description
21777 "This is a package for visualizing data quality of partially accruing
21778 data.")
21779 (license license:gpl3)))
21780
21781 (define-public r-mda
21782 (package
21783 (name "r-mda")
21784 (version "0.5-3")
21785 (source
21786 (origin
21787 (method url-fetch)
21788 (uri (cran-uri "mda" version))
21789 (sha256
21790 (base32
21791 "0qw4scc2w7jmnxssj5w2mdxb9rrl4dscqn54gplzm1gk2yf419mx"))))
21792 (properties `((upstream-name . "mda")))
21793 (build-system r-build-system)
21794 (propagated-inputs (list r-class))
21795 (native-inputs (list gfortran))
21796 (home-page "https://cran.r-project.org/web/packages/mda/")
21797 (synopsis "Mixture and flexible discriminant analysis")
21798 (description
21799 "This is a package for mixture and flexible discriminant analysis,
21800 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
21801 (license license:gpl2)))
21802
21803 (define-public r-elasticnet
21804 (package
21805 (name "r-elasticnet")
21806 (version "1.3")
21807 (source
21808 (origin
21809 (method url-fetch)
21810 (uri (cran-uri "elasticnet" version))
21811 (sha256
21812 (base32
21813 "0nxcw06d0cp2mbqzg2fm9yys5xm6xx7bfcfvr0avcs8afkvz29j8"))))
21814 (properties `((upstream-name . "elasticnet")))
21815 (build-system r-build-system)
21816 (propagated-inputs
21817 (list r-lars))
21818 (home-page "http://users.stat.umn.edu/~zouxx019/")
21819 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
21820 (description
21821 "This package provides functions for fitting the entire solution path of
21822 the Elastic-Net and also provides functions for estimating sparse Principal
21823 Components. The Lasso solution paths can be computed by the same function.")
21824 (license license:gpl2+)))
21825
21826 (define-public r-sparselda
21827 (package
21828 (name "r-sparselda")
21829 (version "0.1-9")
21830 (source
21831 (origin
21832 (method url-fetch)
21833 (uri (cran-uri "sparseLDA" version))
21834 (sha256
21835 (base32
21836 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
21837 (properties `((upstream-name . "sparseLDA")))
21838 (build-system r-build-system)
21839 (propagated-inputs
21840 (list r-elasticnet r-mass r-mda))
21841 (home-page "https://www.imm.dtu.dk/~lkhc/")
21842 (synopsis "Sparse discriminant analysis")
21843 (description
21844 "This package performs sparse linear discriminant analysis for Gaussians
21845 and mixture of Gaussian models.")
21846 (license license:gpl2+)))
21847
21848 (define-public r-accsda
21849 (package
21850 (name "r-accsda")
21851 (version "1.1.1")
21852 (source
21853 (origin
21854 (method url-fetch)
21855 (uri (cran-uri "accSDA" version))
21856 (sha256
21857 (base32
21858 "104xdz63mnibh6827xm0pfr9zbhbi2a7iw4m1x27xjqi7zqvbky6"))))
21859 (properties `((upstream-name . "accSDA")))
21860 (build-system r-build-system)
21861 (propagated-inputs
21862 (list r-ggplot2
21863 r-ggthemes
21864 r-gridextra
21865 r-mass))
21866 (home-page "https://github.com/gumeo/accSDA/wiki")
21867 (synopsis "Accelerated sparse discriminant analysis")
21868 (description
21869 "This package provides an implementation of sparse linear discriminant
21870 analysis, which is a supervised classification method for multiple classes.
21871 Various novel optimization approaches to this problem are implemented
21872 including @dfn{alternating direction method of multipliers} (ADMM),
21873 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
21874 Functions for performing cross validation are also supplied along with basic
21875 prediction and plotting functions. @dfn{Sparse zero variance
21876 discriminant} (SZVD) analysis is also included in the package.")
21877 (license license:gpl2+)))
21878
21879 (define-public r-ace2fastq
21880 (package
21881 (name "r-ace2fastq")
21882 (version "0.6.0")
21883 (source
21884 (origin
21885 (method url-fetch)
21886 (uri (cran-uri "ace2fastq" version))
21887 (sha256
21888 (base32
21889 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
21890 (properties `((upstream-name . "ace2fastq")))
21891 (build-system r-build-system)
21892 (propagated-inputs
21893 (list r-stringr))
21894 (home-page "https://github.com/c5sire/ace2fastq")
21895 (synopsis "ACE file to FASTQ converter")
21896 (description
21897 "The ACE file format is used in genomics to store contigs from sequencing
21898 machines. This tools converts it into FASTQ format. Both formats contain the
21899 sequence characters and their corresponding quality information. Unlike the
21900 FASTQ file, the ACE file stores the quality values numerically. The
21901 conversion algorithm uses the standard Sanger formula. The package
21902 facilitates insertion into pipelines, and content inspection.")
21903 (license license:gpl3)))
21904
21905 (define-public r-rngwell
21906 (package
21907 (name "r-rngwell")
21908 (version "0.10-7")
21909 (source
21910 (origin
21911 (method url-fetch)
21912 (uri (cran-uri "rngWELL" version))
21913 (sha256
21914 (base32
21915 "0f1dxxaimfb0fww8ym9ciqf6q760ai46wxldl37m5mfpd57ca00c"))))
21916 (properties `((upstream-name . "rngWELL")))
21917 (build-system r-build-system)
21918 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
21919 (synopsis "Toolbox for WELL random number generators")
21920 (description
21921 "This is a dedicated package to WELL pseudo random generators, which were
21922 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
21923 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
21924 (license license:bsd-3)))
21925
21926 (define-public r-rnmf
21927 (package
21928 (name "r-rnmf")
21929 (version "0.5.0")
21930 (source (origin
21931 (method url-fetch)
21932 (uri (cran-uri "rNMF" version))
21933 (sha256
21934 (base32
21935 "1nz6h0j5ywdh48m0swmhp34hbkycd7n13rclrxaw85qi9wc42597"))))
21936 (build-system r-build-system)
21937 (propagated-inputs
21938 (list r-knitr r-nnls))
21939 (home-page "https://cran.r-project.org/web/packages/rNMF/")
21940 (synopsis "Robust nonnegative matrix factorization")
21941 (description
21942 "This package provides an implementation of robust nonnegative matrix
21943 factorization (rNMF). The rNMF algorithm decomposes a nonnegative high
21944 dimension data matrix into the product of two low rank nonnegative matrices,
21945 while detecting and trimming outliers. The main function is @code{rnmf()}.
21946 The package also includes a visualization tool, @code{see()}, that arranges
21947 and prints vectorized images.")
21948 (license license:gpl2+)))
21949
21950 (define-public r-randtoolbox
21951 (package
21952 (name "r-randtoolbox")
21953 (version "2.0.0")
21954 (source
21955 (origin
21956 (method url-fetch)
21957 (uri (cran-uri "randtoolbox" version))
21958 (sha256
21959 (base32
21960 "005x2igljc6vm0nsmkld9aqjqz1ccwapc8z3aw5c3ivh4n2bghf9"))))
21961 (properties `((upstream-name . "randtoolbox")))
21962 (build-system r-build-system)
21963 (propagated-inputs
21964 (list r-rngwell))
21965 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
21966 (synopsis "Toolbox for pseudo and quasi random number generation")
21967 (description
21968 "This package provides
21969
21970 @enumerate
21971 @item pseudo random generators, such as general linear
21972 congruential generators, multiple recursive generators and generalized
21973 feedback shift register (SF-Mersenne Twister algorithm and WELL
21974 generators)
21975
21976 @item quasi random generators, such as the Torus algorithm, the Sobol
21977 sequence, the Halton sequence (including the Van der Corput sequence), and
21978
21979 @item some generator tests: the gap test, the serial test, the poker test.
21980 @end enumerate
21981
21982 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
21983 (license license:bsd-3)))
21984
21985 (define-public r-lhs
21986 (package
21987 (name "r-lhs")
21988 (version "1.1.5")
21989 (source
21990 (origin
21991 (method url-fetch)
21992 (uri (cran-uri "lhs" version))
21993 (sha256
21994 (base32
21995 "0fb3bc3s5pbwg92qkjbg7v8ah36wm6qs05vf098hwjakr7f6yg3s"))))
21996 (properties `((upstream-name . "lhs")))
21997 (build-system r-build-system)
21998 (propagated-inputs (list r-rcpp))
21999 (native-inputs
22000 (list r-knitr))
22001 (home-page "https://github.com/bertcarnell/lhs")
22002 (synopsis "Latin Hypercube Samples")
22003 (description
22004 "This package provides a number of methods for creating and augmenting
22005 Latin Hypercube Samples.")
22006 (license license:gpl3)))
22007
22008 (define-public r-acebayes
22009 (package
22010 (name "r-acebayes")
22011 (version "1.10")
22012 (source
22013 (origin
22014 (method url-fetch)
22015 (uri (cran-uri "acebayes" version))
22016 (sha256
22017 (base32
22018 "11bffz430gdfdaxjx3simig66vhynmx6l1ylac4q2shcmj52nx73"))))
22019 (properties `((upstream-name . "acebayes")))
22020 (build-system r-build-system)
22021 (propagated-inputs
22022 (list r-compare r-lhs r-randtoolbox r-rcpp r-rcpparmadillo))
22023 (home-page "https://cran.r-project.org/web/packages/acebayes/")
22024 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
22025 (description
22026 "Finding an optimal Bayesian experimental design involves maximizing an
22027 objective function given by the expectation of some appropriately chosen
22028 utility function with respect to the joint distribution of unknown
22029 quantities (including responses). This objective function is usually not
22030 available in closed form and the design space can be continuous and of high
22031 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
22032 to maximise an approximation to the expectation of the utility function.")
22033 (license license:gpl2)))
22034
22035 (define-public r-acet
22036 (package
22037 (name "r-acet")
22038 (version "1.8.1")
22039 (source
22040 (origin
22041 (method url-fetch)
22042 (uri (cran-uri "ACEt" version))
22043 (sha256
22044 (base32
22045 "0b5lfpnppyk0237phr2aybhx29nhm8ngwk2qa1y4lshrvsw97wg4"))))
22046 (properties `((upstream-name . "ACEt")))
22047 (build-system r-build-system)
22048 (propagated-inputs
22049 (list r-bh r-mass r-rcpp r-rcpparmadillo))
22050 (home-page "https://cran.r-project.org/web/packages/ACEt/")
22051 (synopsis "Estimating dynamic heritability and twin model comparison")
22052 (description
22053 "This package supports twin models that are able to estimate the dynamic
22054 behaviour of the variance components in the classical twin models with respect
22055 to age using B-splines and P-splines.")
22056 (license license:gpl2+)))
22057
22058 (define-public r-acfmperiod
22059 (package
22060 (name "r-acfmperiod")
22061 (version "1.0.0")
22062 (source
22063 (origin
22064 (method url-fetch)
22065 (uri (cran-uri "acfMPeriod" version))
22066 (sha256
22067 (base32
22068 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
22069 (properties `((upstream-name . "acfMPeriod")))
22070 (build-system r-build-system)
22071 (propagated-inputs
22072 (list r-mass))
22073 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
22074 (synopsis "Estimation of the ACF from the M-periodogram")
22075 (description
22076 "This package support non-robust and robust computations of the sample
22077 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
22078 univariate and multivariate processes. The methodology consists in reversing
22079 the diagonalization procedure involving the periodogram or the
22080 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
22081 ACOVF or the ACF as discussed in Fuller (1995)
22082 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
22083 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
22084 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
22085 (license license:gpl2+)))
22086
22087 (define-public r-gamlss-data
22088 (package
22089 (name "r-gamlss-data")
22090 (version "6.0-2")
22091 (source
22092 (origin
22093 (method url-fetch)
22094 (uri (cran-uri "gamlss.data" version))
22095 (sha256
22096 (base32
22097 "07mpdl4h9rwmnpl9jmsn6ig8ji11an6pyjfsvg62h2alapwbdcyv"))))
22098 (properties `((upstream-name . "gamlss.data")))
22099 (build-system r-build-system)
22100 (home-page "http://www.gamlss.org/")
22101 (synopsis "GAMLSS data")
22102 (description
22103 "This package provides data used as examples to demonstrate GAMLSS
22104 models.")
22105 ;; Either version of the license
22106 (license (list license:gpl2 license:gpl3))))
22107
22108 (define-public r-gamlss
22109 (package
22110 (name "r-gamlss")
22111 (version "5.4-3")
22112 (source
22113 (origin
22114 (method url-fetch)
22115 (uri (cran-uri "gamlss" version))
22116 (sha256
22117 (base32
22118 "0xih19zqgpjl5qv5j38ana6x29y84shn2jfl2lk4kaw3q7yx86b6"))))
22119 (properties `((upstream-name . "gamlss")))
22120 (build-system r-build-system)
22121 (propagated-inputs
22122 (list r-gamlss-data r-gamlss-dist r-mass r-nlme r-survival))
22123 (home-page "http://www.gamlss.org/")
22124 (synopsis "Generalized additive models for location scale and shape")
22125 (description
22126 "This package provides functions for fitting the generalized additive
22127 models for location scale and shape introduced by Rigby and
22128 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
22129 use a distributional regression approach where all the parameters of the
22130 conditional distribution of the response variable are modelled using
22131 explanatory variables.")
22132 ;; Either version of the license
22133 (license (list license:gpl2 license:gpl3))))
22134
22135 (define-public r-acid
22136 (package
22137 (name "r-acid")
22138 (version "1.1")
22139 (source
22140 (origin
22141 (method url-fetch)
22142 (uri (cran-uri "acid" version))
22143 (sha256
22144 (base32
22145 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
22146 (properties `((upstream-name . "acid")))
22147 (build-system r-build-system)
22148 (propagated-inputs
22149 (list r-gamlss r-gamlss-dist r-hmisc))
22150 (home-page "https://cran.r-project.org/web/packages/acid/")
22151 (synopsis "Analysing conditional income distributions")
22152 (description
22153 "This package provides functions for the analysis of income distributions
22154 for subgroups of the population as defined by a set of variables like age,
22155 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
22156 distribution as well as functions for moments, inequality measures, entropy
22157 measures and polarisation measures of income distributions. This package thus
22158 aides the analysis of income inequality by offering tools for the exploratory
22159 analysis of income distributions at the disaggregated level.")
22160 (license license:gpl3)))
22161
22162 (define-public r-acm4r
22163 (package
22164 (name "r-acm4r")
22165 (version "1.0")
22166 (source
22167 (origin
22168 (method url-fetch)
22169 (uri (cran-uri "acm4r" version))
22170 (sha256
22171 (base32
22172 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
22173 (properties `((upstream-name . "acm4r")))
22174 (build-system r-build-system)
22175 (propagated-inputs (list r-mass))
22176 (home-page "https://cran.r-project.org/web/packages/acm4r/")
22177 (synopsis "Align-and-count method comparisons of RFLP data")
22178 (description
22179 "This is a package to compare sequence fragment lengths or molecular
22180 weights from pairs of lanes. The number of matching bands in the
22181 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
22182 the align-and-count method.")
22183 ;; Any version of the GPL
22184 (license (list license:gpl2+ license:gpl3+))))
22185
22186 (define-public r-filelock
22187 (package
22188 (name "r-filelock")
22189 (version "1.0.2")
22190 (source
22191 (origin
22192 (method url-fetch)
22193 (uri (cran-uri "filelock" version))
22194 (sha256
22195 (base32
22196 "00ql5fw1hidpfnm0szaavf43ahmsnvdbi8i5lr1nrcc90yaiaadc"))))
22197 (properties `((upstream-name . "filelock")))
22198 (build-system r-build-system)
22199 (home-page "https://github.com/r-lib/filelock")
22200 (synopsis "Portable file locking")
22201 (description
22202 "This library lets you place an exclusive or shared lock on a file using
22203 the appropriate system call provided by the underlying operating system.")
22204 (license license:expat)))
22205
22206 (define-public r-filematrix
22207 (package
22208 (name "r-filematrix")
22209 (version "1.3")
22210 (source
22211 (origin
22212 (method url-fetch)
22213 (uri (cran-uri "filematrix" version))
22214 (sha256
22215 (base32
22216 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
22217 (properties `((upstream-name . "filematrix")))
22218 (build-system r-build-system)
22219 ;; These inputs are needed for vignettes
22220 (native-inputs
22221 (list r-knitr r-rmarkdown))
22222 (home-page "https://github.com/andreyshabalin/filematrix")
22223 (synopsis "File-backed matrix class with convenient read and write access")
22224 (description
22225 "This package provides an interface for working with large matrices
22226 stored in files, not in computer memory. It supports multiple non-character
22227 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
22228 byte real values). Access to parts of the matrix is done by indexing, exactly
22229 as with usual R matrices. It supports very large matrices; the package has
22230 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
22231 columns, ad allows for quick addition of extra columns to a filematrix.")
22232 (license license:lgpl3)))
22233
22234 (define-public r-acmeeqtl
22235 (package
22236 (name "r-acmeeqtl")
22237 (version "1.6")
22238 (source
22239 (origin
22240 (method url-fetch)
22241 (uri (cran-uri "ACMEeqtl" version))
22242 (sha256
22243 (base32
22244 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
22245 (properties `((upstream-name . "ACMEeqtl")))
22246 (build-system r-build-system)
22247 (propagated-inputs
22248 (list r-filematrix))
22249 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
22250 (synopsis "Estimation of interpretable eQTL effect sizes")
22251 (description
22252 "This package provides a non-linear model, termed ACME, that reflects a
22253 parsimonious biological model for allelic contributions of cis-acting eQTLs.
22254 With non-linear least-squares algorithm the maximum likelihood parameters can
22255 be estimated. The ACME model provides interpretable effect size estimates and
22256 p-values with well controlled Type-I error.")
22257 (license license:lgpl3)))
22258
22259 (define-public r-acmer
22260 (package
22261 (name "r-acmer")
22262 (version "1.1.0")
22263 (source
22264 (origin
22265 (method url-fetch)
22266 (uri (cran-uri "acmeR" version))
22267 (sha256
22268 (base32
22269 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
22270 (properties `((upstream-name . "acmeR")))
22271 (build-system r-build-system)
22272 (propagated-inputs (list r-foreign))
22273 (home-page "https://cran.r-project.org/web/packages/acmeR/")
22274 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
22275 (description
22276 "This package provides an implementation of the ACME estimator, described
22277 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
22278 Mortality at Wind Turbines. Unlike most other models, this estimator supports
22279 decreasing-hazard Weibull model for persistence; decreasing search proficiency
22280 as carcasses age; variable bleed-through at successive searches; and interval
22281 mortality estimates. The package provides, based on search data, functions
22282 for estimating the mortality inflation factor in Frequentist and Bayesian
22283 settings.")
22284 (license license:expat)))
22285
22286 (define-public r-r-huge
22287 (package
22288 (name "r-r-huge")
22289 (version "0.9.0")
22290 (source
22291 (origin
22292 (method url-fetch)
22293 (uri (cran-uri "R.huge" version))
22294 (sha256
22295 (base32
22296 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
22297 (properties `((upstream-name . "R.huge")))
22298 (build-system r-build-system)
22299 (propagated-inputs
22300 (list r-r-methodss3 r-r-oo r-r-utils))
22301 (home-page "https://github.com/HenrikBengtsson/R.huge")
22302 (synopsis "Methods for accessing huge amounts of data")
22303 (description
22304 "This is a deprecated package for accessing huge amounts of data.
22305 Cross-platform alternatives are the following packages: bigmemory (CRAN),
22306 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
22307 the @code{aroma.affymetrix} package.")
22308 (license license:lgpl2.1+)))
22309
22310 (define-public r-r-filesets
22311 (package
22312 (name "r-r-filesets")
22313 (version "2.14.0")
22314 (source
22315 (origin
22316 (method url-fetch)
22317 (uri (cran-uri "R.filesets" version))
22318 (sha256
22319 (base32
22320 "08xv8b3c81nf54viyr3w912al18483k5gfnjpg7bxbdfk70dfzbh"))))
22321 (properties `((upstream-name . "R.filesets")))
22322 (build-system r-build-system)
22323 (arguments
22324 '(#:phases
22325 (modify-phases %standard-phases
22326 (add-after 'unpack 'set-HOME
22327 (lambda _ (setenv "HOME" "/tmp"))))))
22328 (propagated-inputs
22329 (list r-digest r-r-cache r-r-methodss3 r-r-oo r-r-utils))
22330 (home-page "https://github.com/HenrikBengtsson/R.filesets")
22331 (synopsis "Easy handling of and access to files")
22332 (description
22333 "This package provides classes and methods to locate, setup, subset,
22334 navigate and iterate file sets, i.e. sets of files located in one or more
22335 directories on the file system. The API is designed such that these classes
22336 can be extended via inheritance to provide a richer API for special file
22337 formats. Moreover, a specific name format is defined such that filenames and
22338 directories can be considered to have full names which consists of a name
22339 followed by comma-separated tags. This adds additional flexibility to
22340 identify file sets and individual files.")
22341 (license license:lgpl2.1+)))
22342
22343 (define-public r-r-devices
22344 (package
22345 (name "r-r-devices")
22346 (version "2.17.0")
22347 (source
22348 (origin
22349 (method url-fetch)
22350 (uri (cran-uri "R.devices" version))
22351 (sha256
22352 (base32
22353 "1djz6vm1b7sjvx1q319dl47gbnz9kvipaxcz9i0spyp094lv3m62"))))
22354 (properties `((upstream-name . "R.devices")))
22355 (build-system r-build-system)
22356 (propagated-inputs
22357 (list r-base64enc r-r-methodss3 r-r-oo r-r-utils))
22358 (home-page "https://github.com/HenrikBengtsson/R.devices")
22359 (synopsis "Unified handling of graphics devices")
22360 (description
22361 "This package provides functions for creating plots and image files in a
22362 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
22363 Default device options as well as scales and aspect ratios are controlled in a
22364 uniform way across all device types. Switching output format requires minimal
22365 changes in code. This package is ideal for large-scale batch processing,
22366 because it will never leave open graphics devices or incomplete image files
22367 behind, even on errors or user interrupts.")
22368 (license license:lgpl2.1+)))
22369
22370 (define-public r-acnr
22371 (package
22372 (name "r-acnr")
22373 (version "1.0.0")
22374 (source
22375 (origin
22376 (method url-fetch)
22377 (uri (cran-uri "acnr" version))
22378 (sha256
22379 (base32
22380 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
22381 (properties `((upstream-name . "acnr")))
22382 (build-system r-build-system)
22383 (home-page "https://github.com/mpierrejean/acnr")
22384 (synopsis "Annotated copy-number regions")
22385 (description
22386 "This package provides SNP array data from different types of copy-number
22387 regions. These regions were identified manually by the authors of the package
22388 and may be used to generate realistic data sets with known truth.")
22389 (license license:lgpl2.1+)))
22390
22391 (define-public r-acopula
22392 (package
22393 (name "r-acopula")
22394 (version "0.9.3")
22395 (source
22396 (origin
22397 (method url-fetch)
22398 (uri (cran-uri "acopula" version))
22399 (sha256
22400 (base32
22401 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
22402 (properties `((upstream-name . "acopula")))
22403 (build-system r-build-system)
22404 (home-page "https://cran.r-project.org/web/packages/acopula/")
22405 (synopsis "Modelling dependence with multivariate Archimax copulas")
22406 (description
22407 "Archimax copulas are a mixture of Archimedean and EV copulas. This
22408 package provides definitions of several parametric families of generator and
22409 dependence function, computes CDF and PDF, estimates parameters, tests for
22410 goodness of fit, generates random sample and checks copula properties for
22411 custom constructs. In the 2-dimensional case explicit formulas for density
22412 are used, contrary to higher dimensions when all derivatives are linearly
22413 approximated. Several non-archimax families (normal, FGM, Plackett) are
22414 provided as well.")
22415 (license license:gpl2)))
22416
22417 (define-public r-tuner
22418 (package
22419 (name "r-tuner")
22420 (version "1.4.0")
22421 (source
22422 (origin
22423 (method url-fetch)
22424 (uri (cran-uri "tuneR" version))
22425 (sha256
22426 (base32
22427 "1sd0drxzbdy71bh35fccg9ajhpdhdpy0m9nja2lw82p1pzhyl7jn"))))
22428 (properties `((upstream-name . "tuneR")))
22429 (build-system r-build-system)
22430 (propagated-inputs (list r-signal))
22431 (home-page "https://cran.r-project.org/web/packages/tuneR/")
22432 (synopsis "Analysis of music and speech")
22433 (description
22434 "This is a package for the analysis of music and speech. Analyze music
22435 and speech, extract features like MFCCs, handle wave files and their
22436 representation in various ways, read MP3, read MIDI, perform steps of a
22437 transcription, ...")
22438 ;; Either of these versions.
22439 (license (list license:gpl2 license:gpl3))))
22440
22441 (define-public r-seewave
22442 (package
22443 (name "r-seewave")
22444 (version "2.2.0")
22445 (source
22446 (origin
22447 (method url-fetch)
22448 (uri (cran-uri "seewave" version))
22449 (sha256
22450 (base32
22451 "0bi1l47l3846c18k6h2vrv0xp9xh00n544a578jrndahzrj1hfwl"))))
22452 (properties `((upstream-name . "seewave")))
22453 (build-system r-build-system)
22454 (inputs
22455 (list libsndfile))
22456 (propagated-inputs
22457 (list r-tuner))
22458 (home-page "http://rug.mnhn.fr/seewave")
22459 (synopsis "Sound analysis and synthesis")
22460 (description
22461 "This package provides functions for analysing, manipulating, displaying,
22462 editing and synthesizing time waves (particularly sound). This package
22463 processes time analysis (oscillograms and envelopes), spectral content,
22464 resonance quality factor, entropy, cross correlation and autocorrelation,
22465 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
22466 and 3D spectrograms and many other analyses.")
22467 (license license:gpl2+)))
22468
22469 (define-public r-acousticndlcoder
22470 (package
22471 (name "r-acousticndlcoder")
22472 (version "1.0.2")
22473 (source
22474 (origin
22475 (method url-fetch)
22476 (uri (cran-uri "AcousticNDLCodeR" version))
22477 (sha256
22478 (base32
22479 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
22480 (properties
22481 `((upstream-name . "AcousticNDLCodeR")))
22482 (build-system r-build-system)
22483 (propagated-inputs
22484 (list r-seewave r-tuner r-zoo))
22485 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
22486 (synopsis "Coding sound files for use with NDL")
22487 (description
22488 "Make acoustic cues to use with the R package @code{ndl}.
22489 The package implements functions used in the PLoS ONE paper \"Words from
22490 spontaneous conversational speech can be recognized with human-like accuracy
22491 by an error-driven learning algorithm that discriminates between meanings
22492 straight from smart acoustic features, bypassing the phoneme as recognition
22493 unit.\" @url{doi:10.1371/journal.pone.0174623}")
22494 (license license:gpl2+)))
22495
22496 (define-public r-acp
22497 (package
22498 (name "r-acp")
22499 (version "2.1")
22500 (source
22501 (origin
22502 (method url-fetch)
22503 (uri (cran-uri "acp" version))
22504 (sha256
22505 (base32
22506 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
22507 (properties `((upstream-name . "acp")))
22508 (build-system r-build-system)
22509 (propagated-inputs
22510 (list r-quantmod r-tseries))
22511 (home-page "https://cran.r-project.org/web/packages/acp/")
22512 (synopsis "Autoregressive conditional Poisson")
22513 (description
22514 "This package supports the analysis of count data exhibiting
22515 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
22516 model (ACP(p,q)) proposed by Heinen (2003).")
22517 (license license:gpl2)))
22518
22519 (define-public r-ada
22520 (package
22521 (name "r-ada")
22522 (version "2.0-5")
22523 (source
22524 (origin
22525 (method url-fetch)
22526 (uri (cran-uri "ada" version))
22527 (sha256
22528 (base32
22529 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
22530 (properties `((upstream-name . "ada")))
22531 (build-system r-build-system)
22532 (propagated-inputs (list r-rpart))
22533 (home-page "https://cran.r-project.org/web/packages/ada/")
22534 (synopsis "Stochastic boosting")
22535 (description
22536 "This package provides a straightforward, well-documented, and broad
22537 boosting routine for classification, ideally suited for small to
22538 moderate-sized data sets. It performs discrete, real, and gentle boost under
22539 both exponential and logistic loss on a given data set.")
22540 ;; Any version of the GPL.
22541 (license (list license:gpl2+ license:gpl3+))))
22542
22543 (define-public r-genalg
22544 (package
22545 (name "r-genalg")
22546 (version "0.2.1")
22547 (source
22548 (origin
22549 (method url-fetch)
22550 (uri (cran-uri "genalg" version))
22551 (sha256
22552 (base32
22553 "1y4qz1s85zpd1r3259gr542arssf2vpd4drhy0wnq5q47ignrvna"))))
22554 (properties `((upstream-name . "genalg")))
22555 (build-system r-build-system)
22556 (home-page "https://github.com/egonw/genalg")
22557 (synopsis "R based genetic algorithm")
22558 (description
22559 "This package provides an R based genetic algorithm for binary and
22560 floating point chromosomes.")
22561 (license license:gpl2)))
22562
22563 (define-public r-kernelfactory
22564 (package
22565 (name "r-kernelfactory")
22566 (version "0.3.0")
22567 (source
22568 (origin
22569 (method url-fetch)
22570 (uri (cran-uri "kernelFactory" version))
22571 (sha256
22572 (base32
22573 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
22574 (properties `((upstream-name . "kernelFactory")))
22575 (build-system r-build-system)
22576 (propagated-inputs
22577 (list r-auc r-genalg r-kernlab r-randomforest))
22578 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
22579 (synopsis "Ensemble of kernel machines")
22580 (description
22581 "Kernel factory is an ensemble method where each base classifier (random
22582 forest) is fit on the kernel matrix of a subset of the training data.")
22583 (license license:gpl2+)))
22584
22585 (define-public r-dummies
22586 (package
22587 (name "r-dummies")
22588 (version "1.5.6")
22589 (source
22590 (origin
22591 (method url-fetch)
22592 (uri (cran-uri "dummies" version))
22593 (sha256
22594 (base32
22595 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
22596 (properties `((upstream-name . "dummies")))
22597 (build-system r-build-system)
22598 (home-page "https://decisionpatterns.com")
22599 (synopsis "Create dummy/indicator variables flexibly and efficiently")
22600 (description
22601 "This package lets you expand factors, characters and other eligible
22602 classes into dummy/indicator variables.")
22603 (license license:gpl2+)))
22604
22605 (define-public r-acrm
22606 (package
22607 (name "r-acrm")
22608 (version "0.1.1")
22609 (source
22610 (origin
22611 (method url-fetch)
22612 (uri (cran-uri "aCRM" version))
22613 (sha256
22614 (base32
22615 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
22616 (properties `((upstream-name . "aCRM")))
22617 (build-system r-build-system)
22618 (propagated-inputs
22619 (list r-ada r-dummies r-kernelfactory r-randomforest))
22620 (home-page "https://cran.r-project.org/web/packages/aCRM/")
22621 (synopsis "Convenience functions for analytical customer relationship management")
22622 (description
22623 "This package provides convenience functions for data preparation and
22624 modeling often used in @dfn{analytical customer relationship
22625 management} (aCRM).")
22626 (license license:gpl2+)))
22627
22628 (define-public r-tree
22629 (package
22630 (name "r-tree")
22631 (version "1.0-41")
22632 (source (origin
22633 (method url-fetch)
22634 (uri (cran-uri "tree" version))
22635 (sha256
22636 (base32
22637 "13jwdxx3na16mly176n01zdkaqn4a8x9fc43rq5xx5vx31drkkr1"))))
22638 (build-system r-build-system)
22639 (home-page "https://cran.r-project.org/web/packages/tree/")
22640 (synopsis "Classification and regression trees")
22641 (description "This package provides procedures to work with classification
22642 and regression trees.")
22643 (license license:gpl2+)))
22644
22645 (define-public r-treeclust
22646 (package
22647 (name "r-treeclust")
22648 (version "1.1-7")
22649 (source
22650 (origin
22651 (method url-fetch)
22652 (uri (cran-uri "treeClust" version))
22653 (sha256
22654 (base32
22655 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
22656 (properties `((upstream-name . "treeClust")))
22657 (build-system r-build-system)
22658 (propagated-inputs
22659 (list r-cluster r-rpart))
22660 (home-page "https://cran.r-project.org/web/packages/treeClust/")
22661 (synopsis "Cluster distances through trees")
22662 (description
22663 "This package provides tools to create a measure of inter-point
22664 dissimilarity useful for clustering mixed data, and, optionally, perform the
22665 clustering.")
22666 (license license:gpl2+)))
22667
22668 (define-public r-acrosstic
22669 (package
22670 (name "r-acrosstic")
22671 (version "1.0-3")
22672 (source
22673 (origin
22674 (method url-fetch)
22675 (uri (cran-uri "AcrossTic" version))
22676 (sha256
22677 (base32
22678 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
22679 (properties `((upstream-name . "AcrossTic")))
22680 (build-system r-build-system)
22681 (propagated-inputs
22682 (list r-lpsolve r-treeclust))
22683 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
22684 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
22685 (description
22686 "This is a package for constructing minimum-cost regular spanning
22687 subgraph as part of a non-parametric two-sample test for equality of
22688 distribution.")
22689 (license license:gpl2+)))
22690
22691 (define-public r-acrt
22692 (package
22693 (name "r-acrt")
22694 (version "1.0.1")
22695 (source
22696 (origin
22697 (method url-fetch)
22698 (uri (cran-uri "acrt" version))
22699 (sha256
22700 (base32
22701 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
22702 (properties `((upstream-name . "acrt")))
22703 (build-system r-build-system)
22704 (propagated-inputs
22705 (list r-rcpp r-rcppeigen r-sandwich))
22706 (home-page "https://cran.r-project.org/web/packages/acrt/")
22707 (synopsis "Autocorrelation robust testing")
22708 (description
22709 "This package provides functions for testing affine hypotheses on the
22710 regression coefficient vector in regression models with autocorrelated
22711 errors.")
22712 (license license:gpl2)))
22713
22714 (define-public r-acs
22715 (package
22716 (name "r-acs")
22717 (version "2.1.4")
22718 (source
22719 (origin
22720 (method url-fetch)
22721 (uri (cran-uri "acs" version))
22722 (sha256
22723 (base32
22724 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
22725 (properties `((upstream-name . "acs")))
22726 (build-system r-build-system)
22727 (propagated-inputs
22728 (list r-httr r-plyr r-rcpp r-stringr r-xml))
22729 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
22730 (synopsis "Work with data from the US Census")
22731 (description
22732 "This package provides a general toolkit for downloading, managing,
22733 analyzing, and presenting data from the
22734 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
22735 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
22736 American Community Survey (ACS). Confidence intervals provided with ACS data
22737 are converted to standard errors to be bundled with estimates in complex
22738 @code{acs} objects. The package provides new methods to conduct standard
22739 operations on @code{acs} objects and present/plot data in statistically
22740 appropriate ways.")
22741 (license license:gpl3)))
22742
22743 (define-public r-acss-data
22744 (package
22745 (name "r-acss-data")
22746 (version "1.0")
22747 (source
22748 (origin
22749 (method url-fetch)
22750 (uri (cran-uri "acss.data" version))
22751 (sha256
22752 (base32
22753 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
22754 (properties `((upstream-name . "acss.data")))
22755 (build-system r-build-system)
22756 (home-page "http://complexitycalculator.com/methodology.html")
22757 (synopsis "Data for algorithmic complexity of short strings")
22758 (description
22759 "This is a data only package providing the algorithmic complexity of
22760 short strings, computed using the coding theorem method. For a given set of
22761 symbols in a string, all possible or a large number of random samples of
22762 Turing machines with a given number of states (e.g., 5) and number of symbols
22763 corresponding to the number of symbols in the strings were simulated until
22764 they reached a halting state or failed to end. This package contains data on
22765 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
22766 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
22767 distribution of the halting states.")
22768 (license license:gpl2+)))
22769
22770 (define-public r-acss
22771 (package
22772 (name "r-acss")
22773 (version "0.2-5")
22774 (source
22775 (origin
22776 (method url-fetch)
22777 (uri (cran-uri "acss" version))
22778 (sha256
22779 (base32
22780 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
22781 (properties `((upstream-name . "acss")))
22782 (build-system r-build-system)
22783 (propagated-inputs
22784 (list r-acss-data r-zoo))
22785 (home-page "http://complexitycalculator.com/methodology.html")
22786 (synopsis "Algorithmic complexity for short strings")
22787 (description
22788 "The main purpose of this package is to provide the algorithmic
22789 complexity for short strings, an approximation of the Kolmogorov Complexity of
22790 a short string using the coding theorem method. While the database containing
22791 the complexity is provided in the data only package @code{acss.data}, this
22792 package provides functions accessing the data such as @code{prob_random}
22793 returning the posterior probability that a given string was produced by a
22794 random process. In addition, two traditional (but problematic) measures of
22795 complexity are also provided: entropy and change complexity.")
22796 (license license:gpl2+)))
22797
22798 (define-public r-acswr
22799 (package
22800 (name "r-acswr")
22801 (version "1.0")
22802 (source
22803 (origin
22804 (method url-fetch)
22805 (uri (cran-uri "ACSWR" version))
22806 (sha256
22807 (base32
22808 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
22809 (properties `((upstream-name . "ACSWR")))
22810 (build-system r-build-system)
22811 (propagated-inputs
22812 (list r-mass))
22813 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
22814 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
22815 (description
22816 "This is a companion package for the book \"A Course in Statistics with
22817 R\" (ISBN 978-1-119-15272-9.)")
22818 (license license:gpl2)))
22819
22820 (define-public r-alabama
22821 (package
22822 (name "r-alabama")
22823 (version "2022.4-1")
22824 (source
22825 (origin
22826 (method url-fetch)
22827 (uri (cran-uri "alabama" version))
22828 (sha256
22829 (base32
22830 "0v6kl6ndm8wvp9xzya3x4gj5kh03qgx13x5vyzn410wsndcjiim8"))))
22831 (properties `((upstream-name . "alabama")))
22832 (build-system r-build-system)
22833 (propagated-inputs (list r-numderiv))
22834 (home-page "https://cran.r-project.org/web/packages/alabama/")
22835 (synopsis "Constrained nonlinear optimization")
22836 (description
22837 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
22838 Algorithm; it is used for optimizing smooth nonlinear objective functions with
22839 constraints. Linear or nonlinear equality and inequality constraints are
22840 allowed.")
22841 (license license:gpl2+)))
22842
22843 (define-public r-gdina
22844 (package
22845 (name "r-gdina")
22846 (version "2.8.8")
22847 (source
22848 (origin
22849 (method url-fetch)
22850 (uri (cran-uri "GDINA" version))
22851 (sha256
22852 (base32
22853 "1slq1npsq8s8aghnrpm6vvc6kxj4svz0kr2x0akblndrcr25wxjr"))))
22854 (properties `((upstream-name . "GDINA")))
22855 (build-system r-build-system)
22856 (propagated-inputs
22857 (list r-alabama
22858 r-ggplot2
22859 r-mass
22860 r-numderiv
22861 r-rcpp
22862 r-rcpparmadillo
22863 r-rsolnp
22864 r-shiny
22865 r-shinydashboard))
22866 (native-inputs
22867 (list r-knitr))
22868 (home-page "https://github.com/Wenchao-Ma/GDINA")
22869 (synopsis "Generalized DINA model framework")
22870 (description
22871 "This package provides a set of psychometric tools for cognitive
22872 diagnosis modeling based on the generalized deterministic inputs, noisy and
22873 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
22874 and its extensions, including the sequential G-DINA model by Ma and de la
22875 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
22876 polytomous G-DINA model by Chen and de la Torre
22877 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
22878 distribution can be independent, saturated, higher-order, loglinear smoothed
22879 or structured. Q-matrix validation, item and model fit statistics, model
22880 comparison at test and item level and differential item functioning can also
22881 be conducted. A graphical user interface is also provided.")
22882 (license license:gpl3)))
22883
22884 (define-public r-actcd
22885 (package
22886 (name "r-actcd")
22887 (version "1.2-0")
22888 (source
22889 (origin
22890 (method url-fetch)
22891 (uri (cran-uri "ACTCD" version))
22892 (sha256
22893 (base32
22894 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
22895 (properties `((upstream-name . "ACTCD")))
22896 (build-system r-build-system)
22897 (propagated-inputs
22898 (list r-gdina r-r-methodss3))
22899 (native-inputs
22900 (list gfortran))
22901 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
22902 (synopsis "Asymptotic classification theory for cognitive diagnosis")
22903 (description
22904 "This is a package supporting cluster analysis for cognitive diagnosis
22905 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
22906 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
22907 sum-scores, cluster analysis techniques can be used to classify examinees into
22908 latent classes based on their attribute patterns. In addition to the
22909 algorithms used to classify data, three labeling approaches are proposed to
22910 label clusters so that examinees' attribute profiles can be obtained.")
22911 (license license:gpl2+)))
22912
22913 (define-public r-ineq
22914 (package
22915 (name "r-ineq")
22916 (version "0.2-13")
22917 (source
22918 (origin
22919 (method url-fetch)
22920 (uri (cran-uri "ineq" version))
22921 (sha256
22922 (base32
22923 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
22924 (properties `((upstream-name . "ineq")))
22925 (build-system r-build-system)
22926 (home-page "https://cran.r-project.org/web/packages/ineq/")
22927 (synopsis "Measuring inequality, concentration, and poverty")
22928 (description
22929 "This package provides tools for measuring inequality, concentration, and
22930 poverty measures. It provides both empirical and theoretical Lorenz curves.")
22931 ;; Either of these two versions.
22932 (license (list license:gpl2 license:gpl3))))
22933
22934 (define-public r-actfrag
22935 (package
22936 (name "r-actfrag")
22937 (version "0.1.1")
22938 (source
22939 (origin
22940 (method url-fetch)
22941 (uri (cran-uri "ActFrag" version))
22942 (sha256
22943 (base32
22944 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
22945 (properties `((upstream-name . "ActFrag")))
22946 (build-system r-build-system)
22947 (propagated-inputs
22948 (list r-accelerometry r-dplyr r-ineq r-survival r-tidyr))
22949 (home-page "https://github.com/junruidi/ActFrag")
22950 (synopsis "Activity fragmentation metrics extraction")
22951 (description
22952 "This package provides functions to extract commonly used fragmentation
22953 metrics to quantify time accumulation strategies based on minute level
22954 actigraphy-measured activity counts data.")
22955 (license license:gpl3)))
22956
22957 (define-public r-ash
22958 (package
22959 (name "r-ash")
22960 (version "1.0-15")
22961 (source
22962 (origin
22963 (method url-fetch)
22964 (uri (cran-uri "ash" version))
22965 (sha256
22966 (base32
22967 "1ay2a2agdmiz7zzvn26mli0x0iwk09g5pp4yy1r23knhkp1pn2lb"))))
22968 (properties `((upstream-name . "ash")))
22969 (build-system r-build-system)
22970 (native-inputs (list gfortran))
22971 (home-page "https://cran.r-project.org/web/packages/ash/")
22972 (synopsis "David Scott's ASH routines")
22973 (description
22974 "This package provides David Scott's ASH routines ported from S-PLUS to
22975 R.")
22976 (license license:gpl2+)))
22977
22978 (define-public r-hdrcde
22979 (package
22980 (name "r-hdrcde")
22981 (version "3.4")
22982 (source
22983 (origin
22984 (method url-fetch)
22985 (uri (cran-uri "hdrcde" version))
22986 (sha256
22987 (base32
22988 "16qlk44cjvn2s0vzaf915df65ksdx20dbxhy7fpdqins46hccha3"))))
22989 (properties `((upstream-name . "hdrcde")))
22990 (build-system r-build-system)
22991 (propagated-inputs
22992 (list r-ash
22993 r-ggplot2
22994 r-kernsmooth
22995 r-ks
22996 r-locfit
22997 r-rcolorbrewer))
22998 (native-inputs (list gfortran))
22999 (home-page "http://pkg.robjhyndman.com/hdrcde")
23000 (synopsis "Highest density regions and conditional density estimation")
23001 (description
23002 "This is a package for the computation of highest density regions in one
23003 and two dimensions, kernel estimation of univariate density functions
23004 conditional on one covariate, and multimodal regression.")
23005 (license license:gpl3)))
23006
23007 (define-public r-rainbow
23008 (package
23009 (name "r-rainbow")
23010 (version "3.6")
23011 (source
23012 (origin
23013 (method url-fetch)
23014 (uri (cran-uri "rainbow" version))
23015 (sha256
23016 (base32
23017 "11vfcck17d2xjc049ci5i8l1nqv345anmd110gdz7654i1pj9lb3"))))
23018 (properties `((upstream-name . "rainbow")))
23019 (build-system r-build-system)
23020 (propagated-inputs
23021 (list r-cluster
23022 r-colorspace
23023 r-hdrcde
23024 r-ks
23025 r-mass
23026 r-pcapp))
23027 (home-page "https://cran.r-project.org/web/packages/rainbow/")
23028 (synopsis "Bagplots, boxplots and rainbow plots for functional data")
23029 (description
23030 "This is a package for visualizing functional data and identifying
23031 functional outliers with bagplots, boxplots and rainbow plots.")
23032 (license license:gpl3)))
23033
23034 (define-public r-fds
23035 (package
23036 (name "r-fds")
23037 (version "1.8")
23038 (source
23039 (origin
23040 (method url-fetch)
23041 (uri (cran-uri "fds" version))
23042 (sha256
23043 (base32
23044 "1284vncixrzrz9x6b52gslrbrbia07sd0xac7nwdqhp5f5v5wfi0"))))
23045 (properties `((upstream-name . "fds")))
23046 (build-system r-build-system)
23047 (propagated-inputs
23048 (list r-rainbow r-rcurl))
23049 (home-page "https://cran.r-project.org/web/packages/fds/")
23050 (synopsis "Functional data sets")
23051 (description "This package contains a list of functional time series,
23052 sliced functional time series, and functional data sets. Functional time
23053 series is a special type of functional data observed over time. Sliced
23054 functional time series is a special type of functional time series with a time
23055 variable observed over time.")
23056 (license license:gpl2+)))
23057
23058 (define-public r-fda
23059 (package
23060 (name "r-fda")
23061 (version "6.0.3")
23062 (source
23063 (origin
23064 (method url-fetch)
23065 (uri (cran-uri "fda" version))
23066 (sha256
23067 (base32
23068 "1lvp4i4hqz650k27sa5flbdlkalihc79xy9128hfhr16h6wi8n10"))))
23069 (properties `((upstream-name . "fda")))
23070 (build-system r-build-system)
23071 (propagated-inputs
23072 (list r-desolve r-fds))
23073 (native-inputs
23074 (list r-knitr))
23075 (home-page "https://www.functionaldata.org")
23076 (synopsis "Functional data analysis")
23077 (description
23078 "These functions were developed to support functional data analysis as
23079 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
23080 Analysis. The package includes data sets and script files working many
23081 examples.")
23082 (license license:gpl2+)))
23083
23084 (define-public r-actigraphy
23085 (package
23086 (name "r-actigraphy")
23087 (version "1.4.0")
23088 (source
23089 (origin
23090 (method url-fetch)
23091 (uri (cran-uri "Actigraphy" version))
23092 (sha256
23093 (base32
23094 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
23095 (properties `((upstream-name . "Actigraphy")))
23096 (build-system r-build-system)
23097 (propagated-inputs
23098 (list r-fda))
23099 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
23100 (synopsis "Actigraphy data analysis")
23101 (description
23102 "This package provides tools for functional linear modeling and analysis
23103 of actigraphy data.")
23104 (license license:asl2.0)))
23105
23106 (define-public r-activedriver
23107 (package
23108 (name "r-activedriver")
23109 (version "1.0.0")
23110 (source
23111 (origin
23112 (method url-fetch)
23113 (uri (cran-uri "ActiveDriver" version))
23114 (sha256
23115 (base32
23116 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
23117 (properties `((upstream-name . "ActiveDriver")))
23118 (build-system r-build-system)
23119 (propagated-inputs
23120 (list r-mass))
23121 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
23122 (synopsis "Tools for finding cancer driver proteins")
23123 (description
23124 "This package provides a mutation analysis tool that discovers cancer
23125 driver genes with frequent mutations in protein signalling sites such as
23126 post-translational modifications (phosphorylation, ubiquitination, etc). The
23127 Poisson generalized linear regression model identifies genes where cancer
23128 mutations in signalling sites are more frequent than expected from the
23129 sequence of the entire gene. Integration of mutations with signalling
23130 information helps find new driver genes and propose candidate mechanisms to
23131 known drivers.")
23132 (license license:gpl2+)))
23133
23134 (define-public r-activitycounts
23135 (package
23136 (name "r-activitycounts")
23137 (version "0.1.2")
23138 (source
23139 (origin
23140 (method url-fetch)
23141 (uri (cran-uri "activityCounts" version))
23142 (sha256
23143 (base32
23144 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
23145 (properties
23146 `((upstream-name . "activityCounts")))
23147 (build-system r-build-system)
23148 (propagated-inputs
23149 (list r-lubridate r-magrittr r-seewave r-signal r-tibble))
23150 (home-page "https://github.com/walkabillylab/activityCounts")
23151 (synopsis "Generate ActiLife counts")
23152 (description
23153 "ActiLife generates activity counts from data collected by Actigraph
23154 accelerometers. Actigraph is one of the most common research-grade
23155 accelerometers. There is considerable research validating and developing
23156 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
23157 counts are proprietary and difficult to implement if researchers use different
23158 accelerometer brands. The code creates ActiLife counts from raw acceleration
23159 data for different accelerometer brands.")
23160 (license license:gpl3)))
23161
23162 (define-public r-activityindex
23163 (package
23164 (name "r-activityindex")
23165 (version "0.3.7")
23166 (source
23167 (origin
23168 (method url-fetch)
23169 (uri (cran-uri "ActivityIndex" version))
23170 (sha256
23171 (base32
23172 "1zj2b6x31a1kxl80rarmkrlm7ack4154mrkbqs3fpi48zpmjbgd5"))))
23173 (properties `((upstream-name . "ActivityIndex")))
23174 (build-system r-build-system)
23175 (propagated-inputs
23176 (list r-data-table r-matrixstats r-r-utils))
23177 (native-inputs
23178 (list r-knitr))
23179 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
23180 (synopsis "Activity Index calculation using raw accelerometry data")
23181 (description
23182 "This is a package to read raw accelerometry from GT3X+ accelerometry
23183 data and plain table data to calculate the Activity Index from Bai et
23184 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
23185 (license license:gpl3)))
23186
23187 (define-public r-activpal
23188 (package
23189 (name "r-activpal")
23190 (version "0.1.3")
23191 (source
23192 (origin
23193 (method url-fetch)
23194 (uri (cran-uri "activPAL" version))
23195 (sha256
23196 (base32
23197 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
23198 (properties `((upstream-name . "activPAL")))
23199 (build-system r-build-system)
23200 (propagated-inputs
23201 (list r-devtools
23202 r-dplyr
23203 r-ggplot2
23204 r-lubridate
23205 r-magrittr
23206 r-tidyr))
23207 (home-page "https://cran.r-project.org/web/packages/activPAL")
23208 (synopsis "Processing and chart generation from activPAL events files")
23209 (description
23210 "This package contains functions to generate pre-defined summary
23211 statistics from activPAL events files. The package also contains functions to
23212 produce informative graphics that visualize physical activity behaviour and
23213 trends. This includes generating graphs that align physical activity
23214 behaviour with additional time based observations described by other data
23215 sets, such as sleep diaries and continuous glucose monitoring data.")
23216 (license license:gpl3)))
23217
23218 (define-public r-activpalprocessing
23219 (package
23220 (name "r-activpalprocessing")
23221 (version "1.0.2")
23222 (source
23223 (origin
23224 (method url-fetch)
23225 (uri (cran-uri "activpalProcessing" version))
23226 (sha256
23227 (base32
23228 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
23229 (properties
23230 `((upstream-name . "activpalProcessing")))
23231 (build-system r-build-system)
23232 (propagated-inputs
23233 (list r-chron))
23234 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
23235 (synopsis "Process activPAL events files")
23236 (description
23237 "This package performs estimation of physical activity and sedentary
23238 behavior variables from activPAL events files.")
23239 ;; Either version of the GPL.
23240 (license (list license:gpl2 license:gpl3))))
23241
23242 (define-public r-actogrammr
23243 (package
23244 (name "r-actogrammr")
23245 (version "0.2.3")
23246 (source
23247 (origin
23248 (method url-fetch)
23249 (uri (cran-uri "actogrammr" version))
23250 (sha256
23251 (base32
23252 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
23253 (properties `((upstream-name . "actogrammr")))
23254 (build-system r-build-system)
23255 (propagated-inputs
23256 (list r-dplyr r-ggplot2 r-lubridate r-readr r-tidyr))
23257 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
23258 (synopsis "Read in activity data and plot actograms")
23259 (description
23260 "Read in activity measurements from standard file formats used by
23261 circadian rhythm researchers, currently only ClockLab format, and process and
23262 plot the data. The central type of plot is the actogram, as first described
23263 in \"Activity and distribution of certain wild mice in relation to biotic
23264 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
23265 (license license:gpl3)))
23266
23267 (define-public r-expint
23268 (package
23269 (name "r-expint")
23270 (version "0.1-7")
23271 (source
23272 (origin
23273 (method url-fetch)
23274 (uri (cran-uri "expint" version))
23275 (sha256
23276 (base32
23277 "01d0a7pc4qx7044a0cymnv5ld88r90vdvlqjbnzg9qlfbizdgyvw"))))
23278 (properties `((upstream-name . "expint")))
23279 (build-system r-build-system)
23280 (home-page "https://gitlab.com/vigou3/expint")
23281 (synopsis "Exponential integral and incomplete Gamma function")
23282 (description
23283 "This package provides the exponential integrals @code{E_1(x)},
23284 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
23285 function @code{G(a, x)} defined for negative values of its first argument.
23286 The package also gives easy access to the underlying C routines through an
23287 API; see the package vignette for details.")
23288 (license license:gpl2+)))
23289
23290 (define-public r-actuar
23291 (package
23292 (name "r-actuar")
23293 (version "3.2-2")
23294 (source
23295 (origin
23296 (method url-fetch)
23297 (uri (cran-uri "actuar" version))
23298 (sha256
23299 (base32
23300 "0dhpaivyga0jwvw1csagbx74biy9jfkw4a8sa871579njxl1x7p1"))))
23301 (properties `((upstream-name . "actuar")))
23302 (build-system r-build-system)
23303 (propagated-inputs (list r-expint))
23304 (home-page "https://gitlab.com/vigou3/actuar")
23305 (synopsis "Actuarial functions and heavy tailed distributions")
23306 (description
23307 "This package provides functions and data sets for actuarial science:
23308 modeling of loss distributions; risk theory and ruin theory; simulation of
23309 compound models, discrete mixtures and compound hierarchical models;
23310 credibility theory. It boasts support for many additional probability
23311 distributions to model insurance loss amounts and loss frequency: 19
23312 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
23313 distribution; zero-truncated and zero-modified extensions of the standard
23314 discrete distributions. It also supports phase-type distributions commonly
23315 used to compute ruin probabilities.")
23316 (license license:gpl2+)))
23317
23318 (define-public r-bmp
23319 (package
23320 (name "r-bmp")
23321 (version "0.3")
23322 (source
23323 (origin
23324 (method url-fetch)
23325 (uri (cran-uri "bmp" version))
23326 (sha256
23327 (base32
23328 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
23329 (properties `((upstream-name . "bmp")))
23330 (build-system r-build-system)
23331 (home-page "https://cran.r-project.org/web/packages/bmp/")
23332 (synopsis "Read Bitmap (BMP) images")
23333 (description
23334 "This package provides pure R tools to read BMP format images. It is
23335 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
23336 (license license:gpl2+)))
23337
23338 (define-public r-readbitmap
23339 (package
23340 (name "r-readbitmap")
23341 (version "0.1.5")
23342 (source
23343 (origin
23344 (method url-fetch)
23345 (uri (cran-uri "readbitmap" version))
23346 (sha256
23347 (base32
23348 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
23349 (properties `((upstream-name . "readbitmap")))
23350 (build-system r-build-system)
23351 (inputs
23352 (list libjpeg-turbo libpng))
23353 (propagated-inputs
23354 (list r-bmp r-jpeg r-png r-tiff))
23355 (home-page "https://github.com/jefferis/readbitmap")
23356 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
23357 (description
23358 "This package provides tools to identify and read BMP, JPEG, PNG, and
23359 TIFF format bitmap images. Identification defaults to the use of the magic
23360 number embedded in the file rather than the file extension.")
23361 (license license:gpl2+)))
23362
23363 (define-public r-imager
23364 (package
23365 (name "r-imager")
23366 (version "0.42.13")
23367 (source
23368 (origin
23369 (method url-fetch)
23370 (uri (cran-uri "imager" version))
23371 (sha256
23372 (base32
23373 "0zygnmxwbbmj5i2l2affzdz90xvsa7b5pbkzkhjbm40is69rh2nr"))))
23374 (properties `((upstream-name . "imager")))
23375 (build-system r-build-system)
23376 (inputs
23377 (list fftw libtiff libx11 zlib))
23378 (propagated-inputs
23379 (list r-downloader
23380 r-igraph
23381 r-jpeg
23382 r-magrittr
23383 r-png
23384 r-purrr
23385 r-rcpp
23386 r-readbitmap
23387 r-stringr))
23388 (native-inputs
23389 (list pkg-config r-knitr))
23390 (home-page "https://dahtah.github.io/imager/")
23391 (synopsis "Image processing library")
23392 (description
23393 "This is a package for fast image processing for images in up to 4
23394 dimensions (two spatial dimensions, one time/depth dimension, one color
23395 dimension). It provides most traditional image processing tools (filtering,
23396 morphology, transformations, etc.) as well as various functions for easily
23397 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
23398 simple, modern C++ library for image processing.")
23399 (license license:lgpl3)))
23400
23401 (define-public r-acuityview
23402 (package
23403 (name "r-acuityview")
23404 (version "0.1")
23405 (source
23406 (origin
23407 (method url-fetch)
23408 (uri (cran-uri "AcuityView" version))
23409 (sha256
23410 (base32
23411 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
23412 (properties `((upstream-name . "AcuityView")))
23413 (build-system r-build-system)
23414 (propagated-inputs
23415 (list r-fftwtools r-imager r-plotrix))
23416 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
23417 (synopsis "Display scenes as seen by an animal with less acute vision")
23418 (description
23419 "This package provides a simple method for representing a visual scene as
23420 it may be seen by an animal with less acute vision.")
23421 (license license:gpl2+)))
23422
23423 (define-public r-caret
23424 (package
23425 (name "r-caret")
23426 (version "6.0-92")
23427 (source
23428 (origin
23429 (method url-fetch)
23430 (uri (cran-uri "caret" version))
23431 (sha256
23432 (base32
23433 "048mp325ndfl83a8p4dkd1b6zh5bws4gg9kxka5ss8qsj8m4m08x"))))
23434 (build-system r-build-system)
23435 (propagated-inputs
23436 (list r-e1071
23437 r-foreach
23438 r-ggplot2
23439 r-lattice
23440 r-modelmetrics
23441 r-nlme
23442 r-plyr
23443 r-proc
23444 r-recipes
23445 r-reshape2
23446 r-withr))
23447 (native-inputs
23448 (list r-knitr))
23449 (home-page "https://github.com/topepo/caret")
23450 (synopsis "Classification and regression training")
23451 (description
23452 "This package provides miscellaneous functions for training and plotting
23453 classification and regression models.")
23454 (license license:gpl2+)))
23455
23456 (define-public r-adabag
23457 (package
23458 (name "r-adabag")
23459 (version "4.2")
23460 (source
23461 (origin
23462 (method url-fetch)
23463 (uri (cran-uri "adabag" version))
23464 (sha256
23465 (base32
23466 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
23467 (properties `((upstream-name . "adabag")))
23468 (build-system r-build-system)
23469 (propagated-inputs
23470 (list r-caret r-doparallel r-foreach r-rpart))
23471 (home-page "https://cran.r-project.org/web/packages/adabag/")
23472 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
23473 (description
23474 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
23475 Breiman's Bagging algorithm using classification trees as individual
23476 classifiers. Once these classifiers have been trained, they can be used to
23477 predict on new data. Also, cross validation estimation of the error can be
23478 done.")
23479 (license license:gpl2+)))
23480
23481 (define-public r-adagio
23482 (package
23483 (name "r-adagio")
23484 (version "0.8.4")
23485 (source
23486 (origin
23487 (method url-fetch)
23488 (uri (cran-uri "adagio" version))
23489 (sha256
23490 (base32
23491 "0ihv05402iq003m0338f85pnqnlnrmx0pf1mg8cz9sgi5h98mbnl"))))
23492 (properties `((upstream-name . "adagio")))
23493 (build-system r-build-system)
23494 (propagated-inputs
23495 (list r-lpsolve))
23496 (home-page "https://cran.r-project.org/web/packages/adagio/")
23497 (synopsis "Discrete and global optimization routines")
23498 (description
23499 "This package provides methods and algorithms for discrete optimization,
23500 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
23501 Hooke-Jeeves minimization, and some (evolutionary) global optimization
23502 functions.")
23503 (license license:gpl3+)))
23504
23505 (define-public r-univoutl
23506 (package
23507 (name "r-univoutl")
23508 (version "0.3")
23509 (source
23510 (origin
23511 (method url-fetch)
23512 (uri (cran-uri "univOutl" version))
23513 (sha256
23514 (base32
23515 "1hhpxrpmp2wbrynx9xjndnp2sccirgky2x6ksd6yk6phmk0rbzjp"))))
23516 (properties `((upstream-name . "univOutl")))
23517 (build-system r-build-system)
23518 (propagated-inputs
23519 (list r-hmisc r-robustbase))
23520 (home-page "https://github.com/marcellodo/univOutl")
23521 (synopsis "Detection of univariate outliers")
23522 (description
23523 "This package provides well-known outlier detection techniques in the
23524 univariate case. Methods to deal with skewed distribution are included too.
23525 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
23526 historical data is implemented as well. When available, survey weights can be
23527 used in outliers detection.")
23528 (license license:gpl2+)))
23529
23530 (define-public r-tolerance
23531 (package
23532 (name "r-tolerance")
23533 (version "2.0.0")
23534 (source
23535 (origin
23536 (method url-fetch)
23537 (uri (cran-uri "tolerance" version))
23538 (sha256
23539 (base32
23540 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
23541 (properties `((upstream-name . "tolerance")))
23542 (build-system r-build-system)
23543 (propagated-inputs
23544 (list r-mass r-rgl))
23545 (home-page "https://cran.r-project.org/web/packages/tolerance/")
23546 (synopsis "Statistical tolerance intervals and regions")
23547 (description
23548 "This package provides functions for estimating tolerance
23549 limits (intervals) for various univariate distributions (binomial, Cauchy,
23550 discrete Pareto, exponential, two-parameter exponential, extreme value,
23551 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
23552 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
23553 Bayesian normal tolerance limits, multivariate normal tolerance regions,
23554 nonparametric tolerance intervals, tolerance bands for regression
23555 settings (linear regression, nonlinear regression, nonparametric regression,
23556 and multivariate regression), and analysis of variance tolerance intervals.
23557 Visualizations are also available for most of these settings.")
23558 (license license:gpl2+)))
23559
23560 ;; Keep this in sync with the liblantern package.
23561 (define-public r-torch
23562 (package
23563 (name "r-torch")
23564 (version "0.7.2")
23565 (source
23566 (origin
23567 (method url-fetch)
23568 (uri (cran-uri "torch" version))
23569 (sha256
23570 (base32 "163pvl3gyz7l2fmqhgg4k6pw4dmvfir71yp9l5ra2k4zc32lz166"))))
23571 (properties `((upstream-name . "torch")))
23572 (build-system r-build-system)
23573 (arguments
23574 (list
23575 #:phases
23576 #~(modify-phases %standard-phases
23577 (add-after 'install 'link-libraries
23578 (lambda* (#:key inputs #:allow-other-keys)
23579 (let ((deps (string-append #$output "/site-library/torch/deps")))
23580 (mkdir-p deps)
23581 (symlink
23582 (search-input-file
23583 inputs "/lib/python3.9/site-packages/torch/lib/libtorch.so")
23584 (string-append deps "/libtorch.so"))
23585 (symlink
23586 (search-input-file
23587 inputs "/lib/liblantern.so")
23588 (string-append deps "/liblantern.so"))))))))
23589 (inputs
23590 (list python-pytorch-for-r-torch
23591 liblantern))
23592 (propagated-inputs
23593 (list r-bit64
23594 r-callr
23595 r-cli
23596 r-coro
23597 r-ellipsis
23598 r-magrittr
23599 r-r6
23600 r-rcpp
23601 r-rlang
23602 r-withr))
23603 (native-inputs (list r-knitr))
23604 (home-page "https://torch.mlverse.org/docs")
23605 (synopsis "Tensors and neural networks with GPU acceleration")
23606 (description
23607 "This package provides functionality to define and train neural networks
23608 similar to PyTorch but written entirely in R using the libtorch library. It
23609 also supports low-level tensor operations and GPU acceleration.")
23610 (license license:expat)))
23611
23612 (define-public r-additivitytests
23613 (package
23614 (name "r-additivitytests")
23615 (version "1.1-4")
23616 (source
23617 (origin
23618 (method url-fetch)
23619 (uri (cran-uri "additivityTests" version))
23620 (sha256
23621 (base32
23622 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
23623 (properties
23624 `((upstream-name . "additivityTests")))
23625 (build-system r-build-system)
23626 (home-page "https://github.com/simecek/additivityTests")
23627 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
23628 (description
23629 "This package provides an implementation of the Tukey, Mandel,
23630 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
23631 (license license:gpl3)))
23632
23633 (define-public r-flexclust
23634 (package
23635 (name "r-flexclust")
23636 (version "1.4-1")
23637 (source
23638 (origin
23639 (method url-fetch)
23640 (uri (cran-uri "flexclust" version))
23641 (sha256
23642 (base32
23643 "13akk3w6a76jpws5v9108c3hdmb8i6gm0sc06lr2hqly0pgpfyfn"))))
23644 (properties `((upstream-name . "flexclust")))
23645 (build-system r-build-system)
23646 (propagated-inputs
23647 (list r-class r-lattice r-modeltools))
23648 (home-page "https://cran.r-project.org/web/packages/flexclust/")
23649 (synopsis "Flexible cluster algorithms")
23650 (description
23651 "The main function @code{kcca} implements a general framework for
23652 k-centroids cluster analysis supporting arbitrary distance measures and
23653 centroid computation. Further cluster methods include hard competitive
23654 learning, neural gas, and QT clustering. There are numerous visualization
23655 methods for cluster results (neighborhood graphs, convex cluster hulls,
23656 barcharts of centroids, ...), and bootstrap methods for the analysis of
23657 cluster stability.")
23658 (license license:gpl2)))
23659
23660 (define-public r-biclust
23661 (package
23662 (name "r-biclust")
23663 (version "2.0.3")
23664 (source
23665 (origin
23666 (method url-fetch)
23667 (uri (cran-uri "biclust" version))
23668 (sha256
23669 (base32
23670 "0lgyc2f04dhr65cwga78pradxsdzgjrpp8vphchqn60ab1z95dlp"))))
23671 (properties `((upstream-name . "biclust")))
23672 (build-system r-build-system)
23673 (propagated-inputs
23674 (list r-additivitytests
23675 r-colorspace
23676 r-flexclust
23677 r-ggplot2
23678 r-lattice
23679 r-mass
23680 r-tidyr))
23681 (home-page "https://cran.r-project.org/web/packages/biclust/")
23682 (synopsis "BiCluster algorithms")
23683 (description
23684 "The main function @code{biclust()} provides several algorithms to find
23685 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
23686 In addition, the package provides methods for data
23687 preprocessing (normalization and discretization), visualization, and
23688 validation of bicluster solutions.")
23689 (license license:gpl3)))
23690
23691 (define-public r-icge
23692 (package
23693 (name "r-icge")
23694 (version "0.4.1")
23695 (source
23696 (origin
23697 (method url-fetch)
23698 (uri (cran-uri "ICGE" version))
23699 (sha256
23700 (base32
23701 "0w6hbi3h98q6gsxqbb43p95v6xykgrasxcjivwm8hw9fly4avxyi"))))
23702 (properties `((upstream-name . "ICGE")))
23703 (build-system r-build-system)
23704 (propagated-inputs
23705 (list r-cluster r-fastcluster r-mass))
23706 (home-page "https://cran.r-project.org/web/packages/ICGE/")
23707 (synopsis "Cluster estimation and identification of atypical units")
23708 (description
23709 "ICGE is a package that helps to estimate the number of real clusters in
23710 data as well as to identify atypical units. The underlying methods are based
23711 on distances rather than on unit x variables.")
23712 (license license:gpl2+)))
23713
23714 (define-public r-depth
23715 (package
23716 (name "r-depth")
23717 (version "2.1-1.1")
23718 (source
23719 (origin
23720 (method url-fetch)
23721 (uri (cran-uri "depth" version))
23722 (sha256
23723 (base32
23724 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
23725 (properties `((upstream-name . "depth")))
23726 (build-system r-build-system)
23727 (propagated-inputs
23728 (list r-abind r-circular r-rgl))
23729 (native-inputs
23730 (list gfortran))
23731 (home-page "https://cran.r-project.org/web/packages/depth/")
23732 (synopsis "Nonparametric depth functions for multivariate analysis")
23733 (description
23734 "This package provides tools for depth functions methodology applied to
23735 multivariate analysis. Besides allowing calculation of depth values and
23736 depth-based location estimators, the package includes functions or drawing
23737 contour plots and perspective plots of depth functions. Euclidean and
23738 spherical depths are supported.")
23739 (license license:gpl2)))
23740
23741 (define-public r-archetypes
23742 (package
23743 (name "r-archetypes")
23744 (version "2.2-0.1")
23745 (source
23746 (origin
23747 (method url-fetch)
23748 (uri (cran-uri "archetypes" version))
23749 (sha256
23750 (base32
23751 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
23752 (properties `((upstream-name . "archetypes")))
23753 (build-system r-build-system)
23754 (propagated-inputs
23755 (list r-modeltools r-nnls))
23756 (home-page "https://cran.r-project.org/web/packages/archetypes")
23757 (synopsis "Archetypal analysis")
23758 (description
23759 "The main function @code{archetypes} implements a framework for
23760 archetypal analysis supporting arbitrary problem solving mechanisms for the
23761 different conceptual parts of the algorithm.")
23762 (license license:gpl2+)))
23763
23764 (define-public r-shapes
23765 (package
23766 (name "r-shapes")
23767 (version "1.2.6")
23768 (source
23769 (origin
23770 (method url-fetch)
23771 (uri (cran-uri "shapes" version))
23772 (sha256
23773 (base32
23774 "1p9fr95zk3q2v277c5ksb0nh26mcpzwjzjb2lmag51z6hck8cb66"))))
23775 (properties `((upstream-name . "shapes")))
23776 (build-system r-build-system)
23777 (propagated-inputs
23778 (list r-mass r-minpack-lm r-rgl r-scatterplot3d))
23779 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
23780 (synopsis "Statistical shape analysis")
23781 (description
23782 "This package provides routines for the statistical analysis of landmark
23783 shapes, including Procrustes analysis, graphical displays, principal
23784 components analysis, permutation and bootstrap tests, thin-plate spline
23785 transformation grids and comparing covariance matrices. See Dryden, I.L. and
23786 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
23787 Edition), John Wiley and Sons.")
23788 (license license:gpl2)))
23789
23790 (define-public r-anthropometry
23791 (package
23792 (name "r-anthropometry")
23793 (version "1.17")
23794 (source
23795 (origin
23796 (method url-fetch)
23797 (uri (cran-uri "Anthropometry" version))
23798 (sha256
23799 (base32
23800 "0vxjlzxv16bygw8n57f25msq5bd1dydg41my92ximah0nzzvbg41"))))
23801 (properties `((upstream-name . "Anthropometry")))
23802 (build-system r-build-system)
23803 (propagated-inputs
23804 (list r-archetypes
23805 r-biclust
23806 r-cluster
23807 r-depth
23808 r-fnn
23809 r-icge
23810 r-nnls
23811 r-rgl
23812 r-shapes))
23813 (native-inputs
23814 (list r-knitr))
23815 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
23816 (synopsis "Statistical methods for anthropometric data")
23817 (description
23818 "This package provides statistical methods especially developed to
23819 analyze anthropometric data. These methods are aimed at providing effective
23820 solutions to some commons problems related to Ergonomics and Anthropometry.
23821 They are based on clustering, the statistical concept of data depth,
23822 statistical shape analysis and archetypal analysis.")
23823 (license license:gpl2+)))
23824
23825 (define-public r-anndata
23826 (package
23827 (name "r-anndata")
23828 (version "0.7.5.3")
23829 (source
23830 (origin
23831 (method url-fetch)
23832 (uri (cran-uri "anndata" version))
23833 (sha256
23834 (base32 "115v7gdilayd18hd519vzkixp2s6rvvrd1inc1i6amn7d0spy8r1"))))
23835 (properties `((upstream-name . "anndata")))
23836 (build-system r-build-system)
23837 (propagated-inputs (list r-assertthat r-matrix r-r6 r-reticulate))
23838 (native-inputs (list r-knitr))
23839 (home-page "https://anndata.dynverse.org")
23840 (synopsis "Anndata for R")
23841 (description
23842 "This package provides a reticulate wrapper for the Python package
23843 @code{anndata}. It provides a scalable way of keeping track of data and
23844 learned annotations. It is used to read from and write to the h5ad file
23845 format.")
23846 (license license:expat)))
23847
23848 (define-public r-adamethods
23849 (package
23850 (name "r-adamethods")
23851 (version "1.2.1")
23852 (source
23853 (origin
23854 (method url-fetch)
23855 (uri (cran-uri "adamethods" version))
23856 (sha256
23857 (base32
23858 "150awbd3skb1mqca18bqjykhyycqw8crviw66s6qrcnmcsbk77pj"))))
23859 (properties `((upstream-name . "adamethods")))
23860 (build-system r-build-system)
23861 (propagated-inputs
23862 (list r-anthropometry
23863 r-archetypes
23864 r-fnn
23865 r-foreach
23866 r-nnls
23867 r-tolerance
23868 r-univoutl))
23869 (home-page "https://cran.r-project.org/web/packages/adamethods/")
23870 (synopsis "Archetypoid algorithms and anomaly detection")
23871 (description
23872 "This package is a collection of several algorithms to obtain
23873 archetypoids with small and large databases and with both classical
23874 multivariate data and functional data (univariate and multivariate). Some of
23875 these algorithms also detect anomalies (outliers).")
23876 (license license:gpl2+)))
23877
23878 (define-public r-idpmisc
23879 (package
23880 (name "r-idpmisc")
23881 (version "1.1.20")
23882 (source
23883 (origin
23884 (method url-fetch)
23885 (uri (cran-uri "IDPmisc" version))
23886 (sha256
23887 (base32
23888 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
23889 (properties `((upstream-name . "IDPmisc")))
23890 (build-system r-build-system)
23891 (propagated-inputs
23892 (list r-lattice))
23893 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
23894 (synopsis "Functions for data analyses and visualization")
23895 (description
23896 "This package provides different high-level graphics functions for
23897 displaying large datasets, displaying circular data in a very flexible way,
23898 finding local maxima, brewing color ramps, drawing nice arrows, zooming
23899 2D-plots, creating figures with differently colored margin and plot region.
23900 In addition, the package contains auxiliary functions for data manipulation
23901 like omitting observations with irregular values or selecting data by logical
23902 vectors, which include NAs. Other functions are especially useful in
23903 spectroscopy and analyses of environmental data: robust baseline fitting,
23904 finding peaks in spectra, converting humidity measures.")
23905 (license license:gpl3+)))
23906
23907 (define-public r-qqman
23908 (package
23909 (name "r-qqman")
23910 (version "0.1.8")
23911 (source
23912 (origin
23913 (method url-fetch)
23914 (uri (cran-uri "qqman" version))
23915 (sha256
23916 (base32
23917 "1a6qp5wv9bvwjchfw8x4jh48hkynlnfr21a8vqgnswldvwbq7njq"))))
23918 (properties `((upstream-name . "qqman")))
23919 (build-system r-build-system)
23920 (propagated-inputs
23921 (list r-calibrate))
23922 (native-inputs
23923 (list r-knitr))
23924 (home-page "https://cran.r-project.org/web/packages/qqman/")
23925 (synopsis "Q-Q and Manhattan plots for GWAS data")
23926 (description
23927 "This package allows you to create Q-Q and Manhattan plots for GWAS data
23928 from PLINK results.")
23929 (license license:gpl3)))
23930
23931 (define-public r-gghighlight
23932 (package
23933 (name "r-gghighlight")
23934 (version "0.3.2")
23935 (source
23936 (origin
23937 (method url-fetch)
23938 (uri (cran-uri "gghighlight" version))
23939 (sha256
23940 (base32 "0bxgn4srxz1qhawqa8ck57p8hg5ikwfa9ll03zmnn8fb19akwm2v"))))
23941 (properties `((upstream-name . "gghighlight")))
23942 (build-system r-build-system)
23943 (propagated-inputs
23944 (list r-dplyr r-ggplot2 r-ggrepel r-lifecycle r-purrr r-rlang r-tibble))
23945 (native-inputs (list r-knitr))
23946 (home-page "https://github.com/yutannihilation/gghighlight/")
23947 (synopsis "Highlight lines and points in ggplot2")
23948 (description "Suppose we have data that has so many series that it is hard
23949 to identify them by their colors as the differences are so subtle. With
23950 gghighlight we can highlight those lines that match certain criteria. The
23951 result is a usual @code{ggplot} object, so it is fully customizable and can be
23952 used with custom themes and facets.")
23953 (license license:expat)))
23954
23955 (define-public r-ggplot-multistats
23956 (package
23957 (name "r-ggplot-multistats")
23958 (version "1.0.0")
23959 (source
23960 (origin
23961 (method url-fetch)
23962 (uri (cran-uri "ggplot.multistats" version))
23963 (sha256
23964 (base32
23965 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
23966 (properties
23967 `((upstream-name . "ggplot.multistats")))
23968 (build-system r-build-system)
23969 (propagated-inputs
23970 (list r-ggplot2 r-hexbin r-rlang r-scales))
23971 (home-page "https://github.com/flying-sheep/ggplot.multistats")
23972 (synopsis "Multiple summary statistics for binned stats/geometries")
23973 (description
23974 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
23975 which functions similar to its singular form, but allows the use of multiple
23976 statistics per bin. Those statistics can be mapped to multiple bin
23977 aesthetics.")
23978 (license license:gpl3)))
23979
23980 (define-public r-knn-covertree
23981 (package
23982 (name "r-knn-covertree")
23983 (version "1.0")
23984 (source
23985 (origin
23986 (method url-fetch)
23987 (uri (cran-uri "knn.covertree" version))
23988 (sha256
23989 (base32
23990 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
23991 (properties `((upstream-name . "knn.covertree")))
23992 (build-system r-build-system)
23993 (propagated-inputs
23994 (list r-matrix r-rcpp r-rcppeigen))
23995 (home-page "https://github.com/flying-sheep/knn.covertree")
23996 (synopsis "Accurate kNN Implementation with multiple distance measures")
23997 (description
23998 "Similarly to the FNN package, this package allows calculation of the k
23999 nearest neighbors (kNN) of a data matrix. The implementation is based on
24000 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
24001 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
24002 (license license:agpl3+)))
24003
24004 (define-public r-poibin
24005 (package
24006 (name "r-poibin")
24007 (version "1.5")
24008 (source
24009 (origin
24010 (method url-fetch)
24011 (uri (cran-uri "poibin" version))
24012 (sha256
24013 (base32
24014 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
24015 (properties `((upstream-name . "poibin")))
24016 (build-system r-build-system)
24017 (home-page "https://cran.r-project.org/web/packages/poibin/")
24018 (synopsis "Poisson binomial distribution")
24019 (description
24020 "This package provides an implementation of both the exact and
24021 approximation methods for computing the @dfn{cumulative distribution
24022 function} (CDF) of the Poisson binomial distribution. It also provides the
24023 @dfn{probability mass function} (PMF), quantile function, and random number
24024 generation for the Poisson binomial distribution.")
24025 (license license:gpl2)))
24026
24027 (define-public r-diagram
24028 (package
24029 (name "r-diagram")
24030 (version "1.6.5")
24031 (source
24032 (origin
24033 (method url-fetch)
24034 (uri (cran-uri "diagram" version))
24035 (sha256
24036 (base32
24037 "1r3lyl0h7mk9cfg8smr3jydfkjdawaphnxibkxfjqa7029vkxh79"))))
24038 (properties `((upstream-name . "diagram")))
24039 (build-system r-build-system)
24040 (propagated-inputs
24041 (list r-shape))
24042 (home-page "https://cran.r-project.org/web/packages/diagram/")
24043 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
24044 (description
24045 "This package provides tools to visualize simple graphs (networks) based
24046 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
24047 electrical networks, etc. It also includes supporting material for the book
24048 \"A practical guide to ecological modelling - using R as a simulation
24049 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
24050 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
24051 Francesca Mazzia (2012).")
24052 (license license:gpl2+)))
24053
24054 (define-public r-lim
24055 (package
24056 (name "r-lim")
24057 (version "1.4.7")
24058 (source
24059 (origin
24060 (method url-fetch)
24061 (uri (cran-uri "LIM" version))
24062 (sha256
24063 (base32
24064 "0d9bgyd0mnag8wds993dsvlbpkhyakydlzwc3nghxzv2n8504hjj"))))
24065 (properties `((upstream-name . "LIM")))
24066 (build-system r-build-system)
24067 (propagated-inputs
24068 (list r-diagram r-limsolve))
24069 (home-page "https://cran.r-project.org/web/packages/LIM/")
24070 (synopsis "Linear inverse model examples and solution methods")
24071 (description
24072 "This package provides functions that read and solve linear inverse
24073 problems (food web problems, linear programming problems).")
24074 (license license:gpl2+)))
24075
24076 (define-public r-shinycssloaders
24077 (package
24078 (name "r-shinycssloaders")
24079 (version "1.0.0")
24080 (source
24081 (origin
24082 (method url-fetch)
24083 (uri (cran-uri "shinycssloaders" version))
24084 (sha256
24085 (base32
24086 "0r3xm273lhdhzbs2mkgw1m2kwb7z1dh1pzya8yxy5vacda1l2ikl"))))
24087 (properties
24088 `((upstream-name . "shinycssloaders")))
24089 (build-system r-build-system)
24090 (propagated-inputs
24091 (list r-digest r-glue r-shiny))
24092 (home-page "https://github.com/andrewsali/shinycssloaders")
24093 (synopsis "Add CSS loading animations to Shiny outputs")
24094 (description
24095 "This package provides tools to create a lightweight Shiny wrapper for
24096 the css-loaders created by Luke Hass
24097 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
24098 automatically show a loader when the output is (re)calculating.")
24099 (license license:gpl3)))
24100
24101 (define-public r-rsvg
24102 (package
24103 (name "r-rsvg")
24104 (version "2.3.1")
24105 (source
24106 (origin
24107 (method url-fetch)
24108 (uri (cran-uri "rsvg" version))
24109 (sha256
24110 (base32
24111 "096w4d1gvfc65d4jg7ykp23k9f7cf7f8zvzfhvhd7qkfsbjpxqkj"))))
24112 (properties `((upstream-name . "rsvg")))
24113 (build-system r-build-system)
24114 (inputs
24115 (list librsvg zlib))
24116 (native-inputs
24117 (list pkg-config r-knitr))
24118 (home-page "https://github.com/jeroen/rsvg#readme")
24119 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
24120 (description
24121 "This package allows you to render vector-based SVG images into
24122 high-quality custom-size bitmap arrays using the librsvg2 library. The
24123 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
24124 addition, the package can convert images directly to various formats such as
24125 PDF or PostScript.")
24126 (license license:expat)))
24127
24128 (define-public r-influencer
24129 (package
24130 (name "r-influencer")
24131 (version "0.1.0.1")
24132 (source
24133 (origin
24134 (method url-fetch)
24135 (uri (cran-uri "influenceR" version))
24136 (sha256
24137 (base32
24138 "0rj7rm236vn3v8302nwl12s0kvpv6xpdbm3q3gxk7vgwfl8nzi33"))))
24139 (properties `((upstream-name . "influenceR")))
24140 (build-system r-build-system)
24141 (propagated-inputs
24142 (list r-igraph r-matrix))
24143 (home-page "https://github.com/rcc-uchicago/influenceR")
24144 (synopsis "Tools to quantify structural importance of nodes in a network")
24145 (description
24146 "This package provides functionality to compute various node centrality
24147 measures on networks. Included are functions to compute betweenness
24148 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
24149 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
24150 algorithm to identify key players, and Valente's bridging metric. The
24151 betweenness, Key Players, and bridging implementations are parallelized with
24152 OpenMP.")
24153 (license license:gpl2)))
24154
24155 (define-public r-emplik
24156 (package
24157 (name "r-emplik")
24158 (version "1.1-1")
24159 (source
24160 (origin
24161 (method url-fetch)
24162 (uri (cran-uri "emplik" version))
24163 (sha256
24164 (base32
24165 "1kw8g8j075bsicdvgkjf4870rfv5c30gvmw6qkkaz3ki22x74w77"))))
24166 (properties `((upstream-name . "emplik")))
24167 (build-system r-build-system)
24168 (propagated-inputs
24169 (list r-quantreg))
24170 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
24171 (synopsis "Empirical likelihood ratio for censored/truncated data")
24172 (description
24173 "This package provides empirical likelihood ratio tests for
24174 means/quantiles/hazards from possibly censored and/or truncated data. It also
24175 does regression.")
24176 (license license:gpl2+)))
24177
24178 (define-public r-imputeyn
24179 (package
24180 (name "r-imputeyn")
24181 (version "1.3")
24182 (source
24183 (origin
24184 (method url-fetch)
24185 (uri (cran-uri "imputeYn" version))
24186 (sha256
24187 (base32
24188 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
24189 (properties `((upstream-name . "imputeYn")))
24190 (build-system r-build-system)
24191 (propagated-inputs
24192 (list r-boot r-emplik r-mvtnorm r-quadprog r-survival))
24193 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
24194 (synopsis "Impute last largest censored observation under weighted least squares")
24195 (description
24196 "This package allows for the imputation of the last largest censored
24197 observantions. This method brings less bias and more efficient estimates for
24198 AFT models.")
24199 (license license:gpl2)))
24200
24201 (define-public r-adapenetclass
24202 (package
24203 (name "r-adapenetclass")
24204 (version "1.2")
24205 (source
24206 (origin
24207 (method url-fetch)
24208 (uri (cran-uri "AdapEnetClass" version))
24209 (sha256
24210 (base32
24211 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
24212 (properties `((upstream-name . "AdapEnetClass")))
24213 (build-system r-build-system)
24214 (propagated-inputs
24215 (list r-glmnet r-imputeyn r-lars r-quadprog))
24216 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
24217 (synopsis "Class of adaptive elastic net methods for censored data")
24218 (description
24219 "This package provides methods for variable selection for AFT models.")
24220 (license license:gpl2)))
24221
24222 (define-public r-flock
24223 (package
24224 (name "r-flock")
24225 (version "0.7")
24226 (source
24227 (origin
24228 (method url-fetch)
24229 (uri (cran-uri "flock" version))
24230 (sha256
24231 (base32
24232 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
24233 (properties `((upstream-name . "flock")))
24234 (build-system r-build-system)
24235 (propagated-inputs (list r-rcpp))
24236 (home-page "https://cran.r-project.org/web/packages/flock/")
24237 (synopsis "Process synchronization using file locks")
24238 (description
24239 "This package implements synchronization between R processes (spawned by
24240 using the @code{parallel} package for instance) using file locks. It supports
24241 both exclusive and shared locking.")
24242 (license license:asl2.0)))
24243
24244 (define-public r-archivist
24245 (package
24246 (name "r-archivist")
24247 (version "2.3.6")
24248 (source
24249 (origin
24250 (method url-fetch)
24251 (uri (cran-uri "archivist" version))
24252 (sha256
24253 (base32
24254 "0q1qysack30xzxdbvvi56rk7r85hsj4ghls9r70ki7bl3rqwr4c9"))))
24255 (properties `((upstream-name . "archivist")))
24256 (build-system r-build-system)
24257 (propagated-inputs
24258 (list r-dbi
24259 r-digest
24260 r-flock
24261 r-httr
24262 r-lubridate
24263 r-magrittr
24264 r-rcurl
24265 r-rsqlite))
24266 (native-inputs
24267 (list r-knitr))
24268 (home-page "https://pbiecek.github.io/archivist/")
24269 (synopsis "Tools for storing, restoring and searching for R objects")
24270 (description
24271 "Data exploration and modelling is a process in which a lot of data
24272 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
24273 statistical models, different versions of data sets and different versions of
24274 results. Archivist helps to store and manage artifacts created in R. It
24275 allows you to store selected artifacts as binary files together with their
24276 metadata and relations. Archivist allows sharing artifacts with others. It
24277 can look for already created artifacts by using its class, name, date of the
24278 creation or other properties. It also makes it easy to restore such
24279 artifacts.")
24280 (license license:gpl2)))
24281
24282 (define-public r-versions
24283 (package
24284 (name "r-versions")
24285 (version "0.3")
24286 (source
24287 (origin
24288 (method url-fetch)
24289 (uri (cran-uri "versions" version))
24290 (sha256
24291 (base32
24292 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
24293 (properties `((upstream-name . "versions")))
24294 (build-system r-build-system)
24295 (home-page "https://cran.r-project.org/web/packages/versions/")
24296 (synopsis "Query and install specific versions of CRAN packages")
24297 (description
24298 "This package allows you to install specified versions of R packages
24299 hosted on CRAN and provides functions to list available versions and the
24300 versions of currently installed packages.")
24301 (license license:bsd-3)))
24302
24303 (define-public r-adapr
24304 (package
24305 (name "r-adapr")
24306 (version "2.0.0")
24307 (source
24308 (origin
24309 (method url-fetch)
24310 (uri (cran-uri "adapr" version))
24311 (sha256
24312 (base32
24313 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
24314 (properties `((upstream-name . "adapr")))
24315 (build-system r-build-system)
24316 (propagated-inputs
24317 (list r-archivist
24318 r-devtools
24319 r-digest
24320 r-doparallel
24321 r-gdata
24322 r-ggplot2
24323 r-git2r
24324 r-igraph
24325 r-knitr
24326 r-plotly
24327 r-plyr
24328 r-rmarkdown
24329 r-shiny
24330 r-shinydashboard
24331 r-versions))
24332 (home-page "https://cran.r-project.org/web/packages/adapr/")
24333 (synopsis "Implementation of an accountable data analysis process")
24334 (description
24335 "This package tracks reading and writing within R scripts that are
24336 organized into a directed acyclic graph. It contains an interactive Shiny
24337 application @code{adaprApp()}. It uses Git and file hashes to track version
24338 histories of inputs and outputs.")
24339 (license license:lgpl2.0)))
24340
24341 (define-public r-adapsamp
24342 (package
24343 (name "r-adapsamp")
24344 (version "1.1.1")
24345 (source
24346 (origin
24347 (method url-fetch)
24348 (uri (cran-uri "AdapSamp" version))
24349 (sha256
24350 (base32
24351 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
24352 (properties `((upstream-name . "AdapSamp")))
24353 (build-system r-build-system)
24354 (propagated-inputs (list r-pracma))
24355 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
24356 (synopsis "Adaptive sampling algorithms")
24357 (description
24358 "For distributions whose probability density functions are log-concave,
24359 the adaptive rejection sampling algorithm can be used to build envelope
24360 functions for sampling. For others, the modified adaptive rejection sampling
24361 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
24362 adaptive slice sampling algorithm can be used. This R package mainly includes
24363 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
24364 @code{rASS()}. These functions can realize sampling based on the algorithms
24365 above.")
24366 (license license:gpl2)))
24367
24368 (define-public r-adaptalint
24369 (package
24370 (name "r-adaptalint")
24371 (version "0.2.4")
24372 (source
24373 (origin
24374 (method url-fetch)
24375 (uri (cran-uri "adaptalint" version))
24376 (sha256
24377 (base32
24378 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
24379 (properties `((upstream-name . "adaptalint")))
24380 (build-system r-build-system)
24381 (propagated-inputs
24382 (list r-dplyr r-lintr r-purrr))
24383 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
24384 (synopsis "Check R code style")
24385 (description
24386 "This package provides tools to infer the code style (which style rules
24387 are followed and which ones are not) from one package and use it to check
24388 another. This makes it easier to find and correct the most important problems
24389 first.")
24390 (license license:gpl3)))
24391
24392 (define-public r-fracdiff
24393 (package
24394 (name "r-fracdiff")
24395 (version "1.5-1")
24396 (source
24397 (origin
24398 (method url-fetch)
24399 (uri (cran-uri "fracdiff" version))
24400 (sha256
24401 (base32
24402 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
24403 (properties `((upstream-name . "fracdiff")))
24404 (build-system r-build-system)
24405 (home-page "https://github.com/mmaechler/fracdiff")
24406 (synopsis
24407 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
24408 (description
24409 "This package provides tools for the maximum likelihood estimation of the
24410 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
24411 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
24412 (license license:gpl2+)))
24413
24414 (define-public r-forecast
24415 (package
24416 (name "r-forecast")
24417 (version "8.16")
24418 (source
24419 (origin
24420 (method url-fetch)
24421 (uri (cran-uri "forecast" version))
24422 (sha256
24423 (base32
24424 "0zvn44k7npxai8kj0hgxaaqv1hgd8rxicnvj4cg7wfl8ba4yn0cz"))))
24425 (properties `((upstream-name . "forecast")))
24426 (build-system r-build-system)
24427 (propagated-inputs
24428 (list r-colorspace
24429 r-fracdiff
24430 r-ggplot2
24431 r-lmtest
24432 r-magrittr
24433 r-nnet
24434 r-rcpp
24435 r-rcpparmadillo
24436 r-timedate
24437 r-tseries
24438 r-urca
24439 r-zoo))
24440 (native-inputs
24441 (list r-knitr)) ; needed for vignettes
24442 (home-page "https://pkg.robjhyndman.com/forecast/")
24443 (synopsis "Forecasting functions for time series and linear models")
24444 (description
24445 "This package provides methods and tools for displaying and analysing
24446 univariate time series forecasts including exponential smoothing via state
24447 space models and automatic ARIMA modelling.")
24448 (license license:gpl3)))
24449
24450 (define-public r-formattable
24451 (package
24452 (name "r-formattable")
24453 (version "0.2.1")
24454 (source
24455 (origin
24456 (method url-fetch)
24457 (uri (cran-uri "formattable" version))
24458 (sha256
24459 (base32 "1vdxi0xmg019qyzjrp8bkjxciz245jcxsrkhfzd44ynqcwi4s3ag"))))
24460 (properties `((upstream-name . "formattable")))
24461 (build-system r-build-system)
24462 (propagated-inputs
24463 (list r-htmltools r-htmlwidgets r-lifecycle r-rmarkdown))
24464 (native-inputs
24465 (list r-knitr))
24466 (home-page "https://github.com/renkun-ken/formattable")
24467 (synopsis "Print vectors and data frames with text fromatting")
24468 (description
24469 "This R package provides functions to create formattable vectors and data
24470 frames. @emph{Formattable} vectors are printed with text formatting, and
24471 formattable data frames are printed with multiple types of formatting in HTML
24472 to improve the readability of data presented in tabular form rendered in web
24473 pages.")
24474 (license license:expat)))
24475
24476 (define-public r-xmisc
24477 (package
24478 (name "r-xmisc")
24479 (version "0.2.1")
24480 (source
24481 (origin
24482 (method url-fetch)
24483 (uri (cran-uri "Xmisc" version))
24484 (sha256
24485 (base32
24486 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
24487 (properties `((upstream-name . "Xmisc")))
24488 (build-system r-build-system)
24489 (home-page "https://cran.r-project.org/package=Xmisc")
24490 (synopsis
24491 "Xiaobei's miscellaneous classes and functions")
24492 (description
24493 "This package provides Xiaobei's miscellaneous classes and functions,
24494 which are useful when developing R packages for @dfn{object oriented
24495 programming} (OOP) using R Reference Class.")
24496 (license license:gpl2+)))
24497
24498 (define-public r-proxyc
24499 (package
24500 (name "r-proxyc")
24501 (version "0.2.4")
24502 (source
24503 (origin
24504 (method url-fetch)
24505 (uri (cran-uri "proxyC" version))
24506 (sha256
24507 (base32
24508 "1mcimswrx1cjjm7wsgkzfrgh3jpf4sncwfvdvg2f14fzfzy7afd6"))))
24509 (properties `((upstream-name . "proxyC")))
24510 (build-system r-build-system)
24511 (propagated-inputs
24512 (list r-matrix r-rcpp r-rcpparmadillo r-rcppparallel))
24513 (home-page "https://cran.r-project.org/package=proxyC")
24514 (synopsis "Compute proximity in large sparse matrices")
24515 (description
24516 "This package provides efficient tools to compute the proximity between
24517 rows or columns of large matrices. Functions are optimised for large sparse
24518 matrices using the Armadillo and Intel TBB libraries. Among several built-in
24519 similarity/distance measures, computation of correlation, cosine similarity
24520 and Euclidean distance is particularly fast.")
24521 (license license:gpl3)))
24522
24523 (define-public r-isocodes
24524 (package
24525 (name "r-isocodes")
24526 (version "2022.01.10")
24527 (source
24528 (origin
24529 (method url-fetch)
24530 (uri (cran-uri "ISOcodes" version))
24531 (sha256
24532 (base32
24533 "0gy7n5bgxnl4rawry0pg078bkks9lzsbsrwjq8q5cvxl4k3dwpdj"))))
24534 (properties `((upstream-name . "ISOcodes")))
24535 (build-system r-build-system)
24536 (home-page "https://cran.r-project.org/package=ISOcodes")
24537 (synopsis "Selected ISO codes")
24538 (description
24539 "This package provides ISO language, territory, currency, script and
24540 character codes. It provides ISO 639 language codes, ISO 3166 territory
24541 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
24542 character codes as well as the UN M.49 area codes.")
24543 (license license:gpl2)))
24544
24545 (define-public r-stopwords
24546 (package
24547 (name "r-stopwords")
24548 (version "2.3")
24549 (source
24550 (origin
24551 (method url-fetch)
24552 (uri (cran-uri "stopwords" version))
24553 (sha256
24554 (base32
24555 "1ci1cgxrcvlhhplximsfv0plvjdbcd5kv0nphxnpildsn5m1rv65"))))
24556 (properties `((upstream-name . "stopwords")))
24557 (build-system r-build-system)
24558 (propagated-inputs
24559 (list r-isocodes))
24560 (home-page "https://github.com/quanteda/stopwords")
24561 (synopsis "Multilingual stopword lists")
24562 (description
24563 "This package provides multiple sources of stopwords, for use in text
24564 analysis and natural language processing.")
24565 (license license:expat)))
24566
24567 (define-public r-spacyr
24568 (package
24569 (name "r-spacyr")
24570 (version "1.2.1")
24571 (source
24572 (origin
24573 (method url-fetch)
24574 (uri (cran-uri "spacyr" version))
24575 (sha256
24576 (base32
24577 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
24578 (properties `((upstream-name . "spacyr")))
24579 (build-system r-build-system)
24580 (propagated-inputs
24581 (list r-data-table r-reticulate))
24582 (home-page "https://spacyr.quanteda.io")
24583 (synopsis "R wrapper for the spaCy NLP library")
24584 (description
24585 "This package provides an R wrapper to the Python @dfn{natural language
24586 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
24587 (license license:gpl3)))
24588
24589 (define-public r-snowballc
24590 (package
24591 (name "r-snowballc")
24592 (version "0.7.0")
24593 (source
24594 (origin
24595 (method url-fetch)
24596 (uri (cran-uri "SnowballC" version))
24597 (sha256
24598 (base32
24599 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
24600 (properties `((upstream-name . "SnowballC")))
24601 (build-system r-build-system)
24602 (home-page "https://r-forge.r-project.org/projects/r-temis/")
24603 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
24604 (description
24605 "This package provides an R interface to the C @code{libstemmer} library
24606 that implements Porter's word stemming algorithm for collapsing words to a
24607 common root to aid comparison of vocabulary. Currently supported languages
24608 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
24609 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
24610 (license license:bsd-3)))
24611
24612 (define-public r-quanteda
24613 (package
24614 (name "r-quanteda")
24615 (version "3.2.1")
24616 (source
24617 (origin
24618 (method url-fetch)
24619 (uri (cran-uri "quanteda" version))
24620 (sha256
24621 (base32
24622 "102wlx6481fskgdr5wv467n29f666q0qg9kjm0ivqfg9xsbvza12"))))
24623 (properties `((upstream-name . "quanteda")))
24624 (build-system r-build-system)
24625 (propagated-inputs
24626 (list r-fastmatch
24627 r-magrittr
24628 r-matrix
24629 r-rcpp
24630 r-rcpparmadillo
24631 r-rcppparallel
24632 r-snowballc
24633 r-stopwords
24634 r-stringi
24635 r-xml2
24636 r-yaml))
24637 (native-inputs
24638 (list r-knitr))
24639 (home-page "https://quanteda.io")
24640 (synopsis "Quantitative analysis of textual data")
24641 (description
24642 "This package provides a fast, flexible, and comprehensive framework for
24643 quantitative text analysis in R. It provides functionality for corpus
24644 management, creating and manipulating tokens and ngrams, exploring keywords in
24645 context, forming and manipulating sparse matrices of documents by features and
24646 feature co-occurrences, analyzing keywords, computing feature similarities and
24647 distances, applying content dictionaries, applying supervised and unsupervised
24648 machine learning, visually representing text and text analyses, and more.")
24649 (license license:gpl3)))
24650
24651 (define-public r-topicmodels
24652 (package
24653 (name "r-topicmodels")
24654 (version "0.2-12")
24655 (source
24656 (origin
24657 (method url-fetch)
24658 (uri (cran-uri "topicmodels" version))
24659 (sha256
24660 (base32
24661 "1d6iizmn042b59q2y6qc82z19wq3xm0zvgkf8iqf8fdzh51kmn5g"))))
24662 (properties `((upstream-name . "topicmodels")))
24663 (build-system r-build-system)
24664 (inputs
24665 (list gsl))
24666 (propagated-inputs
24667 (list r-modeltools r-slam r-tm))
24668 (home-page "https://cran.r-project.org/package=topicmodels")
24669 (synopsis "Topic models")
24670 (description
24671 "This package provides an interface to the C code for @dfn{Latent
24672 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
24673 David M. Blei and co-authors and the C++ code for fitting LDA models using
24674 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
24675 (license license:gpl2)))
24676
24677 (define-public r-stm
24678 (package
24679 (name "r-stm")
24680 (version "1.3.6")
24681 (source
24682 (origin
24683 (method url-fetch)
24684 (uri (cran-uri "stm" version))
24685 (sha256
24686 (base32
24687 "0qwq4nin2n9fjd06852r8k7arvcgh46kcfb3lm21swgx6j8bgrhb"))))
24688 (properties `((upstream-name . "stm")))
24689 (build-system r-build-system)
24690 (propagated-inputs
24691 (list r-data-table
24692 r-glmnet
24693 r-lda
24694 r-matrix
24695 r-matrixstats
24696 r-quadprog
24697 r-quanteda
24698 r-rcpp
24699 r-rcpparmadillo
24700 r-slam
24701 r-stringr))
24702 (home-page "http://www.structuraltopicmodel.com/")
24703 (synopsis "Estimation of the Structural Topic Model")
24704 (description
24705 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
24706 topic models with document-level covariates. The package also includes tools
24707 for model selection, visualization, and estimation of topic-covariate
24708 regressions.")
24709 (license license:expat)))
24710
24711 (define-public r-polycor
24712 (package
24713 (name "r-polycor")
24714 (version "0.8-1")
24715 (source
24716 (origin
24717 (method url-fetch)
24718 (uri (cran-uri "polycor" version))
24719 (sha256
24720 (base32
24721 "0285rvx8238qp8dix0jq0cqq7ks8h6cjwsscbc7dx4n9nph56pzh"))))
24722 (properties `((upstream-name . "polycor")))
24723 (build-system r-build-system)
24724 (propagated-inputs
24725 (list r-admisc r-matrix r-mvtnorm))
24726 (home-page "https://r-forge.r-project.org/projects/polycor/")
24727 (synopsis "Polychoric and polyserial correlations")
24728 (description
24729 "This package provides tools to compute polychoric and polyserial
24730 correlations by quick \"two-step\" methods or ML, optionally with standard
24731 errors; tetrachoric and biserial correlations are special cases.")
24732 (license license:gpl2+)))
24733
24734 (define-public r-msm
24735 (package
24736 (name "r-msm")
24737 (version "1.6.9")
24738 (source
24739 (origin
24740 (method url-fetch)
24741 (uri (cran-uri "msm" version))
24742 (sha256
24743 (base32
24744 "08vhazswyxr3y1zb9y60mbg3bappzlizxml8s08p65mh82xxkz5f"))))
24745 (properties `((upstream-name . "msm")))
24746 (build-system r-build-system)
24747 (propagated-inputs
24748 (list r-expm r-mvtnorm r-survival))
24749 (home-page "https://github.com/chjackson/msm")
24750 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
24751 (description
24752 "This package provides functions for fitting continuous-time Markov and
24753 hidden Markov multi-state models to longitudinal data. It was designed for
24754 processes observed at arbitrary times in continuous time (panel data) but some
24755 other observation schemes are supported. Both Markov transition rates and the
24756 hidden Markov output process can be modelled in terms of covariates, which may
24757 be constant or piecewise-constant in time.")
24758 (license license:gpl2+)))
24759
24760 (define-public r-ltm
24761 (package
24762 (name "r-ltm")
24763 (version "1.2-0")
24764 (source
24765 (origin
24766 (method url-fetch)
24767 (uri (cran-uri "ltm" version))
24768 (sha256
24769 (base32
24770 "0vhgbk6j0z3limsrbjkjkpfn2whiaij5j4jf1gg66mjs9dlylap1"))))
24771 (properties `((upstream-name . "ltm")))
24772 (build-system r-build-system)
24773 (propagated-inputs
24774 (list r-mass r-msm r-polycor))
24775 (home-page "https://github.com/drizopoulos/ltm")
24776 (synopsis "Latent trait models under IRT")
24777 (description
24778 "This is a package supporting the analysis of multivariate dichotomous
24779 and polytomous data using latent trait models under the Item Response Theory
24780 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
24781 Three-Parameter, the Graded Response, and the Generalized Partial Credit
24782 Models.")
24783 (license license:gpl2+)))
24784
24785 (define-public r-mi
24786 (package
24787 (name "r-mi")
24788 (version "1.0")
24789 (source
24790 (origin
24791 (method url-fetch)
24792 (uri (cran-uri "mi" version))
24793 (sha256
24794 (base32
24795 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
24796 (properties `((upstream-name . "mi")))
24797 (build-system r-build-system)
24798 (propagated-inputs
24799 (list r-arm r-matrix))
24800 (home-page "http://www.stat.columbia.edu/~gelman/")
24801 (synopsis "Missing data imputation and model checking")
24802 (description
24803 "This package provides functions for data manipulation, imputing missing
24804 values in an approximate Bayesian framework, diagnostics of the models used to
24805 generate the imputations, confidence-building mechanisms to validate some of
24806 the assumptions of the imputation algorithm, and functions to analyze multiply
24807 imputed data sets with the appropriate degree of sampling uncertainty.")
24808 (license license:gpl2+)))
24809
24810 (define-public r-matrixcalc
24811 (package
24812 (name "r-matrixcalc")
24813 (version "1.0-5")
24814 (source
24815 (origin
24816 (method url-fetch)
24817 (uri (cran-uri "matrixcalc" version))
24818 (sha256
24819 (base32
24820 "1jkgl1v1q7cqpl1rf49qahdr9y0f33f0ldsbgby8xhfv0vpy21jr"))))
24821 (properties `((upstream-name . "matrixcalc")))
24822 (build-system r-build-system)
24823 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
24824 (synopsis "Collection of functions for matrix calculations")
24825 (description
24826 "This package provides a collection of functions to support matrix
24827 calculations for probability, econometric and numerical analysis. There are
24828 additional functions that are comparable to APL functions which are useful for
24829 actuarial models such as pension mathematics.")
24830 (license license:gpl2+)))
24831
24832 (define-public r-matrixextra
24833 (package
24834 (name "r-matrixextra")
24835 (version "0.1.10")
24836 (source
24837 (origin
24838 (method url-fetch)
24839 (uri (cran-uri "MatrixExtra" version))
24840 (sha256
24841 (base32 "00f6sgw6p2709gs3df68yr59nvsr429pk9xql71id3kachjzh618"))))
24842 (properties `((upstream-name . "MatrixExtra")))
24843 (build-system r-build-system)
24844 (propagated-inputs
24845 (list r-float r-matrix r-rcpp r-rhpcblasctl))
24846 (native-inputs
24847 (list r-knitr))
24848 (home-page "https://github.com/david-cortes/MatrixExtra")
24849 (synopsis "Extra methods for sparse matrices")
24850 (description
24851 "This package extends sparse matrix and vector classes from the Matrix
24852 package by providing:
24853
24854 @enumerate
24855 @item Methods and operators that work natively on CSR formats (compressed
24856 sparse row, a.k.a. @code{RsparseMatrix}) such as slicing/sub-setting,
24857 assignment, @code{rbind()}, mathematical operators for CSR and COO such as
24858 addition or @code{sqrt()}, and methods such as @code{diag()};
24859 @item Multi-threaded matrix multiplication and cross-product for many
24860 @code{<sparse, dense>} types, including the @code{float32} type from
24861 @code{float};
24862 @item Coercion methods between pairs of classes which are not present in
24863 @code{Matrix}, such as from @code{dgCMatrix} to @code{ngRMatrix}, as well as
24864 convenience conversion functions;
24865 @item Utility functions for sparse matrices such as sorting the indices or
24866 removing zero-valued entries;
24867 @item Fast transposes that work by outputting in the opposite storage format;
24868 @item Faster replacements for many @code{Matrix} methods for all sparse types,
24869 such as slicing and elementwise multiplication.
24870 @item Convenience functions for sparse objects, such as @code{mapSparse} or a
24871 shorter @code{show} method.
24872 @end enumerate
24873 ")
24874 (license license:gpl2+)))
24875
24876 (define-public r-sem
24877 (package
24878 (name "r-sem")
24879 (version "3.1-15")
24880 (source
24881 (origin
24882 (method url-fetch)
24883 (uri (cran-uri "sem" version))
24884 (sha256
24885 (base32
24886 "05hk72zxvyv6kkjhk5y6qw253c64108az7030z8j1sz8wq03n0md"))))
24887 (properties `((upstream-name . "sem")))
24888 (build-system r-build-system)
24889 (propagated-inputs
24890 (list r-boot r-mass r-mi))
24891 (home-page "https://cran.r-project.org/package=sem")
24892 (synopsis "Structural equation models")
24893 (description
24894 "This package provides functions for fitting general linear structural
24895 equation models (with observed and latent variables) using the RAM approach,
24896 and for fitting structural equations in observed-variable models by two-stage
24897 least squares.")
24898 (license license:gpl2+)))
24899
24900 (define-public r-semtools
24901 (package
24902 (name "r-semtools")
24903 (version "0.5-6")
24904 (source
24905 (origin
24906 (method url-fetch)
24907 (uri (cran-uri "semTools" version))
24908 (sha256
24909 (base32
24910 "1wnakz76c4mgkwvx3iycmvgrzqys860jg9zpkba0ln5c08ycw8pm"))))
24911 (properties `((upstream-name . "semTools")))
24912 (build-system r-build-system)
24913 (propagated-inputs
24914 (list r-lavaan r-pbivnorm))
24915 (home-page "https://github.com/simsem/semTools/wiki")
24916 (synopsis "Useful tools for structural equation modeling")
24917 (description
24918 "This package provides useful tools for structural equation modeling.")
24919 (license license:gpl2+)))
24920
24921 (define-public r-regsem
24922 (package
24923 (name "r-regsem")
24924 (version "1.8.0")
24925 (source
24926 (origin
24927 (method url-fetch)
24928 (uri (cran-uri "regsem" version))
24929 (sha256
24930 (base32
24931 "1v33wkrsawcvaa06cijp8ybwi82a0x34y59hdknwdbywplnirzr8"))))
24932 (properties `((upstream-name . "regsem")))
24933 (build-system r-build-system)
24934 (propagated-inputs
24935 (list r-lavaan r-rcpp r-rcpparmadillo r-rsolnp))
24936 (native-inputs
24937 (list r-knitr))
24938 (home-page "https://cran.r-project.org/package=regsem")
24939 (synopsis "Regularized structural equation modeling")
24940 (description
24941 "This package uses both ridge and lasso penalties (and extensions) to
24942 penalize specific parameters in structural equation models. The package
24943 offers additional cost functions, cross validation, and other extensions
24944 beyond traditional structural equation models. It also contains a function to
24945 perform @dfn{exploratory mediation} (XMed).")
24946 (license license:gpl2+)))
24947
24948 (define-public r-stanheaders
24949 (package
24950 (name "r-stanheaders")
24951 (version "2.21.0-7")
24952 (source
24953 (origin
24954 (method url-fetch)
24955 (uri (cran-uri "StanHeaders" version))
24956 (sha256
24957 (base32
24958 "0srkyawyiykn3p5lw1z3zf18s4ax4iasv1ci3l1px40f9w36wm17"))))
24959 (properties `((upstream-name . "StanHeaders")))
24960 (build-system r-build-system)
24961 (inputs (list pandoc))
24962 (propagated-inputs
24963 (list r-rcppeigen r-rcppparallel))
24964 (native-inputs
24965 (list gfortran r-knitr)) ; for vignettes
24966 (home-page "https://mc-stan.org/")
24967 (synopsis "C++ header files for Stan")
24968 (description
24969 "The C++ header files of the Stan project are provided by this package.
24970 There is a shared object containing part of the @code{CVODES} library, but it
24971 is not accessible from R. @code{r-stanheaders} is only useful for developers
24972 who want to utilize the @code{LinkingTo} directive of their package's
24973 DESCRIPTION file to build on the Stan library without incurring unnecessary
24974 dependencies.
24975
24976 The Stan project develops a probabilistic programming language that implements
24977 full or approximate Bayesian statistical inference via Markov Chain Monte
24978 Carlo or variational methods and implements (optionally penalized) maximum
24979 likelihood estimation via optimization. The Stan library includes an advanced
24980 automatic differentiation scheme, templated statistical and linear algebra
24981 functions that can handle the automatically differentiable scalar types (and
24982 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
24983 package provides user-facing R functions to parse, compile, test, estimate,
24984 and analyze Stan models.")
24985 (license license:bsd-3)))
24986
24987 (define-public r-rpf
24988 (package
24989 (name "r-rpf")
24990 (version "1.0.11")
24991 (source
24992 (origin
24993 (method url-fetch)
24994 (uri (cran-uri "rpf" version))
24995 (sha256
24996 (base32
24997 "1yr1i7kswq57mcxv05lh7bvbicz1djqxcl6f13dlgsf3ww56gzg1"))))
24998 (properties `((upstream-name . "rpf")))
24999 (build-system r-build-system)
25000 (propagated-inputs
25001 (list r-lifecycle r-mvtnorm r-rcpp r-rcppeigen))
25002 (native-inputs
25003 (list r-knitr))
25004 (home-page "https://github.com/jpritikin/rpf")
25005 (synopsis "Response probability functions")
25006 (description
25007 "The purpose of this package is to factor out logic and math common to
25008 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
25009 core support code suitable for more specialized IRT packages to build upon.
25010 Complete access to optimized C functions is made available with
25011 @code{R_RegisterCCallable()}.")
25012 (license license:gpl3+)))
25013
25014 (define-public r-openmx
25015 (package
25016 (name "r-openmx")
25017 (version "2.20.6")
25018 (source
25019 (origin
25020 (method url-fetch)
25021 (uri (cran-uri "OpenMx" version))
25022 (sha256
25023 (base32
25024 "1v969100hllh0lwlxd2gv0k7krrsp9gc07iinx0nn04wkzh0rib5"))))
25025 (properties `((upstream-name . "OpenMx")))
25026 (build-system r-build-system)
25027 (propagated-inputs
25028 (list r-bh
25029 r-digest
25030 r-lifecycle
25031 r-mass
25032 r-matrix
25033 r-rcpp
25034 r-rcppeigen
25035 r-rcppparallel
25036 r-rpf
25037 r-stanheaders))
25038 (native-inputs (list r-knitr gfortran))
25039 (home-page "http://openmx.ssri.psu.edu")
25040 (synopsis "Extended structural equation modelling")
25041 (description
25042 "This package allows for the estimation of a wide variety of advanced
25043 multivariate statistical models. It consists of a library of functions and
25044 optimizers that allow you to quickly and flexibly define an SEM model and
25045 estimate parameters given observed data.")
25046 (license license:asl2.0)))
25047
25048 (define-public r-kutils
25049 (package
25050 (name "r-kutils")
25051 (version "1.70")
25052 (source
25053 (origin
25054 (method url-fetch)
25055 (uri (cran-uri "kutils" version))
25056 (sha256
25057 (base32
25058 "06jk66wbq3jmdf2jdhqns6r3yk36l2x7c907x977zv80sqxa1l37"))))
25059 (properties `((upstream-name . "kutils")))
25060 (build-system r-build-system)
25061 (propagated-inputs
25062 (list r-foreign r-openxlsx r-plyr r-runit r-xtable))
25063 (home-page "https://cran.r-project.org/package=kutils")
25064 (synopsis "Project management tools")
25065 (description
25066 "This package provides tools for data importation, recoding, and
25067 inspection. There are functions to create new project folders, R code
25068 templates, create uniquely named output directories, and to quickly obtain a
25069 visual summary for each variable in a data frame. The main feature here is
25070 the systematic implementation of the \"variable key\" framework for data
25071 importation and recoding.")
25072 (license license:gpl2)))
25073
25074 (define-public r-rockchalk
25075 (package
25076 (name "r-rockchalk")
25077 (version "1.8.152")
25078 (source
25079 (origin
25080 (method url-fetch)
25081 (uri (cran-uri "rockchalk" version))
25082 (sha256
25083 (base32
25084 "1d15jlgcy35pvaicaddd4zrhwm5ajb9yc3jk6dyxm99gc5wcn6h3"))))
25085 (properties `((upstream-name . "rockchalk")))
25086 (build-system r-build-system)
25087 (propagated-inputs
25088 (list r-cardata r-kutils r-lme4 r-mass))
25089 (home-page "https://cran.r-project.org/package=rockchalk")
25090 (synopsis "Regression estimation and presentation")
25091 (description
25092 "This package provides a collection of functions for interpretation and
25093 presentation of regression analysis. These functions are used to produce the
25094 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
25095 includes regression diagnostics, regression tables, and plots of interactions
25096 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
25097 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
25098 fairly comprehensive overview.")
25099 (license license:gpl3+)))
25100
25101 (define-public r-lisreltor
25102 (package
25103 (name "r-lisreltor")
25104 (version "0.1.5")
25105 (source
25106 (origin
25107 (method url-fetch)
25108 (uri (cran-uri "lisrelToR" version))
25109 (sha256
25110 (base32
25111 "0i51v0x87277ly0kggdd594w6q4zq62b4n7xs9r25j08bzs82nfk"))))
25112 (properties `((upstream-name . "lisrelToR")))
25113 (build-system r-build-system)
25114 (home-page "https://cran.r-project.org/package=lisrelToR")
25115 (synopsis "Import output from LISREL into R")
25116 (description
25117 "This is an unofficial package aimed at automating the import of LISREL
25118 output in R.")
25119 (license license:gpl2)))
25120
25121 (define-public r-bdgraph
25122 (package
25123 (name "r-bdgraph")
25124 (version "2.67")
25125 (source
25126 (origin
25127 (method url-fetch)
25128 (uri (cran-uri "BDgraph" version))
25129 (sha256
25130 (base32
25131 "0s2j4462zlgyjnqvvvxg4lynhmwwnjaw1cr1chzmagfvaj94qhhz"))))
25132 (properties `((upstream-name . "BDgraph")))
25133 (build-system r-build-system)
25134 (propagated-inputs
25135 (list r-igraph))
25136 (native-inputs
25137 (list r-knitr))
25138 (home-page "https://www.uva.nl/profile/a.mohammadi")
25139 (synopsis "Bayesian structure learning in graphical models")
25140 (description
25141 "This package provides statistical tools for Bayesian structure learning
25142 in undirected graphical models for continuous, discrete, and mixed data. It
25143 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
25144 on a continuous-time birth-death process.")
25145 (license license:gpl2+)))
25146
25147 (define-public r-d3network
25148 (package
25149 (name "r-d3network")
25150 (version "0.5.2.1")
25151 (source
25152 (origin
25153 (method url-fetch)
25154 (uri (cran-uri "d3Network" version))
25155 (sha256
25156 (base32
25157 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
25158 (properties `((upstream-name . "d3Network")))
25159 (build-system r-build-system)
25160 (propagated-inputs
25161 (list r-plyr r-rjson r-whisker))
25162 (home-page "http://christophergandrud.github.io/d3Network/")
25163 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
25164 (description
25165 "This package is intended to make it easy to create D3 JavaScript
25166 network, tree, dendrogram, and Sankey graphs from R using data frames.")
25167 (license license:gpl3+)))
25168
25169 (define-public r-qgraph
25170 (package
25171 (name "r-qgraph")
25172 (version "1.9.2")
25173 (source
25174 (origin
25175 (method url-fetch)
25176 (uri (cran-uri "qgraph" version))
25177 (sha256
25178 (base32
25179 "0r225b7rnsv6wz41ij0msmqr1xy0iqxh9dbsvjixbi1hvgv91wds"))))
25180 (properties `((upstream-name . "qgraph")))
25181 (build-system r-build-system)
25182 (propagated-inputs
25183 (list r-abind
25184 r-colorspace
25185 r-corpcor
25186 r-fdrtool
25187 r-ggplot2
25188 r-glasso
25189 r-gtools
25190 r-hmisc
25191 r-igraph
25192 r-jpeg
25193 r-lavaan
25194 r-matrix
25195 r-pbapply
25196 r-plyr
25197 r-png
25198 r-psych
25199 r-rcpp
25200 r-reshape2))
25201 (home-page "http://sachaepskamp.com/qgraph/")
25202 (synopsis "Weighted network visualization and analysis")
25203 (description
25204 "This package implements tools for weighted network visualization and
25205 analysis, as well as Gaussian graphical model computation. It contains graph
25206 plotting methods, and tools for psychometric data visualization and graphical
25207 model estimation. See Epskamp et al. (2012)
25208 @url{doi:10.18637/jss.v048.i04}.")
25209 (license license:gpl2)))
25210
25211 (define-public r-semplot
25212 (package
25213 (name "r-semplot")
25214 (version "1.1.5")
25215 (source
25216 (origin
25217 (method url-fetch)
25218 (uri (cran-uri "semPlot" version))
25219 (sha256
25220 (base32
25221 "0d7v9yqc9nhx3hdrp444w1ah66zai3lg5y778m85r7ngh1prxlvc"))))
25222 (properties `((upstream-name . "semPlot")))
25223 (build-system r-build-system)
25224 (propagated-inputs
25225 (list r-colorspace
25226 r-corpcor
25227 r-igraph
25228 r-lavaan
25229 r-lisreltor
25230 r-openmx
25231 r-plyr
25232 r-qgraph
25233 r-rockchalk
25234 r-sem
25235 r-xml))
25236 (home-page "https://github.com/SachaEpskamp/semPlot")
25237 (synopsis "Unified visualizations of structural equation models")
25238 (description
25239 "Structural equation modeling (SEM) has a long history of representing
25240 models graphically as path diagrams. The semPlot package for R fills the gap
25241 between advanced, but time-consuming, graphical software and the limited
25242 graphics produced automatically by SEM software. In addition, semPlot offers
25243 more functionality than drawing path diagrams: it can act as a common ground
25244 for importing SEM results into R. Any result usable as input to semPlot can
25245 also be represented in any of the three popular SEM frame-works, as well as
25246 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
25247 (license license:gpl2)))
25248
25249 (define-public r-cdm
25250 (package
25251 (name "r-cdm")
25252 (version "8.1-12")
25253 (source
25254 (origin
25255 (method url-fetch)
25256 (uri (cran-uri "CDM" version))
25257 (sha256
25258 (base32
25259 "1cnk19k09cj81ic43rwbvcalvczfca4ncdyy8r1gyc8fzf2glb0i"))))
25260 (properties `((upstream-name . "CDM")))
25261 (build-system r-build-system)
25262 (propagated-inputs
25263 (list r-mvtnorm r-polycor r-rcpp r-rcpparmadillo))
25264 (home-page
25265 "https://github.com/alexanderrobitzsch/CDM")
25266 (synopsis "Cognitive diagnosis modeling")
25267 (description
25268 "This package provides functions for cognitive diagnosis modeling and
25269 multidimensional item response modeling for dichotomous and polytomous item
25270 responses. It enables the estimation of the DINA and DINO model, the multiple
25271 group (polytomous) GDINA model, the multiple choice DINA model, the general
25272 diagnostic model (GDM), the structured latent class model (SLCA), and
25273 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
25274 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
25275 estimation and the package structure. For tutorials on how to use the CDM
25276 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
25277 well as Ravand and Robitzsch (2015).")
25278 (license license:gpl2+)))
25279
25280 (define-public r-tam
25281 (package
25282 (name "r-tam")
25283 (version "4.0-16")
25284 (source
25285 (origin
25286 (method url-fetch)
25287 (uri (cran-uri "TAM" version))
25288 (sha256
25289 (base32
25290 "00ww277hsyci5rph4gb155h0y95dmjhqgn9amz6g8zbrjb2748dw"))))
25291 (properties `((upstream-name . "TAM")))
25292 (build-system r-build-system)
25293 (propagated-inputs
25294 (list r-cdm r-rcpp r-rcpparmadillo))
25295 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
25296 (synopsis "Test analysis modules")
25297 (description
25298 "This package includes tools for marginal maximum likelihood estimation
25299 and joint maximum likelihood estimation for unidimensional and
25300 multidimensional item response models. The package functionality covers the
25301 Rasch model, 2PL model, 3PL model, generalized partial credit model,
25302 multi-faceted Rasch model, nominal item response model, structured latent
25303 class model, mixture distribution IRT models, and located latent class models.
25304 Latent regression models and plausible value imputation are also supported.")
25305 (license license:gpl2+)))
25306
25307 (define-public r-erm
25308 (package
25309 (name "r-erm")
25310 (version "1.0-2")
25311 (source
25312 (origin
25313 (method url-fetch)
25314 (uri (cran-uri "eRm" version))
25315 (sha256
25316 (base32
25317 "0smym010kswc5vx90qr3x1vl16xj1x1i54rvrj006dc4agc1vmlk"))))
25318 (properties `((upstream-name . "eRm")))
25319 (build-system r-build-system)
25320 (propagated-inputs
25321 (list r-colorspace r-lattice r-mass r-matrix r-psych))
25322 (native-inputs (list gfortran))
25323 (home-page "https://cran.r-project.org/package=eRm")
25324 (synopsis "Extended Rasch modeling")
25325 (description
25326 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
25327 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
25328 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
25329 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
25330 data matrix. Additional features are the ML estimation of the person
25331 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
25332 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
25333 infit and outfit measures, ICC and other plots, automated stepwise item
25334 elimination, and a simulation module for various binary data matrices.")
25335 (license license:gpl3)))
25336
25337 (define-public r-irtoys
25338 (package
25339 (name "r-irtoys")
25340 (version "0.2.2")
25341 (source
25342 (origin
25343 (method url-fetch)
25344 (uri (cran-uri "irtoys" version))
25345 (sha256
25346 (base32
25347 "1qshz6czykgf53mq6xiswzv5xsjwrkrinpfkf1yavql4v08hs82b"))))
25348 (properties `((upstream-name . "irtoys")))
25349 (build-system r-build-system)
25350 (propagated-inputs
25351 (list r-ltm r-sm))
25352 (native-inputs
25353 (list r-knitr))
25354 (home-page "https://cran.r-project.org/package=irtoys")
25355 (synopsis "Collection of functions related to Item Response Theory (IRT)")
25356 (description
25357 "This package provides a collection of functions useful in learning and
25358 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
25359 programs. It provides basic CTT analysis, a simple common interface to the
25360 estimation of item parameters in IRT models for binary responses with three
25361 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
25362 EAP, WLE, plausible values), item and person fit statistics, scaling
25363 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
25364 array of parametric and non-parametric (kernel) plots. It estimates and plots
25365 Haberman's interaction model when all items are dichotomously scored.")
25366 (license license:gpl2+)))
25367
25368 (define-public r-iheatmapr
25369 (package
25370 (name "r-iheatmapr")
25371 (version "0.5.1")
25372 (source
25373 (origin
25374 (method url-fetch)
25375 (uri (cran-uri "iheatmapr" version))
25376 (sha256
25377 (base32
25378 "1pwkwh7ljlpr6zyz6j8knpz3iw60xzkw8amc98x4pc2mw148jvzx"))))
25379 (properties `((upstream-name . "iheatmapr")))
25380 (build-system r-build-system)
25381 (propagated-inputs
25382 (list r-fastcluster
25383 r-ggdendro
25384 r-htmlwidgets
25385 r-jsonlite
25386 r-knitr
25387 r-magrittr
25388 r-rcolorbrewer
25389 r-scales))
25390 (native-inputs
25391 (list r-knitr))
25392 (home-page "https://docs.ropensci.org/iheatmapr")
25393 (synopsis "Interactive, Complex Heatmaps")
25394 (description
25395 "iheatmapr is an R package for building complex, interactive heatmaps
25396 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
25397 subplots along the rows or columns of the main heatmap add more information
25398 about each row or column. For example, a one column additional heatmap may
25399 indicate what group a particular row or column belongs to. Complex heatmaps
25400 may also include multiple side by side heatmaps which show different types of
25401 data for the same conditions. Interactivity can improve complex heatmaps by
25402 providing tooltips with information about each cell and enabling zooming into
25403 interesting features. iheatmapr uses the plotly library for interactivity.")
25404 (license license:expat)))
25405
25406 (define-public r-packrat
25407 (package
25408 (name "r-packrat")
25409 (version "0.8.0")
25410 (source
25411 (origin
25412 (method url-fetch)
25413 (uri (cran-uri "packrat" version))
25414 (sha256
25415 (base32
25416 "1vs4i19x6jdwl3jnanp127k4hk80h1mj56cjn07w1gkl542vj99h"))))
25417 (properties `((upstream-name . "packrat")))
25418 (build-system r-build-system)
25419 (home-page "https://github.com/rstudio/packrat/")
25420 (synopsis "Dependency management R projects")
25421 (description
25422 "This package provides a dependency manager for R projects that allows
25423 you to manage the R packages your project depends on in an isolated, portable,
25424 and reproducible way.")
25425 (license license:gpl2)))
25426
25427 (define-public r-rsconnect
25428 (package
25429 (name "r-rsconnect")
25430 (version "0.8.25")
25431 (source
25432 (origin
25433 (method url-fetch)
25434 (uri (cran-uri "rsconnect" version))
25435 (sha256
25436 (base32
25437 "1kyr4v7vds2yw3xmkk2yr56ylz1h95944brylwvwmwj5yxvm419w"))))
25438 (properties `((upstream-name . "rsconnect")))
25439 (build-system r-build-system)
25440 (propagated-inputs
25441 (list r-curl
25442 r-digest
25443 r-jsonlite
25444 r-openssl
25445 r-packrat
25446 r-rstudioapi
25447 r-yaml))
25448 (home-page "https://github.com/rstudio/rsconnect")
25449 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
25450 (description
25451 "This package provides a programmatic deployment interface for RPubs,
25452 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
25453 documents, Shiny applications, Plumber APIs, plots, and static web content.")
25454 (license license:gpl2)))
25455
25456 ;; This package includes minified JavaScript files. When upgrading please
25457 ;; check that there are no new minified JavaScript files.
25458 (define-public r-dygraphs
25459 (package
25460 (name "r-dygraphs")
25461 (version "1.1.1.6")
25462 (source
25463 (origin
25464 (method url-fetch)
25465 (uri (cran-uri "dygraphs" version))
25466 (sha256
25467 (base32
25468 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
25469 (properties `((upstream-name . "dygraphs")))
25470 (build-system r-build-system)
25471 (arguments
25472 `(#:modules ((guix build utils)
25473 (guix build r-build-system)
25474 (srfi srfi-1)
25475 (ice-9 popen))
25476 #:phases
25477 (modify-phases %standard-phases
25478 (add-after 'unpack 'process-javascript
25479 (lambda* (#:key inputs #:allow-other-keys)
25480 (with-directory-excursion "inst/htmlwidgets/lib/"
25481 (call-with-values
25482 (lambda ()
25483 (unzip2
25484 `(("dygraphs/dygraph-combined-dev.js"
25485 "dygraph-combined.js")
25486 (,(assoc-ref inputs "js-jquery")
25487 "jquery/jquery.min.js")
25488 (,(assoc-ref inputs "js-fquarter")
25489 "fquarter/moment-fquarter.min.js"))))
25490 (lambda (sources targets)
25491 (for-each (lambda (source target)
25492 (format #t "Processing ~a --> ~a~%"
25493 source target)
25494 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
25495 (call-with-output-file target
25496 (lambda (port)
25497 (dump-port minified port)))))
25498 sources targets))))
25499 #t)))))
25500 (native-inputs
25501 `(("uglifyjs" ,node-uglify-js)
25502 ;; They actually use version 1.11.1, but this more recent version
25503 ;; should be just fine.
25504 ("js-jquery"
25505 ,(origin
25506 (method url-fetch)
25507 (uri "https://code.jquery.com/jquery-1.12.4.js")
25508 (sha256
25509 (base32
25510 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
25511 ("js-fquarter"
25512 ,(origin
25513 (method url-fetch)
25514 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
25515 "moment-fquarter/1.0.1/moment-fquarter.js"))
25516 (sha256
25517 (base32
25518 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
25519 (propagated-inputs
25520 (list r-htmltools r-htmlwidgets r-magrittr r-xts r-zoo))
25521 (home-page "https://github.com/rstudio/dygraphs")
25522 (synopsis "Interface to Dygraphs interactive time series charting library")
25523 (description
25524 "This package provides an R interface to the dygraphs JavaScript charting
25525 library (a copy of which is included in the package). It provides rich
25526 facilities for charting time-series data in R, including highly configurable
25527 series- and axis-display and interactive features like zoom/pan and
25528 series/point highlighting.")
25529 (license license:expat)))
25530
25531 (define-public r-shinystan
25532 (package
25533 (name "r-shinystan")
25534 (version "2.6.0")
25535 (source
25536 (origin
25537 (method url-fetch)
25538 (uri (cran-uri "shinystan" version))
25539 (sha256
25540 (base32
25541 "0afm703zriyqprz1zvypir80lq2ylfff3qvj5i7p9n365mm8b150"))))
25542 (properties `((upstream-name . "shinystan")))
25543 (build-system r-build-system)
25544 (propagated-inputs
25545 (list r-bayesplot
25546 r-colourpicker
25547 r-dt
25548 r-dygraphs
25549 r-ggplot2
25550 r-gridextra
25551 r-gtools
25552 r-markdown
25553 r-reshape2
25554 r-rstan
25555 r-shiny
25556 r-shinyjs
25557 r-shinythemes
25558 r-threejs
25559 r-xtable
25560 r-xts))
25561 (home-page "https://mc-stan.org/")
25562 (synopsis "Interactive visual and numerical analysis for Bayesian models")
25563 (description
25564 "This package provides a graphical user interface for interactive
25565 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
25566 for analyzing a posterior sample. The interface is powered by the Shiny web
25567 application framework and works with the output of MCMC programs written in
25568 any programming language (and has extended functionality for Stan models fit
25569 using the @code{rstan} and @code{rstanarm} packages).")
25570 (license license:gpl3+)))
25571
25572 (define-public r-rstantools
25573 (package
25574 (name "r-rstantools")
25575 (version "2.2.0")
25576 (source
25577 (origin
25578 (method url-fetch)
25579 (uri (cran-uri "rstantools" version))
25580 (sha256
25581 (base32
25582 "1dsfgi02hps878n3vimfdbzpm4gr5n3ccrmnc61ncrqcp6p0p0fb"))))
25583 (properties `((upstream-name . "rstantools")))
25584 (build-system r-build-system)
25585 (inputs (list pandoc))
25586 (propagated-inputs
25587 (list r-desc r-rcpp r-rcppparallel))
25588 (native-inputs
25589 (list r-knitr))
25590 (home-page "https://mc-stan.org/rstantools/")
25591 (synopsis "Tools for developing R packages interfacing with Stan")
25592 (description
25593 "This package provides various tools for developers of R packages
25594 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
25595 up the required package structure, S3 generics and default methods to unify
25596 function naming across Stan-based R packages, and vignettes with
25597 recommendations for developers.")
25598 (license license:gpl3+)))
25599
25600 (define-public r-loo
25601 (package
25602 (name "r-loo")
25603 (version "2.5.1")
25604 (source
25605 (origin
25606 (method url-fetch)
25607 (uri (cran-uri "loo" version))
25608 (sha256
25609 (base32 "1wa5hxk7lkr88mway6b7xd5arrkkl2ldl9rf0v1nqwp8lia2ysl6"))))
25610 (properties `((upstream-name . "loo")))
25611 (build-system r-build-system)
25612 (inputs
25613 (list pandoc))
25614 (propagated-inputs
25615 (list r-checkmate r-matrixstats))
25616 (native-inputs
25617 (list r-knitr))
25618 (home-page "https://mc-stan.org/loo/")
25619 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
25620 (description
25621 "This package provides an implementation of efficient approximate
25622 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
25623 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
25624 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
25625 procedure for regularizing importance weights. As a byproduct of the
25626 calculations, we also obtain approximate standard errors for estimated
25627 predictive errors and for the comparison of predictive errors between models.
25628 The package also provides methods for using stacking and other model weighting
25629 techniques to average Bayesian predictive distributions.")
25630 (license license:gpl3+)))
25631
25632 (define-public r-rstan
25633 (package
25634 (name "r-rstan")
25635 (version "2.21.5")
25636 (source
25637 (origin
25638 (method url-fetch)
25639 (uri (cran-uri "rstan" version))
25640 (sha256
25641 (base32
25642 "1smr5cjrqvpdnkmjpjp73p96sy581x15mwrn4fqd1p4d5mbgxr46"))))
25643 (properties `((upstream-name . "rstan")))
25644 (build-system r-build-system)
25645 (arguments
25646 `(#:phases
25647 (modify-phases %standard-phases
25648 (add-before 'install 'set-timezone
25649 ;; This package is picky about timezones.
25650 (lambda* (#:key inputs #:allow-other-keys)
25651 (setenv "TZ" "UTC+1")
25652 (setenv "TZDIR"
25653 (search-input-directory inputs
25654 "share/zoneinfo")))))))
25655 (native-inputs
25656 (list tzdata-for-tests pandoc r-knitr))
25657 (propagated-inputs
25658 (list r-bh
25659 r-ggplot2
25660 r-gridextra
25661 r-inline
25662 r-loo
25663 r-pkgbuild
25664 r-rcpp
25665 r-rcppeigen
25666 r-rcppparallel
25667 r-stanheaders))
25668 (home-page "https://discourse.mc-stan.org/")
25669 (synopsis "R interface to Stan")
25670 (description
25671 "User-facing R functions are provided to parse, compile, test, estimate,
25672 and analyze Stan models by accessing the header-only Stan library provided by
25673 the StanHeaders package. The Stan project develops a probabilistic
25674 programming language that implements full Bayesian statistical inference via
25675 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
25676 approximation, and (optionally penalized) maximum likelihood estimation via
25677 optimization. In all three cases, automatic differentiation is used to
25678 quickly and accurately evaluate gradients without burdening the user with the
25679 need to derive the partial derivatives.")
25680 (license license:gpl3+)))
25681
25682 (define-public r-rstanarm
25683 (package
25684 (name "r-rstanarm")
25685 (version "2.21.3")
25686 (source
25687 (origin
25688 (method url-fetch)
25689 (uri (cran-uri "rstanarm" version))
25690 (sha256
25691 (base32
25692 "19rj396q84maxnd9d2xcd5rblg3310xn7sqbd6k18kwf3dvd7wp9"))))
25693 (properties `((upstream-name . "rstanarm")))
25694 (build-system r-build-system)
25695 (inputs
25696 (list pandoc))
25697 (propagated-inputs
25698 (list r-bayesplot
25699 r-bh
25700 r-ggplot2
25701 r-lme4
25702 r-loo
25703 r-matrix
25704 r-nlme
25705 r-rcpp
25706 r-rcppeigen
25707 r-rcppparallel
25708 r-rstan
25709 r-rstantools
25710 r-shinystan
25711 r-stanheaders
25712 r-survival))
25713 (native-inputs
25714 (list r-knitr))
25715 (home-page "https://mc-stan.org/rstanarm/")
25716 (synopsis "Bayesian applied regression modeling via Stan")
25717 (description
25718 "This package estimates previously compiled regression models using the
25719 @code{rstan} package, which provides the R interface to the Stan C++ library
25720 for Bayesian estimation. Users specify models via the customary R syntax with
25721 a formula and @code{data.frame} plus some additional arguments for priors.")
25722 (license license:gpl3+)))
25723
25724 (define-public r-kendall
25725 (package
25726 (name "r-kendall")
25727 (version "2.2.1")
25728 (source
25729 (origin
25730 (method url-fetch)
25731 (uri (cran-uri "Kendall" version))
25732 (sha256
25733 (base32
25734 "1xmk95l4i3kj9jn0xh1chi2rj322k29jq14ra5pa7316gwf9vx2m"))))
25735 (properties `((upstream-name . "Kendall")))
25736 (build-system r-build-system)
25737 (propagated-inputs
25738 (list r-boot))
25739 (native-inputs
25740 (list gfortran))
25741 (home-page "https://cran.r-project.org/web/packages/Kendall/")
25742 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
25743 (description
25744 "This package computes the Kendall rank correlation and Mann-Kendall
25745 trend test.")
25746 (license license:gpl2+)))
25747
25748 (define-public r-keyring
25749 (package
25750 (name "r-keyring")
25751 (version "1.3.0")
25752 (source
25753 (origin
25754 (method url-fetch)
25755 (uri (cran-uri "keyring" version))
25756 (sha256
25757 (base32
25758 "1j8l6nmh4dr70kwybiais8yh687fdwrj134xynq68igw1b1rm8ga"))))
25759 (properties `((upstream-name . "keyring")))
25760 (build-system r-build-system)
25761 (propagated-inputs
25762 (list r-askpass
25763 r-assertthat
25764 r-filelock
25765 r-openssl
25766 r-r6
25767 r-rappdirs
25768 r-sodium
25769 r-yaml))
25770 (native-inputs (list pkg-config))
25771 (home-page "https://github.com/r-lib/keyring")
25772 (synopsis "Access the system credential store from R")
25773 (description
25774 "This package provides a platform-independent API to access the operating
25775 system's credential store. It currently supports Keychain on macOS,
25776 Credential Store on Windows, the Secret Service API on GNU/Linux, and a
25777 simple, platform independent store implemented with environment variables.
25778 Additional storage back-ends can be added easily.")
25779 (license license:expat)))
25780
25781 (define-public r-zyp
25782 (package
25783 (name "r-zyp")
25784 (version "0.10-1.1")
25785 (source
25786 (origin
25787 (method url-fetch)
25788 (uri (cran-uri "zyp" version))
25789 (sha256
25790 (base32
25791 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
25792 (properties `((upstream-name . "zyp")))
25793 (build-system r-build-system)
25794 (propagated-inputs
25795 (list r-kendall))
25796 (home-page "https://cran.r-project.org/web/packages/zyp/")
25797 (synopsis "Zhang + Yue-Pilon Trends Package")
25798 (description
25799 "This package contains an efficient implementation of Sen's slope
25800 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
25801 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
25802 climate data.")
25803 (license license:lgpl2.1)))
25804
25805 (define-public r-rlinsolve
25806 (package
25807 (name "r-rlinsolve")
25808 (version "0.3.2")
25809 (source
25810 (origin
25811 (method url-fetch)
25812 (uri (cran-uri "Rlinsolve" version))
25813 (sha256
25814 (base32
25815 "1xv500n1480qyakw0isanw1s5ywykhc207hqja4804s5s2m8zfjw"))))
25816 (properties `((upstream-name . "Rlinsolve")))
25817 (build-system r-build-system)
25818 (propagated-inputs
25819 (list r-matrix r-rcpp r-rcpparmadillo r-rdpack))
25820 (home-page "https://cran.r-project.org/web/packages/Rlinsolve/")
25821 (synopsis "Iterative solvers for (sparse) linear system of equations")
25822 (description
25823 "Solving a system of linear equations is one of the most fundamental
25824 computational problems for many fields of mathematical studies, such as
25825 regression problems from statistics or numerical partial differential
25826 equations. This package provides basic stationary iterative solvers such as
25827 Jacobi, Gauss-Seidel, Successive Over-Relaxation and SSOR methods.
25828 Nonstationary, also known as Krylov subspace methods are also provided.
25829 Sparse matrix computation is also supported in that solving large and sparse
25830 linear systems can be manageable using the @code{Matrix} package along with
25831 @code{RcppArmadillo}.")
25832 (license license:gpl3+)))
25833
25834 (define-public r-zvcv
25835 (package
25836 (name "r-zvcv")
25837 (version "2.1.1")
25838 (source
25839 (origin
25840 (method url-fetch)
25841 (uri (cran-uri "ZVCV" version))
25842 (sha256
25843 (base32
25844 "0gc76j9i8fkm2v638nyzzb1qxl4zmapbspkkaffb8gi5qyjja448"))))
25845 (properties `((upstream-name . "ZVCV")))
25846 (build-system r-build-system)
25847 (propagated-inputs
25848 (list r-abind
25849 r-bh
25850 r-dplyr
25851 r-glmnet
25852 r-magrittr
25853 r-mvtnorm
25854 r-rcpp
25855 r-rcpparmadillo
25856 r-rlinsolve))
25857 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
25858 (synopsis "Zero-Variance Control Variates")
25859 (description
25860 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
25861 to reduce the variance of Monte Carlo estimators of expectations using the
25862 derivatives of the log target. Once the derivatives are available, the only
25863 additional computational effort is in solving a linear regression problem.
25864 This method has been extended to higher dimensions using regularisation. This
25865 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
25866 samples, derivatives and function evaluations are available. Additional
25867 functions for applying ZV-CV to two estimators for the normalising constant of
25868 the posterior distribution in Bayesian statistics are also supplied.")
25869 (license license:gpl2+)))
25870
25871 (define-public r-ztype
25872 (package
25873 (name "r-ztype")
25874 (version "0.1.0")
25875 (source
25876 (origin
25877 (method url-fetch)
25878 (uri (cran-uri "ztype" version))
25879 (sha256
25880 (base32
25881 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
25882 (properties `((upstream-name . "ztype")))
25883 (build-system r-build-system)
25884 (propagated-inputs
25885 (list r-assertthat
25886 r-dplyr
25887 r-ggplot2
25888 r-lubridate
25889 r-magrittr
25890 r-rvest
25891 r-stringr))
25892 (home-page "https://cran.r-project.org/web/packages/ztype/")
25893 (synopsis "Run a Ztype game loaded with R functions")
25894 (description
25895 "How fast can you type R functions on your keyboard? Find out by running
25896 a @code{zty.pe} game: export R functions as instructions to type to destroy
25897 opponents' vessels.")
25898 (license license:gpl3)))
25899
25900 (define-public r-zseq
25901 (package
25902 (name "r-zseq")
25903 (version "0.2.0")
25904 (source
25905 (origin
25906 (method url-fetch)
25907 (uri (cran-uri "Zseq" version))
25908 (sha256
25909 (base32
25910 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
25911 (properties `((upstream-name . "Zseq")))
25912 (build-system r-build-system)
25913 (propagated-inputs
25914 (list r-gmp))
25915 (home-page "https://cran.r-project.org/web/packages/Zseq/")
25916 (synopsis "Integer sequence generator")
25917 (description
25918 "This package generates well-known integer sequences. The @code{gmp}
25919 package is adopted for computing with arbitrarily large numbers. Every
25920 function has a hyperlink to its corresponding item in the @dfn{On-Line
25921 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
25922 (license license:gpl3+)))
25923
25924 (define-public r-isoband
25925 (package
25926 (name "r-isoband")
25927 (version "0.2.5")
25928 (source
25929 (origin
25930 (method url-fetch)
25931 (uri (cran-uri "isoband" version))
25932 (sha256
25933 (base32
25934 "19bbi0n0kz33xdgmdprcmc6raphd1hcm1w1brc16z5phcsh3zxa6"))))
25935 (properties `((upstream-name . "isoband")))
25936 (build-system r-build-system)
25937 (native-inputs
25938 (list r-knitr))
25939 (home-page "https://github.com/wilkelab/isoband")
25940 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
25941 (description
25942 "This package provides a fast C++ implementation to generate contour
25943 lines (isolines) and contour polygons (isobands) from regularly spaced grids
25944 containing elevation data.")
25945 (license license:expat)))
25946
25947 (define-public r-ppcor
25948 (package
25949 (name "r-ppcor")
25950 (version "1.1")
25951 (source
25952 (origin
25953 (method url-fetch)
25954 (uri (cran-uri "ppcor" version))
25955 (sha256
25956 (base32
25957 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
25958 (properties `((upstream-name . "ppcor")))
25959 (build-system r-build-system)
25960 (propagated-inputs
25961 (list r-mass))
25962 (home-page "https://cran.r-project.org/web/packages/ppcor/")
25963 (synopsis "Partial and semi-partial correlation")
25964 (description
25965 "This package provides users not only with a function to readily
25966 calculate the higher-order partial and semi-partial correlations but also with
25967 statistics and p-values of the correlation coefficients.")
25968 (license license:gpl2)))
25969
25970 (define-public r-hrbrthemes
25971 (package
25972 (name "r-hrbrthemes")
25973 (version "0.8.0")
25974 (source
25975 (origin
25976 (method url-fetch)
25977 (uri (cran-uri "hrbrthemes" version))
25978 (sha256
25979 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
25980 (properties `((upstream-name . "hrbrthemes")))
25981 (build-system r-build-system)
25982 (propagated-inputs
25983 (list r-extrafont
25984 r-gdtools
25985 r-ggplot2
25986 r-htmltools
25987 r-knitr
25988 r-magrittr
25989 r-rmarkdown
25990 r-scales))
25991 (native-inputs
25992 (list r-knitr))
25993 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
25994 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
25995 (description
25996 "This package provides a compilation of extra @code{ggplot2} themes,
25997 scales and utilities, including a spell check function for plot label fields
25998 and an overall emphasis on typography.")
25999 (license license:expat)))
26000
26001 (define-public r-crochet
26002 (package
26003 (name "r-crochet")
26004 (version "2.3.0")
26005 (source
26006 (origin
26007 (method url-fetch)
26008 (uri (cran-uri "crochet" version))
26009 (sha256
26010 (base32
26011 "0zvjaf6cv0nrjb4l4llkr0mmgha7ig31p4ri2rlnqyjlxi5l8hyq"))))
26012 (build-system r-build-system)
26013 (native-inputs
26014 (list r-knitr))
26015 (home-page "https://github.com/agrueneberg/crochet")
26016 (synopsis "Implementation Helper for Matrix-Like Types")
26017 (description
26018 "Functions to help implement the extraction / subsetting / indexing
26019 function @code{[} and replacement function @code{[<-} of custom matrix-like
26020 types (based on S3, S4, etc.), modeled as closely to the base matrix class
26021 as possible (with tests to prove it).")
26022 (license license:expat)))
26023
26024 (define-public r-boa
26025 (package
26026 (name "r-boa")
26027 (version "1.1.8-2")
26028 (source
26029 (origin
26030 (method url-fetch)
26031 (uri (cran-uri "boa" version))
26032 (sha256
26033 (base32
26034 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
26035 (properties `((upstream-name . "boa")))
26036 (build-system r-build-system)
26037 (home-page "https://www.jstatsoft.org/v21/i11")
26038 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
26039 (description
26040 "This package provides a menu-driven program and library of functions for
26041 carrying out convergence diagnostics and statistical and graphical analysis of
26042 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
26043 (license license:gpl2+)))
26044
26045 (define-public r-httpcode
26046 (package
26047 (name "r-httpcode")
26048 (version "0.3.0")
26049 (source (origin
26050 (method url-fetch)
26051 (uri (cran-uri "httpcode" version))
26052 (sha256
26053 (base32
26054 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
26055 (build-system r-build-system)
26056 (home-page "https://github.com/sckott/httpcode")
26057 (synopsis "HTTP status code helper")
26058 (description "@code{httpcode} provides functionality for finding and
26059 explaining the meaning of @code{HTTP} status codes. Functions are included for
26060 searching for codes by full or partial number, by message, and to get
26061 appropriate dog and cat images for many status codes.")
26062 (license license:expat)))
26063
26064 (define-public r-latex2exp
26065 (package
26066 (name "r-latex2exp")
26067 (version "0.9.4")
26068 (source (origin
26069 (method url-fetch)
26070 (uri (cran-uri "latex2exp" version))
26071 (sha256
26072 (base32
26073 "0zbbrbgg524lpm733j8qsqk5ssg75c51s6dgzb18c6fk8byrx945"))))
26074 (build-system r-build-system)
26075 (propagated-inputs
26076 (list r-stringr r-magrittr))
26077 (native-inputs
26078 (list r-knitr))
26079 (home-page "https://github.com/stefano-meschiari/latex2exp/")
26080 (synopsis "Use LaTeX expressions in plots")
26081 (description "@code{latex2exp} parses and converts LaTeX math formulas to
26082 R's plotmath expressions, used to enter mathematical formulas and symbols to be
26083 rendered as text, axis labels, etc. throughout R's plotting system.")
26084 (license license:expat)))
26085
26086 (define-public r-oai
26087 (package
26088 (name "r-oai")
26089 (version "0.3.2")
26090 (source (origin
26091 (method url-fetch)
26092 (uri (cran-uri "oai" version))
26093 (sha256
26094 (base32
26095 "1zcbcxhw692s0y6izvwazyzhgx0iwsxsbcan2nk0mb7n11p7bypb"))))
26096 (build-system r-build-system)
26097 (propagated-inputs
26098 (list r-xml2 r-httr r-plyr r-stringr r-tibble))
26099 (native-inputs
26100 (list r-knitr))
26101 (home-page "https://github.com/ropensci/oai/")
26102 (synopsis "General purpose OAI-PMH services client")
26103 (description "@code{oai} provides a general purpose client to work with
26104 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
26105 service. Functions are provided to work with the OAI-PMH verbs:
26106 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
26107 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
26108 (license license:expat)))
26109
26110 (define-public r-argon2
26111 (package
26112 (name "r-argon2")
26113 (version "0.4-0")
26114 (source
26115 (origin
26116 (method url-fetch)
26117 (uri (cran-uri "argon2" version))
26118 (sha256
26119 (base32
26120 "09hzl0wz0lw2v7g64rdv0lij2hq36zl37a6rmxwvinmjdzijcsyw"))))
26121 (properties `((upstream-name . "argon2")))
26122 (build-system r-build-system)
26123 (home-page "https://github.com/wrathematics/argon2")
26124 (synopsis "Secure password hashing based on the argon2 algorithm")
26125 (description
26126 "This package provides utilities for secure password hashing via the
26127 argon2 algorithm.")
26128 (license license:bsd-2)))
26129
26130 (define-public r-getpass
26131 (package
26132 (name "r-getpass")
26133 (version "0.2-2")
26134 (source
26135 (origin
26136 (method url-fetch)
26137 (uri (cran-uri "getPass" version))
26138 (sha256
26139 (base32
26140 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
26141 (properties `((upstream-name . "getPass")))
26142 (build-system r-build-system)
26143 (propagated-inputs
26144 (list r-rstudioapi))
26145 (home-page "https://github.com/wrathematics/getPass")
26146 (synopsis "Masked user input")
26147 (description
26148 "This package provides a micro-package for reading \"passwords\", i.e.
26149 reading user input with masking, so that the input is not displayed as it is
26150 typed. Currently, RStudio, the command line (every OS), and any platform
26151 where tcltk is present are supported.")
26152 (license license:bsd-2)))
26153
26154 (define-public r-remoter
26155 (package
26156 (name "r-remoter")
26157 (version "0.4-0")
26158 (source
26159 (origin
26160 (method url-fetch)
26161 (uri (cran-uri "remoter" version))
26162 (sha256
26163 (base32
26164 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
26165 (properties `((upstream-name . "remoter")))
26166 (build-system r-build-system)
26167 (propagated-inputs
26168 (list r-argon2 r-getpass r-pbdzmq r-png))
26169 (home-page "https://github.com/RBigData/remoter")
26170 (synopsis "Control a remote R session from a local one")
26171 (description
26172 "This package provides a set of utilities for client/server computing
26173 with R, controlling a remote R session (the server) from a local one (the
26174 client).")
26175 (license license:bsd-2)))
26176
26177 (define-public r-asd
26178 (package
26179 (name "r-asd")
26180 (version "2.2")
26181 (source
26182 (origin
26183 (method url-fetch)
26184 (uri (cran-uri "asd" version))
26185 (sha256
26186 (base32
26187 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
26188 (properties `((upstream-name . "asd")))
26189 (build-system r-build-system)
26190 (propagated-inputs
26191 (list r-mvtnorm))
26192 (home-page "https://cran.r-project.org/web/packages/asd")
26193 (synopsis "Simulations for Adaptive Seamless Designs")
26194 (description
26195 "This package provdes means to run simulations for adaptive seamless
26196 designs with and without early outcomes for treatment selection and
26197 subpopulation type designs.")
26198 (license license:gpl3)))
26199
26200 (define-public r-nbconvertr
26201 (package
26202 (name "r-nbconvertr")
26203 (version "1.3.2")
26204 (source
26205 (origin
26206 (method url-fetch)
26207 (uri (cran-uri "nbconvertR" version))
26208 (sha256
26209 (base32
26210 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
26211 (properties `((upstream-name . "nbconvertR")))
26212 (build-system r-build-system)
26213 (inputs
26214 (list python-nbconvert pandoc))
26215 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
26216 (synopsis "Vignette engine wrapping Jupyter notebooks")
26217 (description
26218 "This package calls the Jupyter script @code{nbconvert} to create
26219 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
26220 containing rich text, code, and its output. Code cells can be edited and
26221 evaluated interactively.")
26222 (license license:gpl3)))
26223
26224 (define-public r-bridgesampling
26225 (package
26226 (name "r-bridgesampling")
26227 (version "1.1-2")
26228 (source
26229 (origin
26230 (method url-fetch)
26231 (uri (cran-uri "bridgesampling" version))
26232 (sha256
26233 (base32
26234 "0sry1xwiv4y52k44hq6z8y2kysp5kxgl4dix3m94svg3ladd7v2l"))))
26235 (properties
26236 `((upstream-name . "bridgesampling")))
26237 (build-system r-build-system)
26238 (propagated-inputs
26239 (list r-brobdingnag
26240 r-coda
26241 r-matrix
26242 r-mvtnorm
26243 r-scales
26244 r-stringr))
26245 (native-inputs
26246 (list r-knitr))
26247 (home-page "https://github.com/quentingronau/bridgesampling")
26248 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
26249 (description
26250 "This package provides functions for estimating marginal likelihoods,
26251 Bayes factors, posterior model probabilities, and normalizing constants in
26252 general, via different versions of bridge sampling.")
26253 (license license:gpl2+)))
26254
26255 (define-public r-tea
26256 (package
26257 (name "r-tea")
26258 (version "1.1")
26259 (source
26260 (origin
26261 (method url-fetch)
26262 (uri (cran-uri "tea" version))
26263 (sha256
26264 (base32
26265 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
26266 (properties
26267 `((upstream-name . "tea")))
26268 (build-system r-build-system)
26269 (propagated-inputs
26270 (list r-matrix))
26271 (home-page "https://cran.r-project.org/web/packages/tea/")
26272 (synopsis "Threshold estimation approaches")
26273 (description
26274 "This package provides different approaches for selecting the threshold
26275 in generalized Pareto distributions. Most of them are based on minimizing the
26276 AMSE-criterion or at least by reducing the bias of the assumed GPD-model.
26277 Others are heuristically motivated by searching for stable sample paths, i.e.
26278 a nearly constant region of the tail index estimator with respect to k, which
26279 is the number of data in the tail. The third class is motivated by graphical
26280 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
26281 is also implemented here.")
26282 (license license:gpl3)))
26283
26284 (define-public r-awsmethods
26285 (package
26286 (name "r-awsmethods")
26287 (version "1.1-1")
26288 (source
26289 (origin
26290 (method url-fetch)
26291 (uri (cran-uri "awsMethods" version))
26292 (sha256
26293 (base32
26294 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
26295 (properties
26296 `((upstream-name . "awsMethods")))
26297 (build-system r-build-system)
26298 (home-page "http://www.wias-berlin.de/software/imaging/")
26299 (synopsis "Class and methods definitions")
26300 (description
26301 "This package defines the generic method @code{extract} and provides
26302 @code{openMP} support as needed in several packages like
26303 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
26304 (license license:gpl2+)))
26305
26306 (define-public r-aws
26307 (package
26308 (name "r-aws")
26309 (version "2.5-1")
26310 (source
26311 (origin
26312 (method url-fetch)
26313 (uri (cran-uri "aws" version))
26314 (sha256
26315 (base32
26316 "1fhm87iax6bkvd4vszvjbcqw3b2drs11rjxr7zf2w4sgc72svaz8"))))
26317 (properties
26318 `((upstream-name . "aws")))
26319 (build-system r-build-system)
26320 (propagated-inputs
26321 (list r-awsmethods r-gsl))
26322 (native-inputs
26323 (list gfortran))
26324 (home-page "https://cran.r-project.org/web/packages/aws/")
26325 (synopsis "Adaptive weights smoothing")
26326 (description
26327 "This package provides a collection of R-functions implementing adaptive
26328 smoothing procedures in 1D, 2D and 3D. This includes the
26329 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
26330 Confidence Intervals} (ICI), variational approaches, and a non-local means
26331 filter.")
26332 (license license:gpl2+)))
26333
26334 (define-public r-sgloptim
26335 (package
26336 (name "r-sgloptim")
26337 (version "1.3.8")
26338 (source
26339 (origin
26340 (method url-fetch)
26341 (uri (cran-uri "sglOptim" version))
26342 (sha256
26343 (base32
26344 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
26345 (properties
26346 `((upstream-name . "sglOptim")))
26347 (build-system r-build-system)
26348 (propagated-inputs
26349 (list r-bh
26350 r-doparallel
26351 r-foreach
26352 r-matrix
26353 r-rcpp
26354 r-rcpparmadillo
26355 r-rcppprogress))
26356 (native-inputs
26357 (list r-knitr))
26358 (home-page "https://github.com/nielsrhansen/sglOptim")
26359 (synopsis "Generic sparse group Lasso solver")
26360 (description
26361 "This package provides a fast generic solver for sparse group lasso
26362 optimization problems. The loss (objective) function must be defined in a C++
26363 module. The optimization problem is solved using a coordinate gradient
26364 descent algorithm. Convergence of the algorithm is established and the
26365 algorithm is applicable to a broad class of loss functions. Use of parallel
26366 computing for cross validation and subsampling is supported through the
26367 @code{foreach} and @code{doParallel} packages.")
26368 (license license:gpl2+)))
26369
26370 (define-public r-grouped
26371 (package
26372 (name "r-grouped")
26373 (version "0.6-0")
26374 (source
26375 (origin
26376 (method url-fetch)
26377 (uri (cran-uri "grouped" version))
26378 (sha256
26379 (base32
26380 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
26381 (properties
26382 `((upstream-name . "grouped")))
26383 (build-system r-build-system)
26384 (propagated-inputs
26385 (list r-mass))
26386 (home-page "https://cran.r-project.org/web/packages/grouped/")
26387 (synopsis "Regression analysis of grouped and coarse data")
26388 (description
26389 "This package provides regression models for grouped and coarse data,
26390 under the coarsened at random assumption.")
26391 (license license:gpl2+)))
26392
26393 (define-public r-stam
26394 (package
26395 (name "r-stam")
26396 (version "0.0-1")
26397 (source
26398 (origin
26399 (method url-fetch)
26400 (uri (cran-uri "stam" version))
26401 (sha256
26402 (base32
26403 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
26404 (properties
26405 `((upstream-name . "stam")))
26406 (build-system r-build-system)
26407 (propagated-inputs
26408 (list r-np r-sp))
26409 (home-page "https://cran.r-project.org/web/packages/stam")
26410 (synopsis "Spatio-temporal analysis and modelling")
26411 (description
26412 "This package provides various methods to conduct Spatio-Temporal
26413 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
26414 Inferred Spatio-Temporal Modelling.")
26415 (license license:gpl2+)))
26416
26417 (define-public r-dcv
26418 (package
26419 (name "r-dcv")
26420 (version "0.1.1")
26421 (source
26422 (origin
26423 (method url-fetch)
26424 (uri (cran-uri "dcv" version))
26425 (sha256
26426 (base32
26427 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
26428 (properties
26429 `((upstream-name . "dcv")))
26430 (build-system r-build-system)
26431 (propagated-inputs
26432 (list r-lmtest))
26433 (home-page "https://cran.r-project.org/web/packages/dcv/")
26434 (synopsis "Conventional cross-validation statistics for climate-growth model")
26435 (description
26436 "This package performs several conventional cross-validation statistical
26437 methods for climate-growth model in the climate reconstruction from tree
26438 rings, including Sign Test statistic, Reduction of Error statistic, Product
26439 Mean Test, Durbin-Watson statistic etc.")
26440 (license license:gpl2)))
26441
26442 (define-public r-rcdd
26443 (package
26444 (name "r-rcdd")
26445 (version "1.5")
26446 (source
26447 (origin
26448 (method url-fetch)
26449 (uri (cran-uri "rcdd" version))
26450 (sha256
26451 (base32
26452 "0zxx0qvv26ba30jkm8mvca4h59rqklay4jwazpcw7h9dzp4189jr"))))
26453 (properties
26454 `((upstream-name . "rcdd")))
26455 (build-system r-build-system)
26456 (inputs
26457 (list gmp))
26458 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
26459 (synopsis "Computational geometry")
26460 (description
26461 "This package converts back and forth between two representations of a
26462 convex polytope: as solution of a set of linear equalities and inequalities
26463 and as convex hull of set of points and rays. Also does linear programming
26464 and redundant generator elimination. All functions can use exact
26465 infinite-precision rational arithmetic.")
26466 (license license:gpl2)))
26467
26468 (define-public r-rxnat
26469 (package
26470 (name "r-rxnat")
26471 (version "1.0.15")
26472 (source
26473 (origin
26474 (method url-fetch)
26475 (uri (cran-uri "Rxnat" version))
26476 (sha256
26477 (base32
26478 "0siylypjd8cgcmr2c443w8krg8sgr5gz4zapbinanp8vsfzivdv2"))))
26479 (properties
26480 `((upstream-name . "Rxnat")))
26481 (build-system r-build-system)
26482 (propagated-inputs
26483 (list r-httr r-rcurl r-tibble))
26484 (native-inputs
26485 (list r-knitr))
26486 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
26487 (synopsis "Queries and extracts images from neuroimaging datasets")
26488 (description
26489 "This package allows communication with the Extensible Neuroimaging
26490 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
26491 download images.")
26492 (license license:gpl2)))
26493
26494 (define-public r-rserve
26495 (package
26496 (name "r-rserve")
26497 (version "1.8-6")
26498 (source
26499 (origin
26500 (method url-fetch)
26501 (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
26502 version ".tar.gz"))
26503 (sha256
26504 (base32
26505 "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
26506 (build-system r-build-system)
26507 (arguments
26508 `(#:phases
26509 (modify-phases %standard-phases
26510 (add-before 'install 'install-server-binary
26511 ;; Makevars tries to install to R's store directory.
26512 (lambda* (#:key outputs #:allow-other-keys)
26513 (let* ((out (assoc-ref outputs "out"))
26514 (bin (string-append out "/bin")))
26515 (substitute* "src/Makevars.in"
26516 (("\\$\\(R_HOME\\)") out))
26517 (mkdir-p bin)))))))
26518 (propagated-inputs
26519 (list r-checkmate
26520 r-mime
26521 r-jsonlite
26522 r-knitr
26523 r-r6
26524 r-rcpp
26525 r-uuid))
26526 (inputs
26527 (list openssl zlib))
26528 (home-page "https://github.com/s-u/Rserve")
26529 (synopsis
26530 "Server providing access to R from many languages and systems")
26531 (description
26532 "Rserve acts as a socket server (TCP/IP or local sockets) which allows
26533 binary requests to be sent to R. Every connection has a separate workspace
26534 and working directory. Client-side implementations are available for popular
26535 languages such as C/C++ and Java, allowing any application to use facilities
26536 of R without the need of linking to R code. Rserve supports remote
26537 connection, user authentication and file transfer. A simple R client is
26538 included in this package as well.")
26539 (license license:gpl2)))
26540
26541 (define-public r-gamm4
26542 (package
26543 (name "r-gamm4")
26544 (version "0.2-6")
26545 (source
26546 (origin
26547 (method url-fetch)
26548 (uri (cran-uri "gamm4" version))
26549 (sha256
26550 (base32
26551 "128c725y9s07c1m9cvd9hgi9hldrymcs5divd8pw7bdjh9jvdiap"))))
26552 (properties `((upstream-name . "gamm4")))
26553 (build-system r-build-system)
26554 (propagated-inputs
26555 (list r-lme4 r-matrix r-mgcv))
26556 (home-page "https://cran.r-project.org/web/packages/gamm4/")
26557 (synopsis "Generalized additive mixed models using mgcv and lme4")
26558 (description
26559 "Estimate generalized additive mixed models via a version of function
26560 @code{gamm} from the @code{mgcv} package, using the @code{lme4} packagefor
26561 estimation.")
26562 (license license:gpl2+)))
26563
26564 (define-public r-optimx
26565 (package
26566 (name "r-optimx")
26567 (version "2022-4.30")
26568 (source
26569 (origin
26570 (method url-fetch)
26571 (uri (cran-uri "optimx" version))
26572 (sha256
26573 (base32
26574 "045ls1vl1392ihwln6mngz0zg2w93ym1m607vfrg8v1949x8isgb"))))
26575 (properties `((upstream-name . "optimx")))
26576 (build-system r-build-system)
26577 (propagated-inputs (list r-numderiv))
26578 (native-inputs (list r-knitr))
26579 (home-page "https://cran.r-project.org/web/packages/optimx/")
26580 (synopsis "Expanded replacement and extension of the optim function")
26581 (description
26582 "This package provides a replacement and extension of the @code{optim}
26583 function to call to several function minimization codes in R in a single
26584 statement. These methods handle smooth, possibly box constrained functions of
26585 several or many parameters. Note that the function @code{optimr} was prepared
26586 to simplify the incorporation of minimization codes going forward. This
26587 package also implements some utility codes and some extra solvers, including
26588 safeguarded Newton methods. Many methods previously separate are now included
26589 here.")
26590 (license license:gpl2)))
26591
26592 (define-public r-projpred
26593 (package
26594 (name "r-projpred")
26595 (version "2.1.2")
26596 (source
26597 (origin
26598 (method url-fetch)
26599 (uri (cran-uri "projpred" version))
26600 (sha256
26601 (base32
26602 "1c6gnmknd3vb0fb5h6gd372dk27nzif90b4c1snql49wacg6b2m8"))))
26603 (properties `((upstream-name . "projpred")))
26604 (build-system r-build-system)
26605 (propagated-inputs
26606 (list r-dplyr
26607 r-gamm4
26608 r-ggplot2
26609 r-lme4
26610 r-loo
26611 r-magrittr
26612 r-mgcv
26613 r-mvtnorm
26614 r-rcpp
26615 r-rcpparmadillo
26616 r-rlang
26617 r-rstantools))
26618 (native-inputs (list r-knitr))
26619 (home-page "https://mc-stan.org/projpred/")
26620 (synopsis "Projection predictive feature selection")
26621 (description
26622 "This package performs projection predictive feature selection for
26623 generalized linear models and generalized linear and additive multilevel
26624 models. The package is compatible with the @code{rstanarm} and @code{brms}
26625 packages, but other reference models can also be used. See the package
26626 vignette for more information and examples.")
26627 (license license:gpl3)))
26628
26629 (define-public r-distributional
26630 (package
26631 (name "r-distributional")
26632 (version "0.3.0")
26633 (source
26634 (origin
26635 (method url-fetch)
26636 (uri (cran-uri "distributional" version))
26637 (sha256
26638 (base32
26639 "1mji8xlhwrw8msih5wdpbzwv4g59kly0xkdklhn8yzb18rrnrczs"))))
26640 (properties
26641 `((upstream-name . "distributional")))
26642 (build-system r-build-system)
26643 (propagated-inputs
26644 (list r-digest
26645 r-ellipsis
26646 r-farver
26647 r-generics
26648 r-ggplot2
26649 r-lifecycle
26650 r-numderiv
26651 r-rlang
26652 r-scales
26653 r-vctrs))
26654 (home-page "https://pkg.mitchelloharawild.com/distributional/")
26655 (synopsis "Vectorized probability distributions")
26656 (description
26657 "This package provides vectorized distribution objects with tools for
26658 manipulating, visualizing, and using probability distributions. It was
26659 designed to allow model prediction outputs to return distributions rather than
26660 their parameters, allowing users to directly interact with predictive
26661 distributions in a data-oriented workflow. In addition to providing generic
26662 replacements for p/d/q/r functions, other useful statistics can be computed
26663 including means, variances, intervals, and highest density regions.")
26664 (license license:gpl3)))
26665
26666 (define-public r-posterior
26667 (package
26668 (name "r-posterior")
26669 (version "1.2.1")
26670 (source
26671 (origin
26672 (method url-fetch)
26673 (uri (cran-uri "posterior" version))
26674 (sha256
26675 (base32
26676 "1qdg22l868daqg2axr36szl1m9z0rfpgx8zmv1x1xwm1hmlf0mxp"))))
26677 (properties `((upstream-name . "posterior")))
26678 (build-system r-build-system)
26679 (propagated-inputs
26680 (list r-abind
26681 r-checkmate
26682 r-distributional
26683 r-matrixstats
26684 r-pillar
26685 r-rlang
26686 r-tensora
26687 r-tibble
26688 r-vctrs))
26689 (native-inputs
26690 (list r-knitr))
26691 (home-page "https://mc-stan.org/posterior/")
26692 (synopsis "Tools for working with posterior distributions")
26693 (description
26694 "This package provides useful tools for both users and developers of
26695 packages for fitting Bayesian models or working with output from Bayesian
26696 models. The primary goals of the package are to:
26697
26698 @enumerate
26699 @item Efficiently convert between many different useful formats of
26700 draws (samples) from posterior or prior distributions.
26701
26702 @item Provide consistent methods for operations commonly performed on draws,
26703 for example, subsetting, binding, or mutating draws.
26704
26705 @item Provide various summaries of draws in convenient formats.
26706
26707 @item Provide lightweight implementations of state of the art posterior
26708 inference diagnostics.
26709 @end enumerate
26710 ")
26711 (license license:bsd-3)))
26712
26713 (define-public r-brms
26714 (package
26715 (name "r-brms")
26716 (version "2.17.0")
26717 (source
26718 (origin
26719 (method url-fetch)
26720 (uri (cran-uri "brms" version))
26721 (sha256
26722 (base32
26723 "0wff5rld4kgkk2nbllvm1h4c596igzgd0q7nx1cabgl11fja7r94"))))
26724 (properties `((upstream-name . "brms")))
26725 (build-system r-build-system)
26726 (propagated-inputs
26727 (list r-abind
26728 r-backports
26729 r-bayesplot
26730 r-bridgesampling
26731 r-coda
26732 r-future
26733 r-ggplot2
26734 r-glue
26735 r-loo
26736 r-matrix
26737 r-matrixstats
26738 r-mgcv
26739 r-nleqslv
26740 r-nlme
26741 r-posterior
26742 r-rcpp
26743 r-rstan
26744 r-rstantools
26745 r-shinystan))
26746 (native-inputs (list r-knitr))
26747 (home-page
26748 "https://github.com/paul-buerkner/brms")
26749 (synopsis
26750 "Bayesian Regression Models using 'Stan'")
26751 (description
26752 "Fit Bayesian generalized (non-)linear multivariate multilevel models
26753 using 'Stan' for full Bayesian inference. A wide range of distributions and
26754 link functions are supported, allowing users to fit -- among others -- linear,
26755 robust linear, count data, survival, response times, ordinal, zero-inflated,
26756 hurdle, and even self-defined mixture models all in a multilevel context.
26757 Further modeling options include non-linear and smooth terms, auto-correlation
26758 structures, censored data, meta-analytic standard errors, and quite a few
26759 more. In addition, all parameters of the response distribution can be
26760 predicted in order to perform distributional regression. Prior specifications
26761 are flexible and explicitly encourage users to apply prior distributions that
26762 actually reflect their beliefs. Model fit can easily be assessed and compared
26763 with posterior predictive checks and leave-one-out cross-validation.")
26764 (license license:gpl2)))
26765
26766 (define-public r-mstate
26767 (package
26768 (name "r-mstate")
26769 (version "0.3.2")
26770 (source
26771 (origin
26772 (method url-fetch)
26773 (uri (cran-uri "mstate" version))
26774 (sha256
26775 (base32
26776 "054dzrd5b0xjjjl7862q3aq1jwgrxbkqz7zpvbdirqsld3zksirw"))))
26777 (properties `((upstream-name . "mstate")))
26778 (build-system r-build-system)
26779 (propagated-inputs
26780 (list r-data-table
26781 r-lattice
26782 r-rcolorbrewer
26783 r-rlang
26784 r-survival
26785 r-viridislite))
26786 (native-inputs
26787 (list r-knitr))
26788 (home-page
26789 "https://www.lumc.nl/org/bds/research/medische-statistiek/survival-analysis/")
26790 (synopsis
26791 "Data Preparation, Estimation and Prediction in Multi-State Models")
26792 (description
26793 "Contains functions for data preparation, descriptives, hazard estimation
26794 and prediction with Aalen-Johansen or simulation in competing risks and
26795 multi-state models.")
26796 (license license:gpl2+)))
26797
26798 (define-public r-scatterpie
26799 (package
26800 (name "r-scatterpie")
26801 (version "0.1.7")
26802 (source
26803 (origin
26804 (method url-fetch)
26805 (uri (cran-uri "scatterpie" version))
26806 (sha256
26807 (base32
26808 "1pmspv8a7k20zyd5xvmav2k9mnjrkfhdij3rr9k504zyki8hfy1z"))))
26809 (properties `((upstream-name . "scatterpie")))
26810 (build-system r-build-system)
26811 (propagated-inputs
26812 (list r-ggforce r-ggfun r-ggplot2 r-rlang r-tidyr))
26813 (native-inputs
26814 (list r-knitr))
26815 (home-page "https://cran.r-project.org/web/packages/scatterpie/")
26816 (synopsis "Scatter pie plot")
26817 (description
26818 "This package creates scatterpie plots, especially useful for plotting
26819 pies on a map.")
26820 (license license:artistic2.0)))
26821
26822 (define-public r-scrypt
26823 (package
26824 (name "r-scrypt")
26825 (version "0.1.4")
26826 (source
26827 (origin
26828 (method url-fetch)
26829 (uri (cran-uri "scrypt" version))
26830 (sha256
26831 (base32
26832 "12q9d4m7flbvlgssvjh1ga4jswkmqjfshf6pna6qk6v087gmzdsj"))))
26833 (properties `((upstream-name . "scrypt")))
26834 (build-system r-build-system)
26835 (propagated-inputs
26836 (list r-rcpp))
26837 (home-page "https://github.com/rstudio/rscrypt")
26838 (synopsis "Key derivation functions for R based on Scrypt")
26839 (description
26840 "This package provides functions for working with the scrypt key
26841 derivation functions. Scrypt is a password-based key derivation function
26842 created by Colin Percival. The algorithm was specifically designed to make it
26843 costly to perform large-scale custom hardware attacks by requiring large
26844 amounts of memory.")
26845 (license license:bsd-2)))
26846
26847 (define-public r-boruta
26848 (package
26849 (name "r-boruta")
26850 (version "7.0.0")
26851 (source
26852 (origin
26853 (method url-fetch)
26854 (uri (cran-uri "Boruta" version))
26855 (sha256
26856 (base32
26857 "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg"))))
26858 (properties `((upstream-name . "Boruta")))
26859 (build-system r-build-system)
26860 (propagated-inputs (list r-ranger))
26861 (home-page "https://gitlab.com/mbq/Boruta/")
26862 (synopsis "Wrapper algorithm for all relevant feature selection")
26863 (description
26864 "This package provides an all relevant feature selection wrapper
26865 algorithm. It finds relevant features by comparing original attributes'
26866 importance with importance achievable at random, estimated using their
26867 permuted copies (shadows).")
26868 (license license:gpl2+)))
26869
26870 (define-public r-directlabels
26871 (package
26872 (name "r-directlabels")
26873 (version "2021.1.13")
26874 (source
26875 (origin
26876 (method url-fetch)
26877 (uri (cran-uri "directlabels" version))
26878 (sha256
26879 (base32
26880 "0415kh9k2qzdwi8zb32fh2icl5wf5335kyj11cyfdmfxji39zv2w"))))
26881 (build-system r-build-system)
26882 (propagated-inputs
26883 (list r-quadprog))
26884 (native-inputs
26885 (list r-knitr))
26886 (home-page "http://directlabels.r-forge.r-project.org/")
26887 (synopsis "Direct labels for multicolor plots")
26888 (description
26889 "This package provides an extensible framework for automatically placing
26890 direct labels onto multicolor plots. Label positions are described using
26891 positioning methods that can be re-used across several different plots. There
26892 are heuristics for examining @code{trellis} and @code{ggplot} objects and
26893 inferring an appropriate positioning method.")
26894 (license license:gpl3)))
26895
26896 (define-public r-lsd
26897 (package
26898 (name "r-lsd")
26899 (version "4.1-0")
26900 (source
26901 (origin
26902 (method url-fetch)
26903 (uri (cran-uri "LSD" version))
26904 (sha256
26905 (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm"))))
26906 (properties `((upstream-name . "LSD")))
26907 (build-system r-build-system)
26908 (home-page "https://cran.r-project.org/web/packages/LSD/")
26909 (synopsis "Lots of superior depictions tool creates colorful plots")
26910 (description
26911 "This package creates lots of colorful plots in a multitude of variations.
26912 Try a demo of the LSD by running @code{demotour()}.")
26913 ;; Either version
26914 (license (list license:gpl2 license:gpl3))))
26915
26916 (define-public r-phylogram
26917 (package
26918 (name "r-phylogram")
26919 (version "2.1.0")
26920 (source
26921 (origin
26922 (method url-fetch)
26923 (uri (cran-uri "phylogram" version))
26924 (sha256
26925 (base32 "1p4h5pirc0m5pzc18q0jk3mcmb5n48gdf9abz03vml3a209xxl2v"))))
26926 (properties `((upstream-name . "phylogram")))
26927 (build-system r-build-system)
26928 (propagated-inputs (list r-ape))
26929 (home-page "https://github.com/ropensci/phylogram/")
26930 (synopsis "Dendrograms for evolutionary analysis")
26931 (description
26932 "The @code{r-phylogram} package is a tool for for developing phylogenetic
26933 trees as deeply-nested lists known as \"dendrogram\" objects. It provides
26934 functions for conversion between \"dendrogram\" and \"phylo\" class objects,
26935 as well as several tools for command-line tree manipulation and import/export
26936 via Newick parenthetic text. This improves accessibility to the comprehensive
26937 range of object-specific analytical and tree-visualization functions found
26938 across a wide array of bioinformatic R packages.")
26939 (license license:gpl3)))
26940
26941 (define-public r-kmer
26942 (package
26943 (name "r-kmer")
26944 (version "1.1.2")
26945 (source
26946 (origin
26947 (method url-fetch)
26948 (uri (cran-uri "kmer" version))
26949 (sha256
26950 (base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
26951 (properties `((upstream-name . "kmer")))
26952 (build-system r-build-system)
26953 (propagated-inputs
26954 (list r-openssl r-phylogram r-rcpp))
26955 (home-page "https://github.com/shaunpwilkinson/kmer/")
26956 (synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
26957 (description
26958 "@code{r-kmer} is an R package for rapidly computing distance matrices
26959 and clustering large sequence datasets using fast alignment-free k-mer
26960 counting and recursive k-means partitioning.")
26961 (license license:gpl3)))
26962
26963 (define-public r-hardhat
26964 (package
26965 (name "r-hardhat")
26966 (version "0.2.0")
26967 (source
26968 (origin
26969 (method url-fetch)
26970 (uri (cran-uri "hardhat" version))
26971 (sha256
26972 (base32
26973 "0a4nq93cmps5xy8h0qsv6xyzrbsz9ka4iwkrvb8m8v10wq7wm5wl"))))
26974 (properties `((upstream-name . "hardhat")))
26975 (build-system r-build-system)
26976 (propagated-inputs
26977 (list r-glue r-rlang r-tibble r-vctrs))
26978 (native-inputs
26979 (list r-knitr))
26980 (home-page "https://github.com/tidymodels/hardhat")
26981 (synopsis "Construct modeling packages")
26982 (description
26983 "Building modeling packages is hard. A large amount of effort generally
26984 goes into providing an implementation for a new method that is efficient,
26985 fast, and correct, but often less emphasis is put on the user interface. A
26986 good interface requires specialized knowledge about S3 methods and formulas,
26987 which the average package developer might not have. The goal of
26988 @code{hardhat} is to reduce the burden around building new modeling packages
26989 by providing functionality for preprocessing, predicting, and validating
26990 input.")
26991 (license license:expat)))
26992
26993 (define-public r-lightgbm
26994 (package
26995 (name "r-lightgbm")
26996 (version "3.3.2")
26997 (source
26998 (origin
26999 (method url-fetch)
27000 (uri (cran-uri "lightgbm" version))
27001 (sha256
27002 (base32
27003 "12hbvm1va6sb5yny564jvhhzrkcq4j33rcdhqhwxaac2m08cpi8s"))))
27004 (properties `((upstream-name . "lightgbm")))
27005 (build-system r-build-system)
27006 (propagated-inputs
27007 (list r-data-table r-jsonlite r-matrix r-r6))
27008 (home-page "https://github.com/Microsoft/LightGBM")
27009 (synopsis "Light gradient boosting machine")
27010 (description
27011 "Tree based algorithms can be improved by introducing boosting
27012 frameworks. LightGBM is one such framework, based on Ke, Guolin et
27013 al. (2017). This package offers an R interface to work with it. It is
27014 designed to be distributed and efficient with the following goals:
27015
27016 @enumerate
27017 @item Faster training speed and higher efficiency;
27018 @item lower memory usage;
27019 @item better accuracy;
27020 @item parallel learning supported; and
27021 @item capable of handling large-scale data.
27022 @end enumerate
27023 ")
27024 (license license:expat)))
27025
27026 (define-public r-shapforxgboost
27027 (package
27028 (name "r-shapforxgboost")
27029 (version "0.1.1")
27030 (source
27031 (origin
27032 (method url-fetch)
27033 (uri (cran-uri "SHAPforxgboost" version))
27034 (sha256
27035 (base32
27036 "106nsf02b1w3yshb55lwnyw1rl1a60162v2wk8znjz3b4ln3mqj5"))))
27037 (properties
27038 `((upstream-name . "SHAPforxgboost")))
27039 (build-system r-build-system)
27040 (propagated-inputs
27041 (list r-bbmisc
27042 r-data-table
27043 r-ggextra
27044 r-ggforce
27045 r-ggplot2
27046 r-ggpubr
27047 r-rcolorbrewer
27048 r-xgboost))
27049 (native-inputs
27050 (list r-knitr))
27051 (home-page "https://github.com/liuyanguu/SHAPforxgboost")
27052 (synopsis "SHAP Plots for XGBoost")
27053 (description
27054 "The aim of @code{SHAPforxgboost} is to aid in visual data investigations
27055 using @dfn{SHAP} (Shapley additive explanation) visualization plots for
27056 @code{XGBoost}. It provides summary plot, dependence plot, interaction plot,
27057 and force plot. It relies on the @code{XGBoost} package to produce SHAP
27058 values.")
27059 (license license:expat)))
27060
27061 (define-public r-rismed
27062 (package
27063 (name "r-rismed")
27064 (version "2.3.0")
27065 (source
27066 (origin
27067 (method url-fetch)
27068 (uri (cran-uri "RISmed" version))
27069 (sha256
27070 (base32
27071 "0vpi88gzi9r85v6nhjz9jbw671zkrmyazwna2z881346wfyr3l8b"))))
27072 (properties `((upstream-name . "RISmed")))
27073 (build-system r-build-system)
27074 (propagated-inputs
27075 (list r-httr r-xml2))
27076 (home-page "https://cran.r-project.org/web/packages/RISmed")
27077 (synopsis "Download content from NCBI databases")
27078 (description
27079 "This package provides a set of tools to extract bibliographic
27080 content from the National Center for Biotechnology Information (NCBI)
27081 databases, including PubMed. The name RISmed is a portmanteau of
27082 RIS (for Research Information Systems, a common tag format for
27083 bibliographic data) and PubMed.")
27084 (license license:gpl2+)))
27085
27086 (define-public r-semver
27087 (package
27088 (name "r-semver")
27089 (version "0.2.0")
27090 (source
27091 (origin
27092 (method url-fetch)
27093 (uri (cran-uri "semver" version))
27094 (sha256
27095 (base32
27096 "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
27097 (properties `((upstream-name . "semver")))
27098 (build-system r-build-system)
27099 (propagated-inputs
27100 (list r-assertthat r-rcpp))
27101 (native-inputs (list r-knitr))
27102 (home-page "https://github.com/johndharrison/semver")
27103 (synopsis "Parser for Semantic Versioning 2.0.0")
27104 (description
27105 "This package provides tools and functions for parsing, rendering and
27106 operating on semantic version strings. Semantic versioning is a simple set of
27107 rules and requirements that dictate how version numbers are assigned and
27108 incremented as outlined at @url{http://semver.org}.")
27109 (license license:expat)))
27110
27111 (define-public r-binman
27112 (package
27113 (name "r-binman")
27114 (version "0.1.2")
27115 (source
27116 (origin
27117 (method url-fetch)
27118 (uri (cran-uri "binman" version))
27119 (sha256
27120 (base32
27121 "00l7m98h41r67gf0qxqis3vx63j7wylnk9vlgcyk41szkrz8ikkc"))))
27122 (properties `((upstream-name . "binman")))
27123 (build-system r-build-system)
27124 (propagated-inputs
27125 (list r-assertthat
27126 r-httr
27127 r-jsonlite
27128 r-rappdirs
27129 r-semver
27130 r-xml2
27131 r-yaml))
27132 (native-inputs (list r-knitr))
27133 (home-page "https://github.com/ropensci/binman")
27134 (synopsis "Binary download manager")
27135 (description
27136 "This package provides tools and functions for managing the download of
27137 binary files. Binary repositories are defined in the YAML format. Defining
27138 new pre-download, download and post-download templates allow additional
27139 repositories to be added.")
27140 (license license:expat)))
27141
27142 (define-public r-wdman
27143 (package
27144 (name "r-wdman")
27145 (version "0.2.5")
27146 (source
27147 (origin
27148 (method url-fetch)
27149 (uri (cran-uri "wdman" version))
27150 (sha256
27151 (base32
27152 "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
27153 (properties `((upstream-name . "wdman")))
27154 (build-system r-build-system)
27155 (propagated-inputs
27156 (list r-assertthat r-binman r-processx r-semver r-yaml))
27157 (native-inputs (list r-knitr))
27158 (home-page "https://docs.ropensci.org/wdman/")
27159 (synopsis "Webdriver/Selenium binary manager")
27160 (description
27161 "There are a number of binary files associated with the
27162 Webdriver/Selenium project (see @url{http://www.seleniumhq.org/download/},
27163 @url{https://sites.google.com/a/chromium.org/chromedriver/},
27164 @url{https://github.com/mozilla/geckodriver},
27165 @url{http://phantomjs.org/download.html}, and
27166 @url{https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver} for
27167 more information). This package provides functions to download these binaries
27168 and to manage processes involving them.")
27169 (license license:expat)))
27170
27171 (define-public r-rselenium
27172 (package
27173 (name "r-rselenium")
27174 (version "1.7.7")
27175 (source
27176 (origin
27177 (method url-fetch)
27178 (uri (cran-uri "RSelenium" version))
27179 (sha256
27180 (base32
27181 "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
27182 (properties `((upstream-name . "RSelenium")))
27183 (build-system r-build-system)
27184 (propagated-inputs
27185 (list r-binman
27186 r-catools
27187 r-httr
27188 r-openssl
27189 r-wdman
27190 r-xml))
27191 (native-inputs (list r-knitr))
27192 (home-page "https://docs.ropensci.org/RSelenium/")
27193 (synopsis "R bindings for Selenium WebDriver")
27194 (description
27195 "This package provides a set of R bindings for the Selenium 2.0
27196 WebDriver (see @url{https://selenium.dev/documentation/en/} for more
27197 information) using the @code{JsonWireProtocol} (see
27198 @url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
27199 information). Selenium 2.0 WebDriver allows driving a web browser natively as
27200 a user would either locally or on a remote machine using the Selenium server
27201 it marks a leap forward in terms of web browser automation. Selenium
27202 automates web browsers (commonly referred to as browsers). Using RSelenium
27203 you can automate browsers locally or remotely.")
27204 (license license:agpl3+)))
27205
27206 (define-public r-conquer
27207 (package
27208 (name "r-conquer")
27209 (version "1.3.0")
27210 (source
27211 (origin
27212 (method url-fetch)
27213 (uri (cran-uri "conquer" version))
27214 (sha256
27215 (base32
27216 "1ynmaf7lgqjb8grsifx5dzy29cd5kz4x3yh0abnl2vxdr4c4wddc"))))
27217 (properties `((upstream-name . "conquer")))
27218 (build-system r-build-system)
27219 (propagated-inputs
27220 (list r-matrix r-matrixstats r-rcpp r-rcpparmadillo))
27221 (home-page "https://github.com/XiaoouPan/conquer")
27222 (synopsis "Convolution-type smoothed quantile regression")
27223 (description
27224 "This package provides fast and accurate convolution-type smoothed
27225 quantile regression, implemented using Barzilai-Borwein gradient descent with
27226 a Huber regression warm start. Confidence intervals for regression
27227 coefficients are constructed using multiplier bootstrap.")
27228 (license license:gpl3)))
27229
27230 (define-public r-fastshap
27231 (package
27232 (name "r-fastshap")
27233 (version "0.0.7")
27234 (source
27235 (origin
27236 (method url-fetch)
27237 (uri (cran-uri "fastshap" version))
27238 (sha256
27239 (base32
27240 "0gxch67i3bj6m8nb94m5hswq058w6n1q9war4dy2qnimlv7cmhdv"))))
27241 (properties `((upstream-name . "fastshap")))
27242 (build-system r-build-system)
27243 (propagated-inputs
27244 (list r-abind
27245 r-ggplot2
27246 r-gridextra
27247 r-matrixstats
27248 r-plyr
27249 r-rcpp
27250 r-rcpparmadillo
27251 r-tibble))
27252 (home-page "https://github.com/bgreenwell/fastshap")
27253 (synopsis "Fast approximate Shapley values")
27254 (description
27255 "This package computes fast (relative to other implementations)
27256 approximate Shapley values for any supervised learning model. Shapley values
27257 help to explain the predictions from any black box model using ideas from game
27258 theory; see @url{Strumbel and Kononenko (2014),
27259 doi.org/10.1007/s10115-013-0679-x} for details.")
27260 (license license:gpl2+)))
27261
27262 (define-public r-memuse
27263 (package
27264 (name "r-memuse")
27265 (version "4.2-1")
27266 (source (origin
27267 (method url-fetch)
27268 (uri (cran-uri "memuse" version))
27269 (sha256
27270 (base32
27271 "1wvwnjaaiv2647561z2b55dss35033ildx4kk8hzxfzgsjmdpsgm"))))
27272 (properties `((upstream-name . "memuse")))
27273 (build-system r-build-system)
27274 (home-page "https://github.com/shinra-dev/memuse")
27275 (synopsis "Memory Estimation Utilities")
27276 (description
27277 "This package provides procedures to answer the following questions:
27278 How much ram do you need to store a 100,000 by 100,000 matrix? How much ram is
27279 your current R session using? How much ram do you even have?")
27280 (license license:bsd-2)))
27281
27282 (define-public r-metrics
27283 (package
27284 (name "r-metrics")
27285 (version "0.1.4")
27286 (source
27287 (origin
27288 (method url-fetch)
27289 (uri (cran-uri "Metrics" version))
27290 (sha256
27291 (base32
27292 "0fh8qbjlwzagh272lgwr4bxcqcjb1qpz53mgs8rzlvncax6nk5bk"))))
27293 (properties `((upstream-name . "Metrics")))
27294 (build-system r-build-system)
27295 (home-page "https://github.com/mfrasco/Metrics")
27296 (synopsis "Evaluation metrics for machine learning")
27297 (description
27298 "This package provides an implementation of evaluation metrics in R that
27299 are commonly used in supervised machine learning. It implements metrics for
27300 regression, time series, binary classification, classification, and
27301 information retrieval problems. It has zero dependencies and a consistent,
27302 simple interface for all functions.")
27303 (license license:bsd-3)))
27304
27305 (define-public r-iml
27306 (package
27307 (name "r-iml")
27308 (version "0.11.0")
27309 (source
27310 (origin
27311 (method url-fetch)
27312 (uri (cran-uri "iml" version))
27313 (sha256
27314 (base32
27315 "1za7bjnp07i20vyb6vxz2ya5cr8g4p076w61n8m38wnz04lz5yz5"))))
27316 (properties `((upstream-name . "iml")))
27317 (build-system r-build-system)
27318 (propagated-inputs
27319 (list r-checkmate
27320 r-data-table
27321 r-formula
27322 r-future
27323 r-future-apply
27324 r-ggplot2
27325 r-metrics
27326 r-prediction
27327 r-r6))
27328 (native-inputs (list r-knitr))
27329 (home-page "https://github.com/christophM/iml")
27330 (synopsis "Interpretable machine learning")
27331 (description
27332 "This package provides interpretability methods to analyze the behavior
27333 and predictions of any machine learning model. Implemented methods are:
27334
27335 @itemize
27336 @item Feature importance described by Fisher et al. (2018),
27337 @item accumulated local effects plots described by Apley (2018),
27338 @item partial dependence plots described by Friedman (2001),
27339 @item individual conditional expectation ('ice') plots described by Goldstein
27340 et al. (2013) @url{https://doi.org/10.1080/10618600.2014.907095},
27341 @item local models (variant of 'lime') described by Ribeiro et. al (2016),
27342 @item the Shapley Value described by Strumbelj et. al (2014)
27343 @url{https://doi.org/10.1007/s10115-013-0679-x},
27344 @item feature interactions described by Friedman et. al
27345 @url{https://doi.org/10.1214/07-AOAS148} and tree surrogate models.
27346 @end itemize
27347 ")
27348 (license license:expat)))
27349
27350 (define-public r-goftest
27351 (package
27352 (name "r-goftest")
27353 (version "1.2-3")
27354 (source
27355 (origin
27356 (method url-fetch)
27357 (uri (cran-uri "goftest" version))
27358 (sha256
27359 (base32
27360 "06bz6k7smr4jbvzmb73qc5fkf4my59w5gbl18wlmpkkymsv78prs"))))
27361 (properties `((upstream-name . "goftest")))
27362 (build-system r-build-system)
27363 (home-page "https://github.com/baddstats/goftest")
27364 (synopsis "Classical Goodness-of-Fit tests for univariate distributions")
27365 (description
27366 "This package provides Cramer-Von Mises and Anderson-Darling tests of
27367 goodness-of-fit for continuous univariate distributions, using efficient
27368 algorithms.")
27369 (license license:gpl2+)))
27370
27371 (define-public r-tensor
27372 (package
27373 (name "r-tensor")
27374 (version "1.5")
27375 (source
27376 (origin
27377 (method url-fetch)
27378 (uri (cran-uri "tensor" version))
27379 (sha256
27380 (base32
27381 "19mfsgr6vz4lgwidm80i4yw0y1dr3n8i6qz7g4n2xa0k74zc5pp1"))))
27382 (properties `((upstream-name . "tensor")))
27383 (build-system r-build-system)
27384 (home-page "https://cran.r-project.org/web/packages/tensor/")
27385 (synopsis "Tensor product of arrays")
27386 (description
27387 "The tensor product of two arrays is notionally an outer product of the
27388 arrays collapsed in specific extents by summing along the appropriate
27389 diagonals. This package allows you to compute the tensor product of arrays.")
27390 (license license:gpl2+)))
27391
27392 (define-public r-spatstat-utils
27393 (package
27394 (name "r-spatstat-utils")
27395 (version "2.3-1")
27396 (source
27397 (origin
27398 (method url-fetch)
27399 (uri (cran-uri "spatstat.utils" version))
27400 (sha256
27401 (base32
27402 "08pybliv4r3v4rcazmlfr4a07sjfhrkmksdmhhq9k185vw4474av"))))
27403 (properties
27404 `((upstream-name . "spatstat.utils")))
27405 (build-system r-build-system)
27406 (home-page "http://www.spatstat.org")
27407 (synopsis "Utility functions for spatstat")
27408 (description
27409 "This package contains utility functions for the @code{spatstat} package
27410 which may also be useful for other purposes.")
27411 (license license:gpl2+)))
27412
27413 (define-public r-spatstat-sparse
27414 (package
27415 (name "r-spatstat-sparse")
27416 (version "2.1-1")
27417 (source
27418 (origin
27419 (method url-fetch)
27420 (uri (cran-uri "spatstat.sparse" version))
27421 (sha256
27422 (base32
27423 "00vkvv5pnm82gn7vqnzrrp68y46gbkhdq0hbwqx7nxjvf5lssdcs"))))
27424 (properties
27425 `((upstream-name . "spatstat.sparse")))
27426 (build-system r-build-system)
27427 (propagated-inputs
27428 (list r-abind r-matrix r-spatstat-utils r-tensor))
27429 (home-page "http://spatstat.org/")
27430 (synopsis "Sparse three-dimensional arrays and linear algebra utilities")
27431 (description
27432 "This package defines sparse three-dimensional arrays and supports
27433 standard operations on them. The package also includes utility functions for
27434 matrix calculations that are common in statistics, such as quadratic forms.")
27435 (license license:gpl2+)))
27436
27437 (define-public r-spatstat-data
27438 (package
27439 (name "r-spatstat-data")
27440 (version "2.2-0")
27441 (source
27442 (origin
27443 (method url-fetch)
27444 (uri (cran-uri "spatstat.data" version))
27445 (sha256
27446 (base32
27447 "1rf36zy29h9qabpv19hx84gjdiay7i9y9777d2zn17ahyss3p56k"))))
27448 (properties `((upstream-name . "spatstat.data")))
27449 (build-system r-build-system)
27450 (propagated-inputs
27451 (list r-matrix r-spatstat-utils))
27452 (home-page "http://www.spatstat.org")
27453 (synopsis "Datasets for spatstat")
27454 (description
27455 "This package contains all the datasets for the @code{spatstat}
27456 package.")
27457 (license license:gpl2+)))
27458
27459 (define-public r-spatstat-geom
27460 (package
27461 (name "r-spatstat-geom")
27462 (version "2.4-0")
27463 (source
27464 (origin
27465 (method url-fetch)
27466 (uri (cran-uri "spatstat.geom" version))
27467 (sha256
27468 (base32
27469 "0rwysq9a0ylbsr53q5kfh7wjk5mcdji211sc3s8gwzz8ki09mf1j"))))
27470 (properties `((upstream-name . "spatstat.geom")))
27471 (build-system r-build-system)
27472 (propagated-inputs
27473 (list r-deldir r-polyclip r-spatstat-data r-spatstat-utils))
27474 (home-page "http://spatstat.org/")
27475 (synopsis "Geometrical functionality of the spatstat package")
27476 (description
27477 "This is a subset of the original spatstat package, containing the
27478 user-level code from spatstat which performs geometrical operations, except
27479 for the geometry of linear networks.")
27480 (license license:gpl2+)))
27481
27482 (define-public r-spatstat-core
27483 (package
27484 (name "r-spatstat-core")
27485 (version "2.4-4")
27486 (source
27487 (origin
27488 (method url-fetch)
27489 (uri (cran-uri "spatstat.core" version))
27490 (sha256
27491 (base32
27492 "0fyi8y1z919nzn47kaviln7gflhcp5qdi3gfvf7nwkdix3pkk373"))))
27493 (properties `((upstream-name . "spatstat.core")))
27494 (build-system r-build-system)
27495 (propagated-inputs
27496 (list r-abind
27497 r-goftest
27498 r-matrix
27499 r-mgcv
27500 r-nlme
27501 r-rpart
27502 r-spatstat-data
27503 r-spatstat-geom
27504 r-spatstat-random
27505 r-spatstat-sparse
27506 r-spatstat-utils
27507 r-tensor))
27508 (home-page "http://spatstat.org/")
27509 (synopsis "Core functionality of the spatstat package")
27510 (description
27511 "This is a subset of the original spatstat package, containing all of the
27512 user-level code from spatstat, except for the code for linear networks.")
27513 (license license:gpl2+)))
27514
27515 (define-public r-spatstat-linnet
27516 (package
27517 (name "r-spatstat-linnet")
27518 (version "2.3-2")
27519 (source
27520 (origin
27521 (method url-fetch)
27522 (uri (cran-uri "spatstat.linnet" version))
27523 (sha256
27524 (base32
27525 "0y1py6x0xbw4ad3pjwcspi4ysgfh61f5fd79787zzgyyh2va8y4w"))))
27526 (properties
27527 `((upstream-name . "spatstat.linnet")))
27528 (build-system r-build-system)
27529 (propagated-inputs
27530 (list r-matrix
27531 r-spatstat-core
27532 r-spatstat-data
27533 r-spatstat-geom
27534 r-spatstat-random
27535 r-spatstat-sparse
27536 r-spatstat-utils))
27537 (home-page "http://spatstat.org/")
27538 (synopsis "Linear networks functionality of the spatstat package")
27539 (description
27540 "This is a subset of the spatstat package, containing its functionality
27541 for spatial data on a linear network.")
27542 (license license:gpl2+)))
27543
27544 (define-public r-spatstat-random
27545 (package
27546 (name "r-spatstat-random")
27547 (version "2.2-0")
27548 (source
27549 (origin
27550 (method url-fetch)
27551 (uri (cran-uri "spatstat.random" version))
27552 (sha256
27553 (base32 "0kb01s8k67ydcfqcnz3i55vpiksihh4xsg0w2p2bclxxkpdvpw25"))))
27554 (properties `((upstream-name . "spatstat.random")))
27555 (build-system r-build-system)
27556 (propagated-inputs (list r-spatstat-data r-spatstat-geom r-spatstat-utils))
27557 (home-page "http://spatstat.org/")
27558 (synopsis "Random Generation Functionality for the 'spatstat' Family")
27559 (description
27560 "This package provides functionality for random generation of spatial
27561 data in the spatstat family of packages. It generates random spatial patterns
27562 of points according to many simple rules (complete spatial randomness,
27563 Poisson, binomial, random grid, systematic, cell), randomised alteration of
27564 patterns (thinning, random shift, jittering), simulated realisations of random
27565 point processes (simple sequential inhibition, Matern inhibition models,
27566 Matern cluster process, Neyman-Scott cluster processes, log-Gaussian Cox
27567 processes, product shot noise cluster processes) and simulation of Gibbs point
27568 processes (Metropolis-Hastings birth-death-shift algorithm, alternating Gibbs
27569 sampler).")
27570 (license license:gpl2+)))
27571
27572 (define-public r-spatstat
27573 (package
27574 (name "r-spatstat")
27575 (version "2.3-4")
27576 (source
27577 (origin
27578 (method url-fetch)
27579 (uri (cran-uri "spatstat" version))
27580 (sha256
27581 (base32
27582 "1nlrp7660y68axlm4pczc5rxbdhbbac1ylh69azr4swj1gbzi82f"))))
27583 (properties `((upstream-name . "spatstat")))
27584 (build-system r-build-system)
27585 (propagated-inputs
27586 (list r-spatstat-core r-spatstat-data r-spatstat-geom
27587 r-spatstat-linnet r-spatstat-random r-spatstat-utils))
27588 (home-page "http://www.spatstat.org")
27589 (synopsis "Spatial Point Pattern analysis, model-fitting, simulation, tests")
27590 (description
27591 "This package provides a comprehensive toolbox for analysing Spatial
27592 Point Patterns. It is focused mainly on two-dimensional point patterns,
27593 including multitype/marked points, in any spatial region. It also supports
27594 three-dimensional point patterns, space-time point patterns in any number of
27595 dimensions, point patterns on a linear network, and patterns of other
27596 geometrical objects. It supports spatial covariate data such as pixel images
27597 and contains over 2000 functions for plotting spatial data, exploratory data
27598 analysis, model-fitting, simulation, spatial sampling, model diagnostics, and
27599 formal inference.")
27600 (license license:gpl2+)))
27601
27602 (define-public r-gaston
27603 (package
27604 (name "r-gaston")
27605 (version "1.5.7")
27606 (source
27607 (origin
27608 (method url-fetch)
27609 (uri (cran-uri "gaston" version))
27610 (sha256
27611 (base32
27612 "14z94dpln4dvgrv2w7w9ik7h6rpvbf02qhq1hqzx8c2cndzxr21i"))))
27613 (properties `((upstream-name . "gaston")))
27614 (build-system r-build-system)
27615 (inputs (list zlib))
27616 (propagated-inputs
27617 (list r-rcpp r-rcppeigen r-rcppparallel))
27618 (native-inputs (list r-knitr))
27619 (home-page "https://cran.r-project.org/web/packages/gaston/")
27620 (synopsis "Genetic data handling (QC, GRM, LD, PCA) and linear mixed models")
27621 (description
27622 "This is a package for the manipulation of genetic data (SNPs).
27623 Computation of @dfn{genetic relationship matrix} (GRM) and dominance matrix,
27624 @dfn{linkage disequilibrium} (LD), and heritability with efficient algorithms
27625 for linear mixed models (AIREML).")
27626 (license license:gpl3)))
27627
27628 (define-public r-cpp11
27629 (package
27630 (name "r-cpp11")
27631 (version "0.4.2")
27632 (source
27633 (origin
27634 (method url-fetch)
27635 (uri (cran-uri "cpp11" version))
27636 (sha256
27637 (base32
27638 "16cvjfkbc7c0ymdmbcqg9px6pjsqx6qhyfq5frqj739mhazy0g20"))))
27639 (properties `((upstream-name . "cpp11")))
27640 (build-system r-build-system)
27641 (native-inputs (list r-knitr))
27642 (home-page "https://github.com/r-lib/cpp11")
27643 (synopsis "C++11 Interface for R's C Interface")
27644 (description
27645 "This package provides a header only, C++11 interface to R's C interface.
27646 Compared to other approaches @code{cpp11} strives to be safe against long
27647 jumps from the C API as well as C++ exceptions, conform to normal R function
27648 semantics and supports interaction with @code{ALTREP} vectors.")
27649 (license license:expat)))
27650
27651 (define-public r-rcpptoml
27652 (package
27653 (name "r-rcpptoml")
27654 (version "0.1.7")
27655 (source
27656 (origin
27657 (method url-fetch)
27658 (uri (cran-uri "RcppTOML" version))
27659 (sha256
27660 (base32 "0h8517ipwqhqkhcfiyqmvsb585g01p0ra0azbpzyxip6pq6g029g"))))
27661 (properties `((upstream-name . "RcppTOML")))
27662 (build-system r-build-system)
27663 (propagated-inputs (list r-rcpp))
27664 (home-page "http://dirk.eddelbuettel.com/code/rcpp.toml.html")
27665 (synopsis "Rcpp bindings to TOML parser")
27666 (description
27667 "The TOML configuration format specifies an excellent format suitable for
27668 both human editing as well as the common uses of a machine-readable format.
27669 This package provides Rcpp bindings to a TOML parser.")
27670 (license license:gpl2+)))
27671
27672 (define-public r-rcppziggurat
27673 (package
27674 (name "r-rcppziggurat")
27675 (version "0.1.6")
27676 (source
27677 (origin
27678 (method url-fetch)
27679 (uri (cran-uri "RcppZiggurat" version))
27680 (sha256
27681 (base32
27682 "0wgd1v2p7zajnbrjf3hfi56p3pk3ld6iwkanbb04bjbnlif2ay4w"))))
27683 (properties `((upstream-name . "RcppZiggurat")))
27684 (build-system r-build-system)
27685 (propagated-inputs
27686 (list r-rcpp r-rcppgsl))
27687 (native-inputs (list r-knitr))
27688 (home-page "https://cran.r-project.org/web/packages/RcppZiggurat/")
27689 (synopsis "Rcpp integration of different \"Ziggurat\" normal RNG implementations")
27690 (description
27691 "The Ziggurat generator for normally distributed random numbers,
27692 originally proposed by Marsaglia and Tsang (2000,
27693 @url{https://doi.org/10.18637/jss.v005.i08}) has been improved upon a few
27694 times starting with Leong et al (2005,
27695 @url{https://doi.org/10.18637/jss.v012.i07}). This package provides an
27696 aggregation for comparing different implementations in order to provide a
27697 'faster but good enough' alternative for use with R and C++ code.")
27698 (license license:gpl2+)))
27699
27700 (define-public r-rfast
27701 (package
27702 (name "r-rfast")
27703 (version "2.0.6")
27704 (source
27705 (origin
27706 (method url-fetch)
27707 (uri (cran-uri "Rfast" version))
27708 (sha256
27709 (base32
27710 "0zxykq021h57mq0n6giqbx8ncjsdly0arhmaj3fcp3yfcxf4ns9l"))))
27711 (properties `((upstream-name . "Rfast")))
27712 (build-system r-build-system)
27713 (propagated-inputs
27714 (list r-rcpp r-rcpparmadillo r-rcppziggurat))
27715 (home-page "https://github.com/RfastOfficial/Rfast")
27716 (synopsis "Collection of efficient and fast R functions")
27717 (description
27718 "This package provides a collection of fast (utility) functions for data
27719 analysis. Column- and row- wise means, medians, variances, minimums,
27720 maximums, many t, F and G-square tests, many regressions (normal, logistic,
27721 Poisson), are some of the many fast functions.")
27722 (license license:gpl2+)))
27723
27724 (define-public r-rffc
27725 (package
27726 (name "r-rffc")
27727 (version "1.0")
27728 (source (origin
27729 (method url-fetch)
27730 (uri (string-append
27731 "https://download.r-forge.r-project.org/src/contrib/"
27732 "rfFC_" version ".tar.gz"))
27733 (sha256
27734 (base32
27735 "05x9wgzsmx4vb12lmcspymgmpb2xw8bwryb8ysg7vzg2nkh0ma3g"))))
27736 (build-system r-build-system)
27737 (propagated-inputs
27738 (list r-randomforest))
27739 (home-page "https://r-forge.r-project.org/projects/rffc/")
27740 (synopsis "Random Forest Feature Contributions")
27741 (description "This package provides functions for extracting feature
27742 contributions from a random forest model from package @code{randomForest}.
27743 Feature contributions provide detailed information about the relationship
27744 between data variables and the predicted value returned by random forest
27745 model.")
27746 (license license:gpl2)))
27747
27748 (define-public r-clusterr
27749 (package
27750 (name "r-clusterr")
27751 (version "1.2.6")
27752 (source
27753 (origin
27754 (method url-fetch)
27755 (uri (cran-uri "ClusterR" version))
27756 (sha256
27757 (base32
27758 "00mha8madcba83ix4fc04rb7sagfm0lxlh1wvs7dvjdrngps41jr"))))
27759 (properties `((upstream-name . "ClusterR")))
27760 (build-system r-build-system)
27761 (propagated-inputs
27762 (list r-ggplot2 r-gmp r-gtools r-rcpp r-rcpparmadillo))
27763 (native-inputs (list r-knitr))
27764 (home-page "https://github.com/mlampros/ClusterR")
27765 (synopsis "Clustering")
27766 (description
27767 "This package provides Gaussian mixture models, k-means,
27768 mini-batch-kmeans, k-medoids and affinity propagation clustering with the
27769 option to plot, validate, predict (new data) and estimate the optimal number
27770 of clusters. The package takes advantage of @code{RcppArmadillo} to speed up
27771 the computationally intensive parts of the functions. For more information,
27772 see
27773
27774 @enumerate
27775 @item \"Clustering in an Object-Oriented Environment\" by Anja Struyf, Mia
27776 Hubert, Peter Rousseeuw (1997), Journal of Statistical Software,
27777 @url{https://doi.org/10.18637/jss.v001.i04};
27778 @item \"Web-scale k-means clustering\" by D. Sculley (2010), ACM Digital
27779 Library, @url{https://doi.org/10.1145/1772690.1772862};
27780 @item \"Armadillo: a template-based C++ library
27781 for linear algebra\" by Sanderson et al (2016), The Journal of Open Source
27782 Software, @url{https://doi.org/10.21105/joss.00026};
27783 @item \"Clustering by Passing Messages Between Data Points\" by Brendan
27784 J. Frey and Delbert Dueck, Science 16 Feb 2007: Vol. 315, Issue 5814,
27785 pp. 972-976, @url{https://doi.org/10.1126/science.1136800}.
27786 @end enumerate
27787 ")
27788 (license license:gpl3)))
27789
27790 (define-public r-spectrum
27791 (package
27792 (name "r-spectrum")
27793 (version "1.1")
27794 (source
27795 (origin
27796 (method url-fetch)
27797 (uri (cran-uri "Spectrum" version))
27798 (sha256
27799 (base32
27800 "0n38d360azkck6vvhr771zsh0gbvd9qsf9ygg5r18vhz0pb1xcfw"))))
27801 (properties `((upstream-name . "Spectrum")))
27802 (build-system r-build-system)
27803 (propagated-inputs
27804 (list r-clusterr r-diptest r-ggplot2 r-rfast))
27805 (native-inputs (list r-knitr))
27806 (home-page "https://cran.r-project.org/web/packages/Spectrum/")
27807 (synopsis "Fast adaptive spectral clustering for single and multi-view data")
27808 (description
27809 "This package provides a self-tuning spectral clustering method for
27810 single or multi-view data. Spectrum uses a new type of adaptive density aware
27811 kernel that strengthens connections in the graph based on common nearest
27812 neighbours. It uses a tensor product graph data integration and diffusion
27813 procedure to integrate different data sources and reduce noise. Spectrum uses
27814 either the eigengap or multimodality gap heuristics to determine the number of
27815 clusters. The method is sufficiently flexible so that a wide range of
27816 Gaussian and non-Gaussian structures can be clustered with automatic selection
27817 of K.")
27818 (license license:agpl3+)))
27819
27820 (define-public r-nabor
27821 (package
27822 (name "r-nabor")
27823 (version "0.5.0")
27824 (source
27825 (origin
27826 (method url-fetch)
27827 (uri (cran-uri "nabor" version))
27828 (sha256
27829 (base32
27830 "1nj39cdfwrmhgsi3cq8imxv3n6xzc1v6dzdb2cf2hybjk368v4s7"))))
27831 (properties `((upstream-name . "nabor")))
27832 (build-system r-build-system)
27833 (propagated-inputs
27834 (list r-bh r-rcpp r-rcppeigen))
27835 (home-page "https://cran.r-project.org/web/packages/nabor/")
27836 (synopsis "Wrapper for K nearest neighbour library for low dimensions")
27837 (description
27838 "This package provides an R wrapper for libnabo, an exact or approximate
27839 k nearest neighbour library which is optimised for low dimensional
27840 spaces (e.g. 3D). @code{nabor} includes a @code{knn} function that is
27841 designed as a drop-in replacement for the RANN function @code{nn2}. In
27842 addition, objects which include the k-d tree search structure can be returned
27843 to speed up repeated queries of the same set of target points.")
27844 (license license:bsd-3)))
27845
27846 (define-public r-naturalsort
27847 (package
27848 (name "r-naturalsort")
27849 (version "0.1.3")
27850 (source (origin
27851 (method url-fetch)
27852 (uri (cran-uri "naturalsort" version))
27853 (sha256
27854 (base32
27855 "0mz801y9mzld9ypp3xmsjw2d8l9q97sdnv09wrci9xi3yg2sjf6d"))))
27856 (build-system r-build-system)
27857 (home-page "https://cran.r-project.org/web/packages/naturalsort/")
27858 (synopsis "Natural ordering")
27859 (description "This package provides functions related to human natural
27860 ordering. It handles adjacent digits in a character sequence as a number
27861 so that natural sort function arranges a character vector by their numbers,
27862 not digit characters.")
27863 (license license:bsd-3)))
27864
27865 (define-public r-visdat
27866 (package
27867 (name "r-visdat")
27868 (version "0.5.3")
27869 (source (origin
27870 (method url-fetch)
27871 (uri (cran-uri "visdat" version))
27872 (sha256
27873 (base32
27874 "1ikqp29nncbw1xlwyb9dqqgcdk9q0bs3wxhnhnjpb11vcjv7cz2j"))))
27875 (build-system r-build-system)
27876 (propagated-inputs
27877 (list r-dplyr
27878 r-ggplot2
27879 r-glue
27880 r-magrittr
27881 r-purrr
27882 r-readr
27883 r-tibble
27884 r-tidyr))
27885 (native-inputs
27886 (list r-knitr))
27887 (home-page "https://visdat.njtierney.com/")
27888 (synopsis "Preliminary Visualisation of Data")
27889 (description "This package provides procedures to create preliminary exploratory
27890 data visualisations of an entire dataset to identify problems or unexpected features
27891 using @code{ggplot2}.")
27892 (license license:expat)))
27893
27894 (define-public r-muhaz
27895 (package
27896 (name "r-muhaz")
27897 (version "1.2.6.4")
27898 (source
27899 (origin
27900 (method url-fetch)
27901 (uri (cran-uri "muhaz" version))
27902 (sha256
27903 (base32
27904 "1ddy8ayr4rdhzcipdvxdwd7z5g9hfp0ppacl7xf6f2612cn1185g"))))
27905 (properties `((upstream-name . "muhaz")))
27906 (build-system r-build-system)
27907 (propagated-inputs
27908 (list r-survival))
27909 (native-inputs
27910 (list gfortran))
27911 (home-page "https://cran.r-project.org/web/packages/muhaz/")
27912 (synopsis "Hazard function estimation in survival analysis")
27913 (description
27914 "This package produces a smooth estimate of the hazard function for
27915 censored data.")
27916 ;; Any version of the GPL.
27917 (license license:gpl3+)))
27918
27919 (define-public r-flexsurv
27920 (package
27921 (name "r-flexsurv")
27922 (version "2.1")
27923 (source
27924 (origin
27925 (method url-fetch)
27926 (uri (cran-uri "flexsurv" version))
27927 (sha256
27928 (base32
27929 "0kwij9nkdvnsn1kn12fj3hjkd2qpgw7bdda4qad7basq5p6divlp"))))
27930 (properties `((upstream-name . "flexsurv")))
27931 (build-system r-build-system)
27932 (propagated-inputs
27933 (list r-assertthat
27934 r-desolve
27935 r-dplyr
27936 r-generics
27937 r-magrittr
27938 r-matrix
27939 r-mstate
27940 r-muhaz
27941 r-mvtnorm
27942 r-numderiv
27943 r-purrr
27944 r-quadprog
27945 r-rcpp
27946 r-rlang
27947 r-rstpm2
27948 r-survival
27949 r-tibble
27950 r-tidyr
27951 r-tidyselect))
27952 (native-inputs
27953 (list r-knitr))
27954 (home-page "https://github.com/chjackson/flexsurv-dev")
27955 (synopsis "Flexible parametric survival and multi-state models")
27956 (description
27957 "This package provides flexible parametric models for time-to-event data,
27958 including the Royston-Parmar spline model, generalized gamma and generalized F
27959 distributions. Any user-defined parametric distribution can be fitted, given
27960 at least an R function defining the probability density or hazard. There are
27961 also tools for fitting and predicting from fully parametric multi-state
27962 models.")
27963 (license license:gpl2+)))
27964
27965 (define-public r-transphylo
27966 (package
27967 (name "r-transphylo")
27968 (version "1.4.5")
27969 (source
27970 (origin
27971 (method url-fetch)
27972 (uri (cran-uri "TransPhylo" version))
27973 (sha256
27974 (base32
27975 "0g92kwi1nlmpc8m4pc9kv9xhczryr2kn9icfr3js7da7vy8g50xy"))))
27976 (properties `((upstream-name . "TransPhylo")))
27977 (build-system r-build-system)
27978 (propagated-inputs
27979 (list r-ape r-rcpp))
27980 (native-inputs
27981 (list r-knitr))
27982 (home-page "https://cran.r-project.org/web/packages/TransPhylo/")
27983 (synopsis "Inference of transmission tree from a dated phylogeny")
27984 (description
27985 "This is a package to infer transmission trees from a dated phylogeny.
27986 It includes methods to simulate and analyze outbreaks. The methodology is
27987 described in @url{https://doi.org/10.1093/molbev/msu121,Didelot et al. (2014)}
27988 and @url{https://doi.org/10.1093/molbev/msw275,Didelot et al. (2017)}.")
27989 (license license:gpl2+)))
27990
27991 (define-public r-km-ci
27992 (package
27993 (name "r-km-ci")
27994 (version "0.5-6")
27995 (source
27996 (origin
27997 (method url-fetch)
27998 (uri (cran-uri "km.ci" version))
27999 (sha256
28000 (base32
28001 "18sc9vhbdgks8lhk2nfxkkayh8j4j227hl63fm5p04f7z4wm6wc1"))))
28002 (properties `((upstream-name . "km.ci")))
28003 (build-system r-build-system)
28004 (propagated-inputs
28005 (list r-survival))
28006 (home-page "https://cran.r-project.org/web/packages/km.ci/")
28007 (synopsis "Confidence intervals for the Kaplan-Meier estimator")
28008 (description
28009 "This package computes various @dfn{confidence intervals} (CI) for the
28010 Kaplan-Meier estimator, namely: Petos CI, Rothman CI, CIs based on Greenwoods
28011 variance, Thomas and Grunkemeier CI and the simultaneous confidence bands by
28012 Nair and Hall and Wellner.")
28013 (license license:gpl2+)))
28014
28015 (define-public r-kmsurv
28016 (package
28017 (name "r-kmsurv")
28018 (version "0.1-5")
28019 (source
28020 (origin
28021 (method url-fetch)
28022 (uri (cran-uri "KMsurv" version))
28023 (sha256
28024 (base32
28025 "0hi5vvk584rl70gbrr75w9hc775xmbxnaig0dd6hlpi4071pnqjm"))))
28026 (properties `((upstream-name . "KMsurv")))
28027 (build-system r-build-system)
28028 (home-page "https://cran.r-project.org/web/packages/KMsurv/")
28029 (synopsis "Data sets from Klein and Moeschberger (1997), Survival Analysis")
28030 (description
28031 "This package provides data sets and functions for Klein and Moeschberger
28032 (1997), \"Survival Analysis, Techniques for Censored and Truncated Data\",
28033 Springer.")
28034 (license license:gpl3+)))
28035
28036 (define-public r-survmisc
28037 (package
28038 (name "r-survmisc")
28039 (version "0.5.6")
28040 (source
28041 (origin
28042 (method url-fetch)
28043 (uri (cran-uri "survMisc" version))
28044 (sha256
28045 (base32
28046 "014cf7sfndmib9jmj0p3h67sr750k2pvw7m865zwdpvlqddi44fr"))))
28047 (properties `((upstream-name . "survMisc")))
28048 (build-system r-build-system)
28049 (propagated-inputs
28050 (list r-data-table
28051 r-ggplot2
28052 r-gridextra
28053 r-km-ci
28054 r-kmsurv
28055 r-knitr
28056 r-survival
28057 r-xtable
28058 r-zoo))
28059 (native-inputs
28060 (list r-knitr))
28061 (home-page "https://cran.r-project.org/web/packages/survMisc/")
28062 (synopsis "Miscellaneous functions for survival data")
28063 (description
28064 "This package provides a collection of functions to help in the analysis
28065 of right-censored survival data. These extend the methods available in
28066 the @code{survival} package.")
28067 (license license:gpl2)))
28068
28069 (define-public r-exactranktests
28070 (package
28071 (name "r-exactranktests")
28072 (version "0.8-35")
28073 (source
28074 (origin
28075 (method url-fetch)
28076 (uri (cran-uri "exactRankTests" version))
28077 (sha256
28078 (base32
28079 "1qv9i57chhz8xiv0j8r47rbigyqs72fa7ssz99inyc0s8gzskd3y"))))
28080 (properties
28081 `((upstream-name . "exactRankTests")))
28082 (build-system r-build-system)
28083 (home-page "https://cran.r-project.org/web/packages/exactRankTests/")
28084 (synopsis "Exact distributions for rank and permutation tests")
28085 (description
28086 "This package computes exact conditional p-values and quantiles using an
28087 implementation of the Shift-Algorithm by Streitberg & Roehmel.")
28088 (license license:gpl2+)))
28089
28090 (define-public r-maxstat
28091 (package
28092 (name "r-maxstat")
28093 (version "0.7-25")
28094 (source
28095 (origin
28096 (method url-fetch)
28097 (uri (cran-uri "maxstat" version))
28098 (sha256
28099 (base32
28100 "114z1rwxwvk05ijjhdppzm148n1h192fp0w12ky10zkrhf6kphbg"))))
28101 (properties `((upstream-name . "maxstat")))
28102 (build-system r-build-system)
28103 (propagated-inputs
28104 (list r-exactranktests r-mvtnorm))
28105 (home-page "https://cran.r-project.org/web/packages/maxstat/")
28106 (synopsis "Maximally selected rank statistics")
28107 (description
28108 "This package provides maximally selected rank statistics with several
28109 p-value approximations.")
28110 (license license:gpl2+)))
28111
28112 (define-public r-survminer
28113 (package
28114 (name "r-survminer")
28115 (version "0.4.9")
28116 (source
28117 (origin
28118 (method url-fetch)
28119 (uri (cran-uri "survminer" version))
28120 (sha256
28121 (base32
28122 "0byh0wxdbjfwdrzsnqv4xlmnik6lj0vkkzfxy7lssk8dv5zmj7nz"))))
28123 (properties `((upstream-name . "survminer")))
28124 (build-system r-build-system)
28125 (propagated-inputs
28126 (list r-broom
28127 r-dplyr
28128 r-ggplot2
28129 r-ggpubr
28130 r-ggtext
28131 r-gridextra
28132 r-magrittr
28133 r-maxstat
28134 r-purrr
28135 r-rlang
28136 r-scales
28137 r-survival
28138 r-survmisc
28139 r-tibble
28140 r-tidyr))
28141 (native-inputs
28142 (list r-knitr))
28143 (home-page "https://rpkgs.datanovia.com/survminer/index.html")
28144 (synopsis "Drawing survival curves using ggplot2")
28145 (description
28146 "This package contains the function @code{ggsurvplot()} for easily
28147 drawing beautiful and 'ready-to-publish' survival curves with the 'number at
28148 risk' table and 'censoring count plot'. Other functions are also available to
28149 plot adjusted curves for Cox model and to visually examine Cox model
28150 assumptions.")
28151 (license license:gpl2)))
28152
28153 (define-public r-forge
28154 (package
28155 (name "r-forge")
28156 (version "0.2.0")
28157 (source
28158 (origin
28159 (method url-fetch)
28160 (uri (cran-uri "forge" version))
28161 (sha256
28162 (base32
28163 "0pjfzsc35agkh0zfw2czwajkbsyn6liys5irl5bhz5r1vim3jmwa"))))
28164 (properties `((upstream-name . "forge")))
28165 (build-system r-build-system)
28166 (propagated-inputs
28167 (list r-magrittr r-rlang))
28168 (home-page "https://cran.r-project.org/web/packages/forge/")
28169 (synopsis "Cast values into shape")
28170 (description
28171 "This package provides helper functions with a consistent interface to
28172 coerce and verify the types and shapes of values for input checking.")
28173 (license license:asl2.0)))
28174
28175 (define-public r-config
28176 (package
28177 (name "r-config")
28178 (version "0.3.1")
28179 (source
28180 (origin
28181 (method url-fetch)
28182 (uri (cran-uri "config" version))
28183 (sha256
28184 (base32
28185 "0l2zp7v6qaz72dclcbjrlis633zlwp8rsi5azr7iw127iyz7i26l"))))
28186 (properties `((upstream-name . "config")))
28187 (build-system r-build-system)
28188 (propagated-inputs
28189 (list r-yaml))
28190 (native-inputs
28191 (list r-knitr))
28192 (home-page "https://github.com/rstudio/config")
28193 (synopsis "Manage environment specific configuration values")
28194 (description
28195 "This package lets you manage configuration values across multiple
28196 environments (e.g. development, test, production). It reads values using a
28197 function that determines the current environment and returns the appropriate
28198 value.")
28199 (license license:gpl3)))
28200
28201 (define-public r-adaptivesparsity
28202 (package
28203 (name "r-adaptivesparsity")
28204 (version "1.6")
28205 (source (origin
28206 (method url-fetch)
28207 (uri (cran-uri "AdaptiveSparsity" version))
28208 (sha256
28209 (base32
28210 "0imr5m8mll9j6n4icsv6z9rl5kbnwsp9wvzrg7n90nnmcxq2cz91"))))
28211 (properties
28212 `((upstream-name . "AdaptiveSparsity")))
28213 (build-system r-build-system)
28214 (arguments
28215 `(#:phases
28216 (modify-phases %standard-phases
28217 (add-after 'unpack 'link-against-armadillo
28218 (lambda _
28219 (substitute* "src/Makevars"
28220 (("PKG_LIBS=" prefix)
28221 (string-append prefix "-larmadillo")))
28222 #t)))))
28223 (propagated-inputs
28224 (list r-mass r-matrix r-rcpp r-rcpparmadillo))
28225 (inputs
28226 (list armadillo))
28227 (home-page "https://cran.r-project.org/web/packages/AdaptiveSparsity")
28228 (synopsis "Adaptive sparsity models")
28229 (description
28230 "This package implements the Figueiredo machine learning algorithm for
28231 adaptive sparsity and the Wong algorithm for adaptively sparse Gaussian
28232 geometric models.")
28233 (license license:lgpl3+)))
28234
28235 (define-public r-add2ggplot
28236 (package
28237 (name "r-add2ggplot")
28238 (version "0.3.0")
28239 (source
28240 (origin
28241 (method url-fetch)
28242 (uri (cran-uri "add2ggplot" version))
28243 (sha256
28244 (base32 "0c94i1cfp2pvplvxmfvvz2fyj026r1jnax05mrzrc7ppnqzy25y0"))))
28245 (properties `((upstream-name . "add2ggplot")))
28246 (build-system r-build-system)
28247 (propagated-inputs
28248 (list r-ggplot2 r-magick r-magrittr r-rcolorbrewer r-zeallot))
28249 (native-inputs (list r-knitr))
28250 (home-page "https://github.com/JiaxiangBU/add2ggplot")
28251 (synopsis "Extension for ggplot2")
28252 (description "This package provides tools to create themes and color
28253 palettes for the package ggplot2.")
28254 (license license:expat)))
28255
28256 (define-public r-diffusionmap
28257 (package
28258 (name "r-diffusionmap")
28259 (version "1.2.0")
28260 (source
28261 (origin
28262 (method url-fetch)
28263 (uri (cran-uri "diffusionMap" version))
28264 (sha256
28265 (base32
28266 "1rvk7069brlm1s9kqj4c31mwwr3mw4hmhay95cjjjfmw5xclff2j"))))
28267 (properties `((upstream-name . "diffusionMap")))
28268 (build-system r-build-system)
28269 (propagated-inputs
28270 (list r-igraph r-matrix r-scatterplot3d))
28271 (home-page "https://www.r-project.org")
28272 (synopsis "Diffusion map")
28273 (description "This package implements the diffusion map method of data
28274 parametrization, including creation and visualization of diffusion maps,
28275 clustering with diffusion K-means and regression using the adaptive regression
28276 model.")
28277 (license license:gpl2)))
28278
28279 (define-public r-igraph
28280 (package
28281 (name "r-igraph")
28282 (version "1.3.1")
28283 (source
28284 (origin
28285 (method url-fetch)
28286 (uri (cran-uri "igraph" version))
28287 (sha256
28288 (base32
28289 "0khl87ncc9hkvx4f1kyzv7w7bg9zbyd1rk20ja3azkhpqjkjnnjh"))))
28290 (build-system r-build-system)
28291 (native-inputs
28292 (list gfortran))
28293 (inputs
28294 (list gmp glpk libxml2 zlib))
28295 (propagated-inputs
28296 (list r-magrittr r-matrix r-pkgconfig))
28297 (home-page "https://igraph.org")
28298 (synopsis "Network analysis and visualization")
28299 (description
28300 "This package provides routines for simple graphs and network analysis.
28301 It can handle large graphs very well and provides functions for generating
28302 random and regular graphs, graph visualization, centrality methods and much
28303 more.")
28304 (license license:gpl2+)))
28305
28306 (define-public r-workflows
28307 (package
28308 (name "r-workflows")
28309 (version "0.2.6")
28310 (source
28311 (origin
28312 (method url-fetch)
28313 (uri (cran-uri "workflows" version))
28314 (sha256
28315 (base32
28316 "0xhc1j25fjipw8hvcpdbvfm640kp0flwvifj5f7g4n6b3wb8cm6a"))))
28317 (properties `((upstream-name . "workflows")))
28318 (build-system r-build-system)
28319 (propagated-inputs
28320 (list r-cli
28321 r-generics
28322 r-glue
28323 r-hardhat
28324 r-lifecycle
28325 r-parsnip
28326 r-rlang
28327 r-tidyselect
28328 r-vctrs))
28329 (native-inputs
28330 (list r-knitr))
28331 (home-page "https://github.com/tidymodels/workflows")
28332 (synopsis "Modeling workflows")
28333 (description
28334 "A workflow is an object that can bundle together your pre-processing,
28335 modeling, and post-processing requests. For example, if you have a
28336 @code{recipe} and @code{parsnip} model, these can be combined into a
28337 workflow. The advantages are:
28338
28339 @enumerate
28340 @item You don’t have to keep track of separate objects in your workspace.
28341 @item The recipe prepping and model fitting can be executed using a single
28342 call to @code{fit()}.
28343 @item If you have custom tuning parameter settings, these can be defined using
28344 a simpler interface when combined with @code{tune}.
28345 @item In the future, workflows will be able to add post-processing operations,
28346 such as modifying the probability cutoff for two-class models.
28347 @end enumerate
28348 ")
28349 (license license:expat)))
28350
28351 (define-public r-lobstr
28352 (package
28353 (name "r-lobstr")
28354 (version "1.1.1")
28355 (source
28356 (origin
28357 (method url-fetch)
28358 (uri (cran-uri "lobstr" version))
28359 (sha256
28360 (base32
28361 "0vkif17825x33cz8r89j0qph4wj5l8fzfgl8nh2g7m2v140cxjdq"))))
28362 (properties `((upstream-name . "lobstr")))
28363 (build-system r-build-system)
28364 (propagated-inputs
28365 (list r-crayon r-rcpp r-rlang))
28366 (home-page "https://github.com/r-lib/lobstr")
28367 (synopsis "Visualize R data structures with trees")
28368 (description
28369 "This package provides a set of tools for inspecting and understanding R
28370 data structures inspired by @code{str}. It includes @code{ast} for
28371 visualizing abstract syntax trees, @code{ref} for showing shared references,
28372 @code{cst} for showing call stack trees, and @code{obj_size} for computing
28373 object sizes.")
28374 (license license:gpl3)))
28375
28376 (define-public r-gpfit
28377 (package
28378 (name "r-gpfit")
28379 (version "1.0-8")
28380 (source
28381 (origin
28382 (method url-fetch)
28383 (uri (cran-uri "GPfit" version))
28384 (sha256
28385 (base32
28386 "05mpiyi2vxv0wqp422n1mnxa8msc4daq40cwpnpngbcwqhlgqkby"))))
28387 (properties `((upstream-name . "GPfit")))
28388 (build-system r-build-system)
28389 (propagated-inputs
28390 (list r-lattice r-lhs))
28391 (home-page "https://cran.r-project.org/web/packages/GPfit/")
28392 (synopsis "Gaussian Processes modeling")
28393 (description
28394 "This package provides a computationally stable approach of fitting a
28395 @dfn{Gaussian Process} (GP) model to a deterministic simulator.")
28396 (license license:gpl2)))
28397
28398 (define-public r-yardstick
28399 (package
28400 (name "r-yardstick")
28401 (version "0.0.9")
28402 (source
28403 (origin
28404 (method url-fetch)
28405 (uri (cran-uri "yardstick" version))
28406 (sha256
28407 (base32
28408 "00hv4gk1ba4dab8i3dcq7lim4bll7l572rgc8km9x4ja8by95j8h"))))
28409 (properties `((upstream-name . "yardstick")))
28410 (build-system r-build-system)
28411 (propagated-inputs
28412 (list r-dplyr
28413 r-generics
28414 r-proc
28415 r-rlang
28416 r-tidyselect
28417 r-vctrs))
28418 (native-inputs
28419 (list r-knitr))
28420 (home-page "https://github.com/tidymodels/yardstick")
28421 (synopsis "Tidy characterizations of model performance")
28422 (description
28423 "This package provides tidy tools for quantifying how well a model fits
28424 to a data set such as confusion matrices, class probability curve summaries,
28425 and regression metrics (e.g., RMSE).")
28426 (license license:gpl2)))
28427
28428 (define-public r-warp
28429 (package
28430 (name "r-warp")
28431 (version "0.2.0")
28432 (source
28433 (origin
28434 (method url-fetch)
28435 (uri (cran-uri "warp" version))
28436 (sha256
28437 (base32
28438 "0s0acddc5h14245hi1faycxp0fyvw6nlgaz2df7da4fpyd2f638f"))))
28439 (properties `((upstream-name . "warp")))
28440 (build-system r-build-system)
28441 (native-inputs (list r-knitr))
28442 (home-page "https://github.com/DavisVaughan/warp")
28443 (synopsis "Group dates")
28444 (description
28445 "This package provides tooling to group dates by a variety of periods
28446 including: yearly, monthly, by second, by week of the month, and more. The
28447 groups are defined in such a way that they also represent the distance between
28448 dates in terms of the period. This extracts valuable information that can be
28449 used in further calculations that rely on a specific temporal spacing between
28450 observations.")
28451 (license license:expat)))
28452
28453 (define-public r-scico
28454 (package
28455 (name "r-scico")
28456 (version "1.3.0")
28457 (source
28458 (origin
28459 (method url-fetch)
28460 (uri (cran-uri "scico" version))
28461 (sha256
28462 (base32 "08grfbjd5s0vdw76ni37yjl2242rr8i2jy72sgpwgra282hpnji3"))))
28463 (properties `((upstream-name . "scico")))
28464 (build-system r-build-system)
28465 (propagated-inputs (list r-scales))
28466 (home-page "https://github.com/thomasp85/scico")
28467 (synopsis "Colour Palettes Based on the Scientific Colour-Maps")
28468 (description
28469 "This package provides colour choice in information visualisation. It
28470 important in order to avoid being mislead by inherent bias in the used colour
28471 palette. This package provides access to the perceptually uniform and
28472 colour-blindness friendly palettes developed by Fabio Crameri and released
28473 under the \"Scientific Colour-Maps\" moniker. The package contains 24
28474 different palettes and includes both diverging and sequential types.")
28475 (license license:expat)))
28476
28477 (define-public r-slider
28478 (package
28479 (name "r-slider")
28480 (version "0.2.2")
28481 (source
28482 (origin
28483 (method url-fetch)
28484 (uri (cran-uri "slider" version))
28485 (sha256
28486 (base32
28487 "1vxk2bc33svwcki2j8zr5jcxswh27i0fqgzjw2a5a1pp9dh3fmd3"))))
28488 (properties `((upstream-name . "slider")))
28489 (build-system r-build-system)
28490 (propagated-inputs
28491 (list r-ellipsis r-glue r-rlang r-vctrs r-warp))
28492 (native-inputs (list r-knitr))
28493 (home-page "https://github.com/DavisVaughan/slider")
28494 (synopsis "Sliding window functions")
28495 (description
28496 "This package provides type-stable rolling window functions over any R
28497 data type. Cumulative and expanding windows are also supported. For more
28498 advanced usage, an index can be used as a secondary vector that defines how
28499 sliding windows are to be created.")
28500 (license license:expat)))
28501
28502 (define-public r-rlist
28503 (package
28504 (name "r-rlist")
28505 (version "0.4.6.2")
28506 (source
28507 (origin
28508 (method url-fetch)
28509 (uri (cran-uri "rlist" version))
28510 (sha256
28511 (base32 "15q99rhbbjq8zd976yjmfnny45dd5fg2p2dv1sljg2kwi66nbppb"))))
28512 (properties `((upstream-name . "rlist")))
28513 (build-system r-build-system)
28514 (propagated-inputs (list r-data-table r-jsonlite r-xml r-yaml))
28515 (home-page "https://renkun-ken.github.io/rlist/")
28516 (synopsis "A Toolbox for Non-Tabular Data Manipulation")
28517 (description
28518 "This package provides a set of functions for data manipulation with
28519 list objects, including mapping, filtering, grouping, sorting, updating,
28520 searching, and other useful functions. Most functions are designed to be
28521 pipeline friendly so that data processing with lists can be chained.")
28522 (license license:expat)))
28523
28524 (define-public r-rsample
28525 (package
28526 (name "r-rsample")
28527 (version "0.1.1")
28528 (source
28529 (origin
28530 (method url-fetch)
28531 (uri (cran-uri "rsample" version))
28532 (sha256
28533 (base32
28534 "01xwhj4zfvxbv9cjb6mbz3aphxqc3cnjjx1xy2yx2wd94fbka42z"))))
28535 (properties `((upstream-name . "rsample")))
28536 (build-system r-build-system)
28537 (propagated-inputs
28538 (list r-dplyr
28539 r-ellipsis
28540 r-furrr
28541 r-generics
28542 r-lifecycle
28543 r-purrr
28544 r-rlang
28545 r-slider
28546 r-tibble
28547 r-tidyr
28548 r-tidyselect
28549 r-vctrs))
28550 (native-inputs
28551 (list r-knitr))
28552 (home-page "https://rsample.tidymodels.org")
28553 (synopsis "General resampling infrastructure")
28554 (description
28555 "This package provides classes and functions to create and summarize
28556 different types of resampling objects (e.g. bootstrap, cross-validation).")
28557 (license license:gpl2)))
28558
28559 (define-public r-dicedesign
28560 (package
28561 (name "r-dicedesign")
28562 (version "1.9")
28563 (source
28564 (origin
28565 (method url-fetch)
28566 (uri (cran-uri "DiceDesign" version))
28567 (sha256
28568 (base32
28569 "1a8ixa65xgyfri03cviic8qi2plbhdyz8m02bwif8w94w0q3ghlk"))))
28570 (properties `((upstream-name . "DiceDesign")))
28571 (build-system r-build-system)
28572 (home-page "http://dice.emse.fr/")
28573 (synopsis "Designs of computer experiments")
28574 (description
28575 "This package provides tools to create some specific @code{Space-Filling
28576 Design} (SFD) and to test their quality.")
28577 (license license:gpl3)))
28578
28579 (define-public r-dials
28580 (package
28581 (name "r-dials")
28582 (version "0.1.1")
28583 (source
28584 (origin
28585 (method url-fetch)
28586 (uri (cran-uri "dials" version))
28587 (sha256
28588 (base32
28589 "1h695g9vklqn0vd53j9k03s0989xjpjr11h5qhz3a0v6465fwm8a"))))
28590 (properties `((upstream-name . "dials")))
28591 (build-system r-build-system)
28592 (propagated-inputs
28593 (list r-dicedesign
28594 r-dplyr
28595 r-glue
28596 r-hardhat
28597 r-lifecycle
28598 r-purrr
28599 r-rlang
28600 r-scales
28601 r-tibble
28602 r-vctrs
28603 r-withr))
28604 (native-inputs (list r-knitr))
28605 (home-page "https://dials.tidymodels.org/")
28606 (synopsis "Tools for creating tuning parameter values")
28607 (description
28608 "Many models contain tuning parameters (i.e. parameters that cannot be
28609 directly estimated from the data). These tools can be used to define objects
28610 for creating, simulating, or validating values for such parameters.")
28611 (license license:gpl2)))
28612
28613 (define-public r-tune
28614 (package
28615 (name "r-tune")
28616 (version "0.2.0")
28617 (source
28618 (origin
28619 (method url-fetch)
28620 (uri (cran-uri "tune" version))
28621 (sha256
28622 (base32
28623 "05gxlsaqv6sjk11r5g4nkdd6hlb3bnfmc29cx4vln1blha37jx4i"))))
28624 (properties `((upstream-name . "tune")))
28625 (build-system r-build-system)
28626 (propagated-inputs
28627 (list r-cli
28628 r-dials
28629 r-dplyr
28630 r-foreach
28631 r-generics
28632 r-ggplot2
28633 r-glue
28634 r-gpfit
28635 r-hardhat
28636 r-lifecycle
28637 r-parsnip
28638 r-purrr
28639 r-recipes
28640 r-rlang
28641 r-rsample
28642 r-tibble
28643 r-tidyr
28644 r-vctrs
28645 r-withr
28646 r-workflows
28647 r-yardstick))
28648 (home-page "https://github.com/tidymodels/tune")
28649 (synopsis "Tidy tuning tools")
28650 (description
28651 "The ability to tune models is important. @code{tune} contains functions
28652 and classes to be used in conjunction with other @code{tidymodels} packages
28653 for finding reasonable values of hyper-parameters in models, pre-processing
28654 methods, and post-processing steps.")
28655 (license license:expat)))
28656
28657 (define-public r-workflowsets
28658 (package
28659 (name "r-workflowsets")
28660 (version "0.2.1")
28661 (source
28662 (origin
28663 (method url-fetch)
28664 (uri (cran-uri "workflowsets" version))
28665 (sha256
28666 (base32
28667 "0q42nhnw0mbivadcfb07v71fp39x8fcnjipvn5l5yhjzc56cfxi8"))))
28668 (properties `((upstream-name . "workflowsets")))
28669 (build-system r-build-system)
28670 (propagated-inputs
28671 (list r-cli
28672 r-dplyr
28673 r-hardhat
28674 r-generics
28675 r-ggplot2
28676 r-lifecycle
28677 r-prettyunits
28678 r-purrr
28679 r-rlang
28680 r-rsample
28681 r-tibble
28682 r-tidyr
28683 r-tune
28684 r-vctrs
28685 r-withr
28686 r-workflows))
28687 (native-inputs
28688 (list r-knitr))
28689 (home-page "https://github.com/tidymodels/workflowsets")
28690 (synopsis "Create a collection of tidymodels workflows")
28691 (description
28692 "A workflow is a combination of a model and preprocessors (e.g, a
28693 formula, recipe, etc.). In order to try different combinations of these, an
28694 object can be created that contains many workflows. There are functions to
28695 create workflows en masse as well as training them and visualizing the
28696 results.")
28697 (license license:expat)))
28698
28699 (define-public r-tidyposterior
28700 (package
28701 (name "r-tidyposterior")
28702 (version "0.1.0")
28703 (source
28704 (origin
28705 (method url-fetch)
28706 (uri (cran-uri "tidyposterior" version))
28707 (sha256
28708 (base32
28709 "1h1664sjrg6akph6nrk8ynn2kjiswv6gshy35gamam1h4axf6wah"))))
28710 (properties `((upstream-name . "tidyposterior")))
28711 (build-system r-build-system)
28712 (propagated-inputs
28713 (list r-dplyr
28714 r-generics
28715 r-ggplot2
28716 r-purrr
28717 r-rlang
28718 r-rsample
28719 r-rstanarm
28720 r-tibble
28721 r-tidyr
28722 r-tune
28723 r-vctrs
28724 r-workflowsets))
28725 (native-inputs
28726 (list r-knitr))
28727 (home-page "https://tidyposterior.tidymodels.org")
28728 (synopsis "Bayesian analysis to compare models using resampling statistics")
28729 (description
28730 "This package can be used to conduct post hoc analyses of resampling
28731 results generated by models. For example, if two models are evaluated with
28732 the @dfn{root mean squared error} (RMSE) using 10-fold cross-validation, there
28733 are 10 paired statistics. These can be used to make comparisons between
28734 models without involving a test set.")
28735 (license license:gpl2)))
28736
28737 (define-public r-tidypredict
28738 (package
28739 (name "r-tidypredict")
28740 (version "0.4.9")
28741 (source
28742 (origin
28743 (method url-fetch)
28744 (uri (cran-uri "tidypredict" version))
28745 (sha256
28746 (base32
28747 "0x0r36zvny4rqgndx7iqh39yhr53gl4d8wd8wpvdcgg35q6z02z2"))))
28748 (properties `((upstream-name . "tidypredict")))
28749 (build-system r-build-system)
28750 (propagated-inputs
28751 (list r-dplyr
28752 r-generics
28753 r-knitr
28754 r-purrr
28755 r-rlang
28756 r-stringr
28757 r-tibble
28758 r-tidyr))
28759 (native-inputs
28760 (list r-knitr))
28761 (home-page "https://tidypredict.tidymodels.org")
28762 (synopsis "Run predictions inside the database")
28763 (description
28764 "This package parses a fitted R model object, and returns a formula in
28765 Tidy Eval code that calculates the predictions. It works with several
28766 database backends because it leverages @code{dplyr} and @code{dbplyr} for the
28767 final SQL translation of the algorithm. It currently supports @code{lm()},
28768 @code{glm()}, @code{randomForest()}, @code{ranger()}, @code{earth()},
28769 @code{xgb.Booster.complete()}, @code{cubist()}, and @code{ctree()} models.")
28770 (license license:gpl3)))
28771
28772 (define-public r-janeaustenr
28773 (package
28774 (name "r-janeaustenr")
28775 (version "0.1.5")
28776 (source
28777 (origin
28778 (method url-fetch)
28779 (uri (cran-uri "janeaustenr" version))
28780 (sha256
28781 (base32
28782 "1wyn4qc28a3sval8shmyi2d7s4nl3jh96s8pzq871brxcmrncbwr"))))
28783 (properties `((upstream-name . "janeaustenr")))
28784 (build-system r-build-system)
28785 (home-page "https://github.com/juliasilge/janeaustenr")
28786 (synopsis "Jane Austen's complete novels")
28787 (description
28788 "This package provides the full texts for Jane Austen's six completed
28789 novels, ready for text analysis. These novels are \"Sense and Sensibility\",
28790 \"Pride and Prejudice\", \"Mansfield Park\", \"Emma\", \"Northanger Abbey\",
28791 and \"Persuasion\".")
28792 (license license:expat)))
28793
28794 (define-public r-tokenizers
28795 (package
28796 (name "r-tokenizers")
28797 (version "0.2.1")
28798 (source
28799 (origin
28800 (method url-fetch)
28801 (uri (cran-uri "tokenizers" version))
28802 (sha256
28803 (base32
28804 "006xf1vdrmp9skhpss9ldhmk4cwqk512cjp1pxm2gxfybpf7qq98"))))
28805 (properties `((upstream-name . "tokenizers")))
28806 (build-system r-build-system)
28807 (propagated-inputs
28808 (list r-rcpp r-snowballc r-stringi))
28809 (native-inputs
28810 (list r-knitr))
28811 (home-page "https://lincolnmullen.com/software/tokenizers/")
28812 (synopsis "Fast, consistent tokenization of natural language text")
28813 (description
28814 "This is a package for converting natural language text into tokens.
28815 It includes tokenizers for shingled n-grams, skip n-grams, words, word stems,
28816 sentences, paragraphs, characters, shingled characters, lines, tweets, Penn
28817 Treebank, regular expressions, as well as functions for counting characters,
28818 words, and sentences, and a function for splitting longer texts into separate
28819 documents, each with the same number of words. The tokenizers have a
28820 consistent interface, and the package is built on the @code{stringi} and
28821 @code{Rcpp} packages for fast yet correct tokenization in UTF-8 encoding.")
28822 (license license:expat)))
28823
28824 (define-public r-hunspell
28825 (package
28826 (name "r-hunspell")
28827 (version "3.0.1")
28828 (source
28829 (origin
28830 (method url-fetch)
28831 (uri (cran-uri "hunspell" version))
28832 (sha256
28833 (base32
28834 "0ql6y05d4xxpm468rslb0wxdp1x9l3flxzmb5w6pjg617f8vpv8z"))))
28835 (properties `((upstream-name . "hunspell")))
28836 (build-system r-build-system)
28837 (propagated-inputs
28838 (list r-digest r-rcpp))
28839 (native-inputs
28840 (list r-knitr))
28841 (home-page "https://github.com/ropensci/hunspell#readme")
28842 (synopsis "High-performance stemmer, tokenizer, and spell checker")
28843 (description
28844 "This package provides a low-level spell checker and morphological
28845 analyzer based on the famous @code{hunspell} library. The package can analyze
28846 or check individual words as well as parse text, LaTeX, HTML or XML documents.
28847 For a more user-friendly interface use the @code{spelling} package which
28848 builds on this package to automate checking of files, documentation and
28849 vignettes in all common formats.")
28850 ;; The hunspell library itself is available under one of GPL2, LGPL2.1, or
28851 ;; MPL; in addition to these licenses the rest of the R wrapper is also
28852 ;; available under the Expat license.
28853 (license (list license:gpl2
28854 license:lgpl2.1
28855 license:mpl1.1
28856 license:expat))))
28857
28858 (define-public r-tidytext
28859 (package
28860 (name "r-tidytext")
28861 (version "0.3.3")
28862 (source
28863 (origin
28864 (method url-fetch)
28865 (uri (cran-uri "tidytext" version))
28866 (sha256
28867 (base32
28868 "0kljaxyhhzbcv9jkjdy0wn6gkamh25y2xfb9k11sqhz3lv72nfvm"))))
28869 (properties `((upstream-name . "tidytext")))
28870 (build-system r-build-system)
28871 (propagated-inputs
28872 (list r-dplyr
28873 r-generics
28874 r-hunspell
28875 r-janeaustenr
28876 r-lifecycle
28877 r-matrix
28878 r-purrr
28879 r-rlang
28880 r-stringr
28881 r-tibble
28882 r-tokenizers
28883 r-vctrs))
28884 (native-inputs
28885 (list r-knitr))
28886 (home-page "https://github.com/juliasilge/tidytext")
28887 (synopsis "Text mining using dplyr, ggplot2, and other Tidy tools")
28888 (description
28889 "This is a package for text mining for word processing and sentiment
28890 analysis using @code{dplyr}, @code{ggplot2}, and other Tidy tools.")
28891 (license license:expat)))
28892
28893 (define-public r-parsnip
28894 (package
28895 (name "r-parsnip")
28896 (version "0.2.1")
28897 (source
28898 (origin
28899 (method url-fetch)
28900 (uri (cran-uri "parsnip" version))
28901 (sha256
28902 (base32
28903 "195i4j38mljv9193yx8lmh65h85yhc52y9vc1mk8zvxi52ks1yln"))))
28904 (properties `((upstream-name . "parsnip")))
28905 (build-system r-build-system)
28906 (propagated-inputs
28907 (list r-cli
28908 r-dplyr
28909 r-generics
28910 r-ggplot2
28911 r-globals
28912 r-glue
28913 r-hardhat
28914 r-lifecycle
28915 r-magrittr
28916 r-prettyunits
28917 r-purrr
28918 r-rlang
28919 r-tibble
28920 r-tidyr
28921 r-vctrs
28922 r-withr))
28923 (native-inputs
28924 (list r-knitr))
28925 (home-page "https://parsnip.tidymodels.org")
28926 (synopsis "Common API to modeling and analysis functions")
28927 (description
28928 "This package provides a common interface to allow users to specify a
28929 model without having to remember the different argument names across different
28930 functions or computational engines (e.g. R, Spark, Stan, etc).")
28931 (license license:gpl2)))
28932
28933 (define-public r-infer
28934 (package
28935 (name "r-infer")
28936 (version "1.0.0")
28937 (source
28938 (origin
28939 (method url-fetch)
28940 (uri (cran-uri "infer" version))
28941 (sha256
28942 (base32
28943 "1qbpcn7jqbvgwnpiyylj021j8m33p58a204yd1pfkpzd3x2lbsm6"))))
28944 (properties `((upstream-name . "infer")))
28945 (build-system r-build-system)
28946 (propagated-inputs
28947 (list r-broom
28948 r-dplyr
28949 r-generics
28950 r-ggplot2
28951 r-glue
28952 r-magrittr
28953 r-patchwork
28954 r-purrr
28955 r-rlang
28956 r-tibble
28957 r-tidyr))
28958 (native-inputs
28959 (list r-knitr))
28960 (home-page "https://github.com/tidymodels/infer")
28961 (synopsis "Tidy statistical inference")
28962 (description
28963 "The objective of this package is to perform inference using an
28964 expressive statistical grammar that coheres with the Tidy design framework.")
28965 (license license:cc0)))
28966
28967 (define-public r-modeldata
28968 (package
28969 (name "r-modeldata")
28970 (version "0.1.1")
28971 (source
28972 (origin
28973 (method url-fetch)
28974 (uri (cran-uri "modeldata" version))
28975 (sha256
28976 (base32
28977 "0jgrwf9k8p9j3ywg3yv2wzwsx3snlwm3dd9vfqwhlr7j63jg3cm4"))))
28978 (properties `((upstream-name . "modeldata")))
28979 (build-system r-build-system)
28980 (home-page "https://modeldata.tidymodels.org")
28981 (synopsis "Data sets useful for modeling packages")
28982 (description
28983 "This package provides data sets used for demonstrating or testing
28984 model-related packages.")
28985 (license license:expat)))
28986
28987 (define-public r-conflicted
28988 (package
28989 (name "r-conflicted")
28990 (version "1.1.0")
28991 (source
28992 (origin
28993 (method url-fetch)
28994 (uri (cran-uri "conflicted" version))
28995 (sha256
28996 (base32
28997 "1qg9ar114r98wm0pnf65mss4v2ksq3924rlpm13mqp4s3p6j9yi4"))))
28998 (properties `((upstream-name . "conflicted")))
28999 (build-system r-build-system)
29000 (propagated-inputs
29001 (list r-memoise r-rlang))
29002 (home-page "https://github.com/r-lib/conflicted")
29003 (synopsis "Alternative conflict resolution strategy")
29004 (description
29005 "R's default conflict management system gives the most recently loaded
29006 package precedence. This can make it hard to detect conflicts, particularly
29007 when they arise because a package update creates ambiguity that did not
29008 previously exist. The @code{conflicted} package takes a different approach,
29009 making every conflict an error and forcing you to choose which function to
29010 use.")
29011 (license license:gpl3)))
29012
29013 (define-public r-tidymodels
29014 (package
29015 (name "r-tidymodels")
29016 (version "0.2.0")
29017 (source
29018 (origin
29019 (method url-fetch)
29020 (uri (cran-uri "tidymodels" version))
29021 (sha256
29022 (base32
29023 "1xkv4s4kn7k9137svb39zrm5302gxpxyp1jv5bb6z0xrvj5wwa4i"))))
29024 (properties `((upstream-name . "tidymodels")))
29025 (build-system r-build-system)
29026 (propagated-inputs
29027 (list r-broom
29028 r-cli
29029 r-conflicted
29030 r-dials
29031 r-dplyr
29032 r-ggplot2
29033 r-hardhat
29034 r-infer
29035 r-modeldata
29036 r-parsnip
29037 r-purrr
29038 r-recipes
29039 r-rlang
29040 r-rsample
29041 r-rstudioapi
29042 r-tibble
29043 r-tidyr
29044 r-tune
29045 r-workflows
29046 r-workflowsets
29047 r-yardstick))
29048 (native-inputs
29049 (list r-knitr))
29050 (home-page "https://github.com/tidymodels/tidymodels")
29051 (synopsis "Tidy collection for modeling and statistical analysis")
29052 (description
29053 "The tidy modeling \"verse\" is a collection of packages for modeling and
29054 statistical analysis that share the underlying design philosophy, grammar, and
29055 data structures of the tidyverse.")
29056 (license license:gpl3)))
29057
29058 (define-public r-lsa
29059 (package
29060 (name "r-lsa")
29061 (version "0.73.3")
29062 (source
29063 (origin
29064 (method url-fetch)
29065 (uri (cran-uri "lsa" version))
29066 (sha256
29067 (base32
29068 "16k1g0kh3yaw7azg76aqf3hn3b6jgqg92xx0syai8l0my9ci2zzh"))))
29069 (properties `((upstream-name . "lsa")))
29070 (build-system r-build-system)
29071 (propagated-inputs
29072 (list r-snowballc))
29073 (home-page "https://cran.r-project.org/package=lsa")
29074 (synopsis "Latent semantic analysis")
29075 (description
29076 "The basic idea of latent semantic analysis (LSA) is, that text do have a
29077 higher order (=latent semantic) structure which, however, is obscured by word
29078 usage (e.g. through the use of synonyms or polysemy). By using conceptual
29079 indices that are derived statistically via a truncated singular value
29080 decomposition (a two-mode factor analysis) over a given document-term matrix,
29081 this variability problem can be overcome.")
29082 (license license:gpl2+)))
29083
29084 (define-public r-mlecens
29085 (package
29086 (name "r-mlecens")
29087 (version "0.1-5")
29088 (source
29089 (origin
29090 (method url-fetch)
29091 (uri (cran-uri "MLEcens" version))
29092 (sha256
29093 (base32
29094 "0cdl0y44clds4sg8hikhk354a5xrfbyfg8lxrbh1bfg410rkj186"))))
29095 (properties `((upstream-name . "MLEcens")))
29096 (build-system r-build-system)
29097 (home-page "http://stat.ethz.ch/~maathuis/")
29098 (synopsis "Computation of the MLE for bivariate (interval) censored data")
29099 (description
29100 "This package contains functions to compute the nonparametric
29101 @dfn{maximum likelihood estimator} (MLE) for the bivariate distribution of
29102 @code{(X,Y)}, when realizations of @code{(X,Y)} cannot be observed directly.
29103 To be more precise, we consider the situation where we observe a set of
29104 rectangles that are known to contain the unobservable realizations of (X,Y).
29105 We compute the MLE based on such a set of rectangles. The methods can also be
29106 used for univariate censored data (see data set @code{cosmesis}), and for
29107 censored data with competing risks (see data set @code{menopause}). The
29108 package also provides functions to visualize the observed data and the MLE.")
29109 (license license:gpl2+)))
29110
29111 (define-public r-metafor
29112 (package
29113 (name "r-metafor")
29114 (version "2.4-0")
29115 (source
29116 (origin
29117 (method url-fetch)
29118 (uri (cran-uri "metafor" version))
29119 (sha256
29120 (base32
29121 "1b599fxk7s0brkchmx698fr5k4g1kzkia2rnlvhg349ffs5nfjmn"))))
29122 (properties `((upstream-name . "metafor")))
29123 (build-system r-build-system)
29124 (propagated-inputs
29125 (list r-matrix r-nlme))
29126 (home-page "https://cran.r-project.org/web/packages/metafor/")
29127 (synopsis "Meta-analysis package for R")
29128 (description
29129 "This package provides a comprehensive collection of functions for
29130 conducting meta-analyses in R. The package includes functions to calculate
29131 various effect sizes or outcome measures, fit fixed-, random-, and
29132 mixed-effects models to such data, carry out moderator and meta-regression
29133 analyses, and create various types of meta-analytical plots (e.g., forest,
29134 funnel, radial, L'Abbe, Baujat, GOSH plots). For meta-analyses of binomial
29135 and person-time data, the package also provides functions that implement
29136 specialized methods, including the Mantel-Haenszel method, Peto's method, and
29137 a variety of suitable generalized linear (mixed-effects) models (i.e.
29138 mixed-effects logistic and Poisson regression models). Finally, the package
29139 provides functionality for fitting meta-analytic multivariate/multilevel
29140 models that account for non-independent sampling errors and/or true
29141 effects (e.g. due to the inclusion of multiple treatment studies, multiple
29142 endpoints, or other forms of clustering). Network meta-analyses and
29143 meta-analyses accounting for known correlation structures (e.g. due to
29144 phylogenetic relatedness) can also be conducted.")
29145 (license license:gpl2+)))
29146
29147 (define-public r-altmeta
29148 (package
29149 (name "r-altmeta")
29150 (version "4.0")
29151 (source
29152 (origin
29153 (method url-fetch)
29154 (uri (cran-uri "altmeta" version))
29155 (sha256
29156 (base32
29157 "17cyiydf4n5j64izj7jph2v43h4x9kfd5b0x6m0ik5ci2aw8xzr5"))))
29158 (properties `((upstream-name . "altmeta")))
29159 (build-system r-build-system)
29160 (propagated-inputs
29161 (list r-coda r-lme4 r-matrix r-metafor r-rjags))
29162 (home-page "https://cran.r-project.org/web/packages/altmeta/")
29163 (synopsis "Alternative meta-analysis methods")
29164 (description
29165 "This package provides alternative statistical methods for meta-analysis,
29166 including:
29167
29168 @enumerate
29169 @item bivariate generalized linear mixed models for synthesizing odds ratios,
29170 relative risks, and risk differences
29171 @item heterogeneity tests and measures that are robust to outliers;
29172 @item measures, tests, and visualization tools for publication bias or
29173 small-study effects;
29174 @item meta-analysis of diagnostic tests for synthesizing sensitivities,
29175 specificities, etc.;
29176 @item meta-analysis methods for synthesizing proportions;
29177 @item models for multivariate meta-analysis.
29178 @end enumerate
29179 ")
29180 (license license:gpl2+)))
29181
29182 (define-public r-perm
29183 (package
29184 (name "r-perm")
29185 (version "1.0-0.2")
29186 (source
29187 (origin
29188 (method url-fetch)
29189 (uri (cran-uri "perm" version))
29190 (sha256
29191 (base32
29192 "182ac1y91yzb34zwdcmx5fdfr5z0cha0gx2bgk36gwxhgfc994kj"))))
29193 (properties `((upstream-name . "perm")))
29194 (build-system r-build-system)
29195 (home-page "https://cran.r-project.org/web/packages/perm/")
29196 (synopsis "Exact or asymptotic permutation tests")
29197 (description
29198 "This package provides several methods for performing permutation tests.
29199 It has three main functions, to perform linear permutation tests. These tests
29200 are tests where the test statistic is the sum of the product of a
29201 covariate (usually group indicator) and the scores.")
29202 ;; Any version of the GPL
29203 (license license:gpl2+)))
29204
29205 (define-public r-qtl
29206 (package
29207 (name "r-qtl")
29208 (version "1.50")
29209 (source
29210 (origin
29211 (method url-fetch)
29212 (uri (cran-uri "qtl" version))
29213 (sha256
29214 (base32
29215 "1mcy9wlp5lj5f3z4mf3n5li7x32vj67rmhjnzsp8fhfw0ipnaf1d"))))
29216 (build-system r-build-system)
29217 (home-page "https://rqtl.org/")
29218 (synopsis "R package for analyzing QTL experiments in genetics")
29219 (description "R/qtl is an extension library for the R statistics system.
29220 It is used to analyze experimental crosses for identifying genes contributing
29221 to variation in quantitative traits (so-called quantitative trait loci, QTLs).
29222
29223 Using a hidden Markov model, R/qtl estimates genetic maps, to identify
29224 genotyping errors, and to perform single-QTL and two-QTL, two-dimensional
29225 genome scans.")
29226 (license license:gpl3)))
29227
29228 (define-public r-qtl2
29229 (package
29230 (name "r-qtl2")
29231 (version "0.28")
29232 (source (origin
29233 (method url-fetch)
29234 (uri (cran-uri "qtl2" version))
29235 (sha256
29236 (base32 "0ppc6dzlq77mppxc6bczai9gi40jrbxd1466y2cn2s8a4ah1jg9y"))))
29237 (build-system r-build-system)
29238 (propagated-inputs
29239 (list r-data-table
29240 r-jsonlite
29241 r-rcpp
29242 r-rcppeigen
29243 r-rsqlite
29244 r-yaml))
29245 (home-page "https://kbroman.org/qtl2/")
29246 (synopsis "Quantitative Trait Locus Mapping in Experimental Crosses")
29247 (description
29248 "This package provides a set of tools to perform @dfn{Quantitative Trait
29249 Locus} (QTL) analysis in experimental crosses. It is a reimplementation of the
29250 @code{R/qtl} package to better handle high-dimensional data and complex cross
29251 designs. Broman et al. (2018) <doi:10.1534/genetics.118.301595>.")
29252 (license license:gpl3)))
29253
29254 (define-public r-seqminer
29255 (package
29256 (name "r-seqminer")
29257 (version "8.4")
29258 (source
29259 (origin
29260 (method url-fetch)
29261 (uri (cran-uri "seqminer" version))
29262 (sha256
29263 (base32
29264 "1mbx1hw9dhgry7hhan43g6aiz2lyd5api7wxq3fwajyzjrc6p1g8"))))
29265 (build-system r-build-system)
29266 (inputs
29267 (list zlib))
29268 (home-page "http://seqminer.genomic.codes")
29269 (synopsis "Read nucleotide sequence data (VCF, BCF, and METAL formats)")
29270 (description
29271 "This package provides tools to integrate nucleotide sequencing
29272 data (variant call format, e.g. VCF or BCF) or meta-analysis results in R.")
29273 ;; Any version of the GPL is acceptable
29274 (license (list license:gpl2+ license:gpl3+))))
29275
29276 (define-public r-maldiquant
29277 (package
29278 (name "r-maldiquant")
29279 (version "1.21")
29280 (source
29281 (origin
29282 (method url-fetch)
29283 (uri (cran-uri "MALDIquant" version))
29284 (sha256
29285 (base32
29286 "1y1g3819ss06dry70kfhg2syddw71682qmzkcyppfsma6hhghw87"))))
29287 (properties `((upstream-name . "MALDIquant")))
29288 (build-system r-build-system)
29289 (native-inputs
29290 (list r-knitr))
29291 (home-page "https://cran.r-project.org/web/packages/MALDIquant")
29292 (synopsis "Quantitative analysis of mass spectrometry data")
29293 (description
29294 "This package provides a complete analysis pipeline for matrix-assisted
29295 laser desorption/ionization-time-of-flight (MALDI-TOF) and other
29296 two-dimensional mass spectrometry data. In addition to commonly used plotting
29297 and processing methods it includes distinctive features, namely baseline
29298 subtraction methods such as morphological filters (TopHat) or the
29299 statistics-sensitive non-linear iterative peak-clipping algorithm (SNIP), peak
29300 alignment using warping functions, handling of replicated measurements as well
29301 as allowing spectra with different resolutions.")
29302 (license license:gpl3+)))
29303
29304 (define-public r-scattermore
29305 (package
29306 (name "r-scattermore")
29307 (version "0.8")
29308 (source
29309 (origin
29310 (method url-fetch)
29311 (uri (cran-uri "scattermore" version))
29312 (sha256
29313 (base32
29314 "1rgqm7r1k7j3h2y4i6d1a2y8fzivfcbmr7dj9d367c0w4vc77pfv"))))
29315 (properties `((upstream-name . "scattermore")))
29316 (build-system r-build-system)
29317 (propagated-inputs
29318 (list r-ggplot2 r-scales))
29319 (home-page "https://github.com/exaexa/scattermore")
29320 (synopsis "Scatterplots with more points")
29321 (description
29322 "This package provides C-based tools for converting large scatterplot
29323 data to rasters. It speeds up plotting of data with millions of points.")
29324 (license license:gpl3+)))
29325
29326 (define-public r-seuratobject
29327 (package
29328 (name "r-seuratobject")
29329 (version "4.1.0")
29330 (source
29331 (origin
29332 (method url-fetch)
29333 (uri (cran-uri "SeuratObject" version))
29334 (sha256
29335 (base32
29336 "018anas8a9m3kh9jn5370v64d93k64z3iic13a75hp6r7g5hd94w"))))
29337 (properties `((upstream-name . "SeuratObject")))
29338 (build-system r-build-system)
29339 (propagated-inputs
29340 (list r-future
29341 r-future-apply
29342 r-matrix
29343 r-progressr
29344 r-rcpp
29345 r-rcppeigen
29346 r-rgeos
29347 r-rlang
29348 r-sp))
29349 (home-page "https://satijalab.org/seurat")
29350 (synopsis "Data structures for single cell data")
29351 (description
29352 "This package defines S4 classes for single-cell genomic data and
29353 associated information, such as dimensionality reduction embeddings,
29354 nearest-neighbor graphs, and spatially-resolved coordinates. It provides data
29355 access methods and R-native hooks to ensure the Seurat object is familiar to
29356 other R users.")
29357 (license license:gpl3)))
29358
29359 (define-public r-seurat
29360 (package
29361 (name "r-seurat")
29362 (version "4.1.1")
29363 (source (origin
29364 (method url-fetch)
29365 (uri (cran-uri "Seurat" version))
29366 (sha256
29367 (base32
29368 "1klamxk6dj0jgpfwll5frcnj9h8lh8c5fxdn9ky7h8xk35lsj6i0"))))
29369 (properties `((upstream-name . "Seurat")))
29370 (build-system r-build-system)
29371 (propagated-inputs
29372 (list r-cluster
29373 r-cowplot
29374 r-fitdistrplus
29375 r-future
29376 r-future-apply
29377 r-ggplot2
29378 r-ggrepel
29379 r-ggridges
29380 r-httr
29381 r-ica
29382 r-igraph
29383 r-irlba
29384 r-jsonlite
29385 r-kernsmooth
29386 r-leiden
29387 r-lmtest
29388 r-mass
29389 r-matrix
29390 r-matrixstats
29391 r-miniui
29392 r-patchwork
29393 r-pbapply
29394 r-plotly
29395 r-png
29396 r-rann
29397 r-rcolorbrewer
29398 r-rcpp
29399 r-rcppannoy
29400 r-rcppeigen
29401 r-rcppprogress
29402 r-reticulate
29403 r-rlang
29404 r-rocr
29405 r-rtsne
29406 r-scales
29407 r-scattermore
29408 r-sctransform
29409 r-seuratobject
29410 r-shiny
29411 r-spatstat-core
29412 r-spatstat-geom
29413 r-tibble
29414 r-uwot))
29415 (home-page "http://www.satijalab.org/seurat")
29416 (synopsis "Seurat is an R toolkit for single cell genomics")
29417 (description
29418 "This package is an R package designed for QC, analysis, and
29419 exploration of single cell RNA-seq data. It easily enables widely-used
29420 analytical techniques, including the identification of highly variable genes,
29421 dimensionality reduction; PCA, ICA, t-SNE, standard unsupervised clustering
29422 algorithms; density clustering, hierarchical clustering, k-means, and the
29423 discovery of differentially expressed genes and markers.")
29424 (license license:gpl3)))
29425
29426 (define-public r-seuratdisk
29427 (let ((commit "163f1aade5bac38ed1e9e9c912283a7e74781610")
29428 (revision "1"))
29429 (package
29430 (name "r-seuratdisk")
29431 (version (git-version "0.0.0.9019" revision commit))
29432 (source
29433 (origin
29434 (method git-fetch)
29435 (uri (git-reference
29436 (url "https://github.com/mojaveazure/seurat-disk")
29437 (commit commit)))
29438 (file-name (git-file-name name version))
29439 (sha256
29440 (base32 "1d1v8qi6kknzy5fj6bl8akwy74h5h143i00lyidsnqjbwp9n4qnw"))))
29441 (properties `((upstream-name . "SeuratDisk")))
29442 (build-system r-build-system)
29443 (propagated-inputs
29444 (list r-cli
29445 r-crayon
29446 r-hdf5r
29447 r-matrix
29448 r-r6
29449 r-rlang
29450 r-seurat
29451 r-seuratobject
29452 r-stringi
29453 r-withr))
29454 (native-inputs
29455 (list r-knitr))
29456 (home-page "https://github.com/mojaveazure/seurat-disk")
29457 (synopsis "Interfaces for HDF5-based single cell file formats")
29458 (description
29459 "The h5Seurat file format is specifically designed for the storage and
29460 analysis of multi-modal single-cell and spatially-resolved expression
29461 experiments, for example, from CITE-seq or 10X Visium technologies. It holds
29462 all molecular information and associated metadata, including (for example)
29463 nearest-neighbor graphs, dimensional reduction information, spatial
29464 coordinates and image data, and cluster labels. This package also supports
29465 rapid and on-disk conversion between h5Seurat and AnnData objects, with the
29466 goal of enhancing interoperability between Seurat and Scanpy.")
29467 (license license:gpl3))))
29468
29469 (define-public r-seuratdata
29470 (let ((commit "b59556b24d7d6728a5744c9c715dd5f7f32ed7a5")
29471 (revision "1"))
29472 (package
29473 (name "r-seuratdata")
29474 (version (git-version "0.2.1" revision commit))
29475 (source
29476 (origin
29477 (method git-fetch)
29478 (uri (git-reference
29479 (url "https://github.com/satijalab/seurat-data")
29480 (commit commit)))
29481 (file-name (git-file-name name version))
29482 (sha256
29483 (base32 "1xfdmdmgn4r0z6w4cxa98ic6xk8i6qz054r215dvqbjs1vydsbf9"))))
29484 (properties `((upstream-name . "SeuratData")))
29485 (build-system r-build-system)
29486 (arguments
29487 `(#:phases
29488 (modify-phases %standard-phases
29489 ;; When there is no HOME directory, this package will fail to load
29490 ;; the included list of packages.
29491 (add-after 'unpack 'set-HOME
29492 (lambda _ (setenv "HOME" "/tmp"))))))
29493 (propagated-inputs
29494 (list r-cli r-crayon r-rappdirs))
29495 (home-page "https://github.com/satijalab/seurat-data")
29496 (synopsis "Install and manage Seurat datasets")
29497 (description
29498 "Single cell RNA sequencing datasets can be large, consisting of
29499 matrices that contain expression data for several thousand features across
29500 several thousand cells. This package is designed to easily install, manage,
29501 and learn about various single-cell datasets, provided Seurat objects and
29502 distributed as independent packages.")
29503 (license license:gpl3))))
29504
29505 (define-public r-phangorn
29506 (package
29507 (name "r-phangorn")
29508 (version "2.8.1")
29509 (source
29510 (origin
29511 (method url-fetch)
29512 (uri (cran-uri "phangorn" version))
29513 (sha256
29514 (base32
29515 "0xfwi7adl1pcfcwk72fj7lkwfm0wiip96ij7m4252xr9mq818ivd"))))
29516 (build-system r-build-system)
29517 (propagated-inputs
29518 (list r-ape
29519 r-fastmatch
29520 r-igraph
29521 r-matrix
29522 r-quadprog
29523 r-rcpp))
29524 (native-inputs
29525 (list r-knitr))
29526 (home-page "https://github.com/KlausVigo/phangorn")
29527 (synopsis "Phylogenetic analysis in R")
29528 (description
29529 "Phangorn is a package for phylogenetic analysis in R. It supports
29530 estimation of phylogenetic trees and networks using Maximum Likelihood,
29531 Maximum Parsimony, distance methods and Hadamard conjugation.")
29532 (license license:gpl2+)))
29533
29534 (define-public r-diversitree
29535 (package
29536 (name "r-diversitree")
29537 (version "0.9-16")
29538 (source
29539 (origin
29540 (method url-fetch)
29541 (uri (cran-uri "diversitree" version))
29542 (sha256
29543 (base32
29544 "0rzrk7xsn4gy271pbcw3azndhx0c06bmsgrg6libjmlfnmq6j8sc"))))
29545 (build-system r-build-system)
29546 (native-inputs
29547 (list gfortran))
29548 (inputs (list fftw gsl))
29549 (propagated-inputs
29550 (list r-ape r-desolve r-rcpp r-subplex))
29551 (home-page "https://www.zoology.ubc.ca/prog/diversitree")
29552 (synopsis "Comparative 'phylogenetic' analyses of diversification")
29553 (description "This package contains a number of comparative \"phylogenetic\"
29554 methods, mostly focusing on analysing diversification and character evolution.
29555 Contains implementations of \"BiSSE\" (Binary State Speciation and Extinction)
29556 and its unresolved tree extensions, \"MuSSE\" (Multiple State Speciation and
29557 Extinction), \"QuaSSE\", \"GeoSSE\", and \"BiSSE-ness\" Other included methods
29558 include Markov models of discrete and continuous trait evolution and constant
29559 rate speciation and extinction.")
29560 (license license:gpl2+)))
29561
29562 (define-public r-calculus
29563 (package
29564 (name "r-calculus")
29565 (version "0.3.3")
29566 (source
29567 (origin
29568 (method url-fetch)
29569 (uri (cran-uri "calculus" version))
29570 (sha256
29571 (base32
29572 "1fhvr0l2mqik3d95v0vanafxmiab147g5a87q956g2i945wc5f22"))))
29573 (properties `((upstream-name . "calculus")))
29574 (build-system r-build-system)
29575 (propagated-inputs
29576 (list r-rcpp))
29577 (native-inputs
29578 (list r-knitr))
29579 (home-page "https://github.com/eguidotti/calculus")
29580 (synopsis "High dimensional numerical and symbolic calculus")
29581 (description
29582 "Efficient C++ optimized functions for numerical and symbolic calculus.
29583 It includes basic symbolic arithmetic, tensor calculus, Einstein summing
29584 convention, fast computation of the Levi-Civita symbol and generalized
29585 Kronecker delta, Taylor series expansion, multivariate Hermite polynomials,
29586 accurate high-order derivatives, differential operators (Gradient, Jacobian,
29587 Hessian, Divergence, Curl, Laplacian) and numerical integration in arbitrary
29588 orthogonal coordinate systems: cartesian, polar, spherical, cylindrical,
29589 parabolic or user defined by custom scale factors.")
29590 (license license:gpl3)))
29591
29592 (define-public r-decon
29593 (package
29594 (name "r-decon")
29595 (version "1.3-4")
29596 (source
29597 (origin
29598 (method url-fetch)
29599 (uri (cran-uri "decon" version))
29600 (sha256
29601 (base32
29602 "036cv56wf42q2p3d5h15hbrp5rc29xxy20qwv4k1qzhkq6hmw0qs"))))
29603 (properties `((upstream-name . "decon")))
29604 (build-system r-build-system)
29605 (native-inputs
29606 (list gfortran))
29607 (home-page
29608 "https://cran.r-project.org/web/packages/decon/")
29609 (synopsis "Deconvolution Estimation in Measurement Error Models")
29610 (description
29611 "This package contains a collection of functions to deal with
29612 nonparametric measurement error problems using deconvolution
29613 kernel methods. We focus two measurement error models in the
29614 package: (1) an additive measurement error model, where the
29615 goal is to estimate the density or distribution function from
29616 contaminated data; (2) nonparametric regression model with
29617 errors-in-variables. The R functions allow the measurement errors
29618 to be either homoscedastic or heteroscedastic. To make the
29619 deconvolution estimators computationally more efficient in R,
29620 we adapt the \"Fast Fourier Transform\" (FFT) algorithm for
29621 density estimation with error-free data to the deconvolution
29622 kernel estimation. Several methods for the selection of the
29623 data-driven smoothing parameter are also provided in the package.
29624 See details in: Wang, X.F. and Wang, B. (2011). Deconvolution
29625 estimation in measurement error models: The R package decon.
29626 Journal of Statistical Software, 39(10), 1-24.")
29627 (license license:gpl3+)))
29628
29629 (define-public r-densestbayes
29630 (package
29631 (name "r-densestbayes")
29632 (version "1.0-2.1")
29633 (source
29634 (origin
29635 (method url-fetch)
29636 (uri (cran-uri "densEstBayes" version))
29637 (sha256
29638 (base32 "1pzmgn65lv91zg1588qhwczy9f2zgciknlc4l072mvh2i7hncw2b"))))
29639 (properties `((upstream-name . "densEstBayes")))
29640 (build-system r-build-system)
29641 (propagated-inputs
29642 (list r-bh
29643 r-mass
29644 r-nlme
29645 r-rcpp
29646 r-rcpparmadillo
29647 r-rcppeigen
29648 r-rcppparallel
29649 r-rstan
29650 r-rstantools
29651 r-stanheaders))
29652 (home-page "https://cran.r-project.org/package=densEstBayes")
29653 (synopsis "Density estimation via Bayesian inference engines")
29654 (description
29655 "Bayesian density estimates for univariate continuous random samples are
29656 provided using the Bayesian inference engine paradigm. The engine options
29657 are: Hamiltonian Monte Carlo, the no U-turn sampler, semiparametric mean field
29658 variational Bayes and slice sampling. The methodology is described in Wand
29659 and Yu (2020), arXiv:2009.06182.")
29660 (license license:gpl2+)))
29661
29662 (define-public r-locpol
29663 (package
29664 (name "r-locpol")
29665 (version "0.7-0")
29666 (source
29667 (origin
29668 (method url-fetch)
29669 (uri (cran-uri "locpol" version))
29670 (sha256
29671 (base32
29672 "1p915n0l09kbwkly627074jslxl01yssp1rf0c7sygvsw6sgy5lm"))))
29673 (properties `((upstream-name . "locpol")))
29674 (build-system r-build-system)
29675 (home-page
29676 "https://cran.r-project.org/web/packages/locpol/")
29677 (synopsis "Kernel Local Polynomial Regression")
29678 (description
29679 "Computes local polynomial estimators for the regression and
29680 also density. It comprises several different utilities to handle
29681 kernel estimators.")
29682 (license license:gpl2+)))
29683
29684 (define-public r-lpme
29685 (package
29686 (name "r-lpme")
29687 (version "1.1.3")
29688 (source
29689 (origin
29690 (method url-fetch)
29691 (uri (cran-uri "lpme" version))
29692 (sha256
29693 (base32
29694 "1ch11cwjci98m7952p9wdsh9fj5y1mjya6ayq0q4wmbm824qfpzb"))))
29695 (properties `((upstream-name . "lpme")))
29696 (build-system r-build-system)
29697 (propagated-inputs
29698 (list r-decon r-flexmix r-locpol r-rcpp r-rcpparmadillo))
29699 (home-page
29700 "https://cran.r-project.org/web/packages/lpme/")
29701 (synopsis "Nonparametric Estimation of Measurement Error Models")
29702 (description
29703 "Provide nonparametric methods for mean regression model,
29704 modal regression and conditional density estimation in the
29705 presence/absence of measurement error. Bandwidth selection is
29706 also provided for each method.")
29707 (license license:gpl2+)))
29708
29709 (define-public r-aws-signature
29710 (package
29711 (name "r-aws-signature")
29712 (version "0.6.0")
29713 (source
29714 (origin
29715 (method url-fetch)
29716 (uri (cran-uri "aws.signature" version))
29717 (sha256
29718 (base32
29719 "15llpcnrdq4y6jsn7079yjmgbr5d1wgy2ymsm3jj3gkrd5l4zzpp"))))
29720 (properties `((upstream-name . "aws.signature")))
29721 (build-system r-build-system)
29722 (propagated-inputs
29723 (list r-base64enc r-digest))
29724 (home-page "https://github.com/cloudyr/aws.signature")
29725 (synopsis "Amazon Web Services Request Signatures")
29726 (description
29727 "This package generates version 2 and 4 request signatures for Amazon Web
29728 Services (AWS) and provides a mechanism for retrieving credentials from
29729 environment variables, AWS credentials files, and EC2 instance metadata. For
29730 use on EC2 instances, the package 'aws.ec2metadata' is suggested.")
29731 (license license:gpl2+)))
29732
29733 (define-public r-aws-s3
29734 (package
29735 (name "r-aws-s3")
29736 (version "0.3.21")
29737 (source
29738 (origin
29739 (method url-fetch)
29740 (uri (cran-uri "aws.s3" version))
29741 (sha256
29742 (base32
29743 "132cczq0ml7lpp2yl6l4p99dn1zihrncnpa6wyad4m9mnr50a8dx"))))
29744 (properties `((upstream-name . "aws.s3")))
29745 (build-system r-build-system)
29746 (propagated-inputs
29747 (list r-aws-signature
29748 r-base64enc
29749 r-curl
29750 r-digest
29751 r-httr
29752 r-xml2))
29753 (home-page "https://github.com/cloudyr/aws.s3")
29754 (synopsis "AWS S3 Client Package")
29755 (description
29756 "This package provides a simple client package for the Amazon Web
29757 Services (AWS) Simple Storage Service (S3) REST API.")
29758 (license license:gpl2+)))
29759
29760 (define-public r-lgr
29761 (package
29762 (name "r-lgr")
29763 (version "0.4.3")
29764 (source (origin
29765 (method url-fetch)
29766 (uri (cran-uri "lgr" version))
29767 (sha256
29768 (base32
29769 "18s92qyakhvp336kk2777ydypwfrfwfz6a1gqkq812zy3kcb4mcc"))))
29770 (build-system r-build-system)
29771 (propagated-inputs
29772 (list r-r6))
29773 (native-inputs
29774 (list r-knitr))
29775 (home-page "https://s-fleck.github.io/lgr/")
29776 (synopsis "Fully featured logging framework")
29777 (description "This package offers a flexible, feature-rich yet
29778 light-weight logging framework based on @code{R6} classes. It supports
29779 hierarchical loggers, custom log levels, arbitrary data fields in log events,
29780 logging to plaintext, JSON, (rotating) files, memory buffers, and databases, as
29781 well as email and push notifications.")
29782 (license license:expat)))
29783
29784 (define-public r-mhg
29785 (package
29786 (name "r-mhg")
29787 (version "1.1")
29788 (source
29789 (origin
29790 (method url-fetch)
29791 (uri (cran-uri "mHG" version))
29792 (sha256
29793 (base32
29794 "1rz5ncrvvv9h9grls15apa63v2nh9j87fmp4mwjjil37jx6a5zki"))))
29795 (properties `((upstream-name . "mHG")))
29796 (build-system r-build-system)
29797 (home-page "https://cran.r-project.org/package=mHG")
29798 (synopsis "Minimum-hypergeometric test")
29799 (description
29800 "This package runs a minimum-hypergeometric (mHG) test as described in
29801 \"Discovering Motifs in Ranked Lists of DNA Sequences\" by Eran Eden.")
29802 (license license:gpl2)))
29803
29804 (define-public r-mlr3measures
29805 (package
29806 (name "r-mlr3measures")
29807 (version "0.4.1")
29808 (source (origin
29809 (method url-fetch)
29810 (uri (cran-uri "mlr3measures" version))
29811 (sha256
29812 (base32
29813 "1kbw3xd7c9x65v9zzs8i5skmrvl0mf2wsbyssmiif0lvrbzfhcmb"))))
29814 (build-system r-build-system)
29815 (propagated-inputs
29816 (list r-checkmate r-prroc))
29817 (home-page "https://mlr3measures.mlr-org.com/")
29818 (synopsis "Performance measures for mlr3")
29819 (description "This package implements multiple performance measures for
29820 supervised learning. It includes over 40 measures for regression and
29821 classification. Additionally, meta information about the performance measures
29822 can be queried, e.g. what the best and worst possible performances scores
29823 are.")
29824 (license license:lgpl3)))
29825
29826 (define-public r-mlr3misc
29827 (package
29828 (name "r-mlr3misc")
29829 (version "0.10.0")
29830 (source (origin
29831 (method url-fetch)
29832 (uri (cran-uri "mlr3misc" version))
29833 (sha256
29834 (base32
29835 "1wnzyij1x67smkb3gjb9gpp7iy5andfl0s1c78xx4wylhycc6m11"))))
29836 (build-system r-build-system)
29837 (propagated-inputs
29838 (list r-backports r-checkmate r-data-table r-digest r-r6))
29839 (home-page "https://mlr3misc.mlr-org.com/")
29840 (synopsis "Helper functions for mlr3")
29841 (description "@code{mlr3misc} provides frequently used helper functions
29842 and assertions used in @code{mlr3} and its companion packages. It comes with
29843 helper functions for functional programming, for printing, to work with
29844 @code{data.table}, as well as some generally useful @code{R6} classes. This
29845 package also supersedes the package @code{BBmisc}.")
29846 (license license:lgpl3)))
29847
29848 (define-public r-mlr3pipelines
29849 (package
29850 (name "r-mlr3pipelines")
29851 (version "0.4.1")
29852 (source (origin
29853 (method url-fetch)
29854 (uri (cran-uri "mlr3pipelines" version))
29855 (sha256
29856 (base32
29857 "1zz55i8c08znxpcs6gp5inaw96c6la9wnsla0972ankvj1hsrcr2"))))
29858 (build-system r-build-system)
29859 (propagated-inputs
29860 (list r-backports
29861 r-checkmate
29862 r-data-table
29863 r-digest
29864 r-lgr
29865 r-mlr3
29866 r-mlr3misc
29867 r-paradox
29868 r-r6
29869 r-withr))
29870 (home-page "https://mlr3pipelines.mlr-org.com/")
29871 (synopsis "Preprocessing Operators and Pipelines for @code{mlr3}")
29872 (description "@code{mlr3pipelines} enriches @code{mlr3} with a diverse
29873 set of pipelining operators (PipeOps) that can be composed into graphs.
29874 Operations exist for data preprocessing, model fitting, and ensemble learning.
29875 Graphs can themselves be treated as @code{mlr3} Learners and can therefore be
29876 resampled, benchmarked, and tuned.")
29877 (license license:lgpl3)))
29878
29879 (define-public r-mlr3ordinal
29880 (let ((commit "9febac983b11b7b1f477e5cf0212e5999cd2ed44")
29881 (revision "0"))
29882 (package
29883 (name "r-mlr3ordinal")
29884 (version (git-version "0.1.0-9000" revision commit))
29885 (source (origin
29886 (method git-fetch)
29887 (uri (git-reference
29888 (url "https://github.com/mlr-org/mlr3ordinal")
29889 (commit commit)))
29890 (file-name (git-file-name name version))
29891 (sha256
29892 (base32
29893 "1icfhz1pjm0mlsn2y60gsrbk31b2p7xmpx3xsg7639rcgdb5f9gl"))))
29894 (build-system r-build-system)
29895 (propagated-inputs
29896 (list r-checkmate
29897 r-data-table
29898 r-mlr3
29899 r-mlr3misc
29900 r-mlr3pipelines
29901 r-nloptr
29902 r-ordinal
29903 r-paradox
29904 r-r6))
29905 (home-page "https://mlr3ordinal.mlr-org.com/")
29906 (synopsis "Ordinal Regression for mlr3")
29907 (description "This package extends @code{mlr3} with support for
29908 performing ordinal regression.")
29909 (license license:expat))))
29910
29911 (define-public r-paradox
29912 (package
29913 (name "r-paradox")
29914 (version "0.9.0")
29915 (source (origin
29916 (method url-fetch)
29917 (uri (cran-uri "paradox" version))
29918 (sha256
29919 (base32
29920 "0fzq59903fklgj3kblnpzasy13a82s72c1qjsy7d1m0fyj28ahdw"))))
29921 (build-system r-build-system)
29922 (propagated-inputs
29923 (list r-backports r-checkmate r-data-table r-mlr3misc r-r6))
29924 (home-page "https://paradox.mlr-org.com/")
29925 (synopsis "Define and work with parameter spaces for complex algorithms")
29926 (description "With this package it is possible to define parameter spaces,
29927 constraints and dependencies for arbitrary algorithms, and to program on such
29928 spaces. It also includes statistical designs and random samplers. Objects are
29929 implemented as @code{R6} classes.")
29930 (license license:lgpl3)))
29931
29932 (define-public r-mlr3
29933 (package
29934 (name "r-mlr3")
29935 (version "0.13.3")
29936 (source (origin
29937 (method url-fetch)
29938 (uri (cran-uri "mlr3" version))
29939 (sha256
29940 (base32
29941 "010kl51zsgpc0qv63g1fg9kiw9m0wzqskcr14f1j8b9zi1lwi0bf"))))
29942 (build-system r-build-system)
29943 (propagated-inputs
29944 (list r-r6
29945 r-backports
29946 r-checkmate
29947 r-data-table
29948 r-evaluate
29949 r-future
29950 r-future-apply
29951 r-lgr
29952 r-mlbench
29953 r-mlr3measures
29954 r-mlr3misc
29955 r-palmerpenguins
29956 r-paradox
29957 r-parallelly
29958 r-uuid))
29959 (home-page "https://mlr3.mlr-org.com/")
29960 (synopsis "Machine Learning in R - Next Generation")
29961 (description "@code{mlr3} enables efficient, object-oriented programming
29962 on the building blocks of machine learning. It provides @code{R6} objects for
29963 tasks, learners, resamplings, and measures. The package is geared towards
29964 scalability and larger datasets by supporting parallelization and out-of-memory
29965 data-backends like databases. While @code{mlr3} focuses on the core
29966 computational operations, add-on packages provide additional functionality.")
29967 (license license:lgpl3)))
29968
29969 (define-public r-mlr3learners
29970 (package
29971 (name "r-mlr3learners")
29972 (version "0.5.3")
29973 (source (origin
29974 (method url-fetch)
29975 (uri (cran-uri "mlr3learners" version))
29976 (sha256
29977 (base32
29978 "088i2piv7sgxsvc7jyr6mq53vqf8yjdlrysgqphsryq6k50i00zd"))))
29979 (build-system r-build-system)
29980 (propagated-inputs
29981 (list r-checkmate
29982 r-data-table
29983 r-mlr3
29984 r-mlr3misc
29985 r-paradox
29986 r-r6))
29987 (home-page "https://mlr3learners.mlr-org.com/")
29988 (synopsis "Recommended Learners for @code{mlr3}")
29989 (description "@code{mlr3learners} extends @code{mlr3} and @code{mlr3proba}
29990 with interfaces to essential machine learning packages on CRAN. This includes,
29991 but is not limited to: (penalized) linear and logistic regression, linear and
29992 quadratic discriminant analysis, k-nearest neighbors, naive Bayes, support
29993 vector machines, and gradient boosting.")
29994 (license license:lgpl3)))
29995
29996 (define-public r-bbotk
29997 (package
29998 (name "r-bbotk")
29999 (version "0.5.3")
30000 (source
30001 (origin
30002 (method url-fetch)
30003 (uri (cran-uri "bbotk" version))
30004 (sha256
30005 (base32
30006 "13qj8qysqismv9k9rfw770r7w8jdaw82n71k7sp3wsrlhxjxw734"))))
30007 (properties `((upstream-name . "bbotk")))
30008 (build-system r-build-system)
30009 (propagated-inputs
30010 (list r-checkmate
30011 r-data-table
30012 r-lgr
30013 r-mlr3misc
30014 r-paradox
30015 r-r6))
30016 (native-inputs
30017 (list r-knitr))
30018 (home-page "https://bbotk.mlr-org.com")
30019 (synopsis "Black-Box Optimization Toolkit")
30020 (description "This package provides a common framework for optimization of
30021 black-box functions for other packages, e.g. @code{mlr3}. It offers various
30022 optimization methods e.g. grid search, random search and generalized simulated
30023 annealing.")
30024 (license license:lgpl3)))
30025
30026 (define-public r-mlr3tuning
30027 (package
30028 (name "r-mlr3tuning")
30029 (version "0.13.1")
30030 (source (origin
30031 (method url-fetch)
30032 (uri (cran-uri "mlr3tuning" version))
30033 (sha256
30034 (base32
30035 "0jfslx6pwk408ydn69grrvsp22jd7gsjmwvss0a1j0zav3q1pvks"))))
30036 (build-system r-build-system)
30037 (propagated-inputs
30038 (list r-bbotk
30039 r-checkmate
30040 r-data-table
30041 r-lgr
30042 r-mlr3
30043 r-mlr3misc
30044 r-paradox
30045 r-r6))
30046 (home-page "https://mlr3tuning.mlr-org.com/")
30047 (synopsis "Tuning for @code{mlr3}")
30048 (description "@code{mlr3tuning} implements methods for hyperparameter
30049 tuning, e.g. Grid Search, Random Search, or Simulated Annealing. Various
30050 termination criteria can be set and combined. The class @code{AutoTuner} provides a
30051 convenient way to perform nested resampling in combination with @code{mlr3}.")
30052 (license license:lgpl3)))
30053
30054 (define-public r-fontliberation
30055 (package
30056 (name "r-fontliberation")
30057 (version "0.1.0")
30058 (source
30059 (origin
30060 (method url-fetch)
30061 (uri (cran-uri "fontLiberation" version))
30062 (sha256
30063 (base32
30064 "1w1rl0g4ayyp8lwppmz9yzj9cizg7i50g07216jkm1q5w0is9pmc"))))
30065 (properties
30066 `((upstream-name . "fontLiberation")))
30067 (build-system r-build-system)
30068 (home-page "https://cran.r-project.org/package=fontLiberation")
30069 (synopsis "Liberation fonts")
30070 (description
30071 "This package provides a placeholder for the Liberation fontset intended
30072 for the fontquiver package. This fontset covers the 12 combinations of
30073 families (sans, serif, mono) and faces (plain, bold, italic, bold italic)
30074 supported in R graphics devices.")
30075 (license license:silofl1.1)))
30076
30077 (define-public r-fontbitstreamvera
30078 (package
30079 (name "r-fontbitstreamvera")
30080 (version "0.1.1")
30081 (source
30082 (origin
30083 (method url-fetch)
30084 (uri (cran-uri "fontBitstreamVera" version))
30085 (sha256
30086 (base32
30087 "0nipdlmhjv1wr3aidcl97nk6mppdkd65krgwqnhdsnv0jpfv761j"))))
30088 (properties
30089 `((upstream-name . "fontBitstreamVera")))
30090 (build-system r-build-system)
30091 (home-page "https://cran.r-project.org/package=fontBitstreamVera")
30092 (synopsis "Fonts for fontquiver")
30093 (description
30094 "This package is a placeholder for the Bitstream Vera font. It is
30095 intended for the fontquiver package.")
30096 (license
30097 (license:fsdg-compatible
30098 "https://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts"
30099 "The Font Software may be sold as part of a larger software package but
30100 no copy of one or more of the Font Software typefaces may be sold by
30101 itself."))))
30102
30103 (define-public r-fontquiver
30104 (package
30105 (name "r-fontquiver")
30106 (version "0.2.1")
30107 (source
30108 (origin
30109 (method url-fetch)
30110 (uri (cran-uri "fontquiver" version))
30111 (sha256
30112 (base32
30113 "0qv3i9hch7cygl9983s3w68wfh5qvym2jkm52pp06p6mq8a1i1wm"))))
30114 (properties `((upstream-name . "fontquiver")))
30115 (build-system r-build-system)
30116 (propagated-inputs
30117 (list r-fontbitstreamvera r-fontliberation))
30118 (home-page "https://cran.r-project.org/package=fontquiver")
30119 (synopsis "Set of installed fonts")
30120 (description
30121 "This package provides a set of fonts. This is useful when you want to
30122 avoid system fonts to make sure your outputs are reproducible.")
30123 (license license:gpl3)))
30124
30125 (define-public r-freetypeharfbuzz
30126 (package
30127 (name "r-freetypeharfbuzz")
30128 (version "0.2.6")
30129 (source
30130 (origin
30131 (method url-fetch)
30132 (uri (cran-uri "freetypeharfbuzz" version))
30133 (sha256
30134 (base32
30135 "0r3icgnq3jk4fm6z92cmhzdmflbk5df8zsmjg0dzpc4y48xafnk7"))))
30136 (properties
30137 `((upstream-name . "freetypeharfbuzz")))
30138 (build-system r-build-system)
30139 (arguments
30140 `(#:phases
30141 (modify-phases %standard-phases
30142 (add-after 'unpack 'prepare-static-libraries
30143 (lambda* (#:key inputs #:allow-other-keys)
30144 (mkdir-p "src/target/include")
30145 (let ((freetype (assoc-ref inputs "static-freetype"))
30146 (harfbuzz (assoc-ref inputs "static-harfbuzz")))
30147 (substitute* "src/Makevars.in"
30148 (("include @MK_FILE@") "") ; do not build static libs
30149 (("^HB_STATIC_LIB =.*")
30150 (string-append "HB_STATIC_LIB = " harfbuzz "/lib/libharfbuzz.a\n"))
30151 (("^FT_STATIC_LIB =.*")
30152 (string-append "FT_STATIC_LIB = " freetype "/lib/libfreetype.a\n")))
30153 (copy-recursively (string-append freetype "/include")
30154 "src/target/include")
30155 (copy-recursively (string-append harfbuzz "/include")
30156 "src/target/include")))))))
30157 (propagated-inputs
30158 (list r-fontquiver))
30159 ;; This may defeat the purpose of this package as our versions of freetype
30160 ;; and harfbuzz obviously differ from the tarballs offered by this
30161 ;; project. On the other hand, Guix arguably does a better job at
30162 ;; "ensur[ing] deterministic computation".
30163 (native-inputs
30164 `(("static-freetype"
30165 ,(package
30166 (inherit (static-package freetype))
30167 (arguments
30168 `(#:configure-flags
30169 (list "--enable-static=yes"
30170 "--with-pic=yes"
30171 "--without-zlib"
30172 "--without-bzip2"
30173 "--without-png"
30174 "--without-harfbuzz")))))
30175 ("static-harfbuzz"
30176 ,(package
30177 (inherit (static-package harfbuzz))
30178 (arguments
30179 `(#:tests? #false ; fail because shared library is disabled
30180 #:configure-flags
30181 (list "--enable-static=yes"
30182 "--enable-shared=no"
30183 "--with-pic=yes"
30184 "--with-freetype=yes"
30185 "--without-icu"
30186 "--without-cairo"
30187 "--without-fontconfig"
30188 "--without-glib")))))))
30189 (inputs
30190 (list zlib))
30191 (home-page "https://cran.r-project.org/package=freetypeharfbuzz")
30192 (synopsis "Deterministic computation of text box metrics")
30193 (description
30194 "Unlike other tools that dynamically link to the Cairo stack,
30195 freetypeharfbuzz is statically linked to specific versions of the FreeType and
30196 harfbuzz libraries. This ensures deterministic computation of text box
30197 extents for situations where reproducible results are crucial (for instance
30198 unit tests of graphics).")
30199 (license license:gpl3)))
30200
30201 (define-public r-vdiffr
30202 (package
30203 (name "r-vdiffr")
30204 (version "1.0.4")
30205 (source
30206 (origin
30207 (method url-fetch)
30208 (uri (cran-uri "vdiffr" version))
30209 (sha256
30210 (base32
30211 "1z8nn8yh6jfzb9r7ylmigwh1p30lrclqm6khmp323qqphzmzfdwy"))))
30212 (properties `((upstream-name . "vdiffr")))
30213 (build-system r-build-system)
30214 (inputs
30215 (list libpng zlib))
30216 (propagated-inputs
30217 (list r-cpp11
30218 r-diffobj
30219 r-glue
30220 r-htmltools
30221 r-lifecycle
30222 r-rlang
30223 r-testthat
30224 r-xml2))
30225 (home-page "https://github.com/r-lib/vdiffr")
30226 (synopsis "Visual regression testing and graphical diffing")
30227 (description
30228 "This package is an extension to the testthat package that makes it easy
30229 to add graphical unit tests. It provides a Shiny application to manage the
30230 test cases.")
30231 (license license:gpl3)))
30232
30233 (define-public r-highlight
30234 (package
30235 (name "r-highlight")
30236 (version "0.5.0")
30237 (source
30238 (origin
30239 (method url-fetch)
30240 (uri (cran-uri "highlight" version))
30241 (sha256
30242 (base32
30243 "1shar4y07wyixg0ichdrn2xhgwkl3mv2pxkalqzisc69w605b3hf"))))
30244 (properties `((upstream-name . "highlight")))
30245 (build-system r-build-system)
30246 (home-page "https://github.com/hadley/highlight")
30247 (synopsis "Syntax highlighter for R code")
30248 (description
30249 "This package provides a syntax highlighter for R code based on the
30250 results of the R parser. It supports rendering in HTML and LaTeX markup. It
30251 includes a custom Sweave driver performing syntax highlighting of R code
30252 chunks.")
30253 (license license:gpl3+)))
30254
30255 (define-public r-clustree
30256 (package
30257 (name "r-clustree")
30258 (version "0.4.4")
30259 (source
30260 (origin
30261 (method url-fetch)
30262 (uri (cran-uri "clustree" version))
30263 (sha256
30264 (base32
30265 "0vwmicajl7c0rmjdmf4f857fii0xrxz25vjkn888svlsikw00qbs"))))
30266 (properties `((upstream-name . "clustree")))
30267 (build-system r-build-system)
30268 (propagated-inputs
30269 (list r-checkmate
30270 r-dplyr
30271 r-ggplot2
30272 r-ggraph
30273 r-ggrepel
30274 r-igraph
30275 r-rlang
30276 r-tidygraph
30277 r-viridis))
30278 (native-inputs
30279 (list r-knitr))
30280 (home-page "https://github.com/lazappi/clustree")
30281 (synopsis "Visualize clusterings at different resolutions")
30282 (description
30283 "Deciding what resolution to use can be a difficult question when
30284 approaching a clustering analysis. One way to approach this problem is to
30285 look at how samples move as the number of clusters increases. This package
30286 allows you to produce clustering trees, a visualization for interrogating
30287 clusterings as resolution increases.")
30288 (license license:gpl3)))
30289
30290 (define-public r-textshaping
30291 (package
30292 (name "r-textshaping")
30293 (version "0.3.6")
30294 (source
30295 (origin
30296 (method url-fetch)
30297 (uri (cran-uri "textshaping" version))
30298 (sha256
30299 (base32
30300 "1niaj1dh09rqrg9hrh98ddnc0f2nkyq9iizv24lcwm9gjs3w1ql0"))))
30301 (properties `((upstream-name . "textshaping")))
30302 (build-system r-build-system)
30303 (inputs
30304 (list freetype fribidi harfbuzz zlib))
30305 (propagated-inputs
30306 (list r-cpp11 r-systemfonts))
30307 (native-inputs
30308 (list pkg-config r-knitr))
30309 (home-page "https://github.com/r-lib/textshaping")
30310 (synopsis "Bindings to the HarfBuzz and Fribidi libraries for text shaping")
30311 (description
30312 "This package provides access to the text shaping functionality in the
30313 HarfBuzz library and the bidirectional algorithm in the Fribidi library. This
30314 is a low-level utility package mainly for graphic devices that expands upon
30315 the font tool-set provided by the @code{systemfonts} package.")
30316 (license license:expat)))
30317
30318 (define-public r-ragg
30319 (package
30320 (name "r-ragg")
30321 (version "1.2.2")
30322 (source
30323 (origin
30324 (method url-fetch)
30325 (uri (cran-uri "ragg" version))
30326 (sha256
30327 (base32
30328 "1q43pwmljsqgrikkh2g1n7bpz9c8py5dnj44cfg3y2br7b4m2q9v"))))
30329 (properties `((upstream-name . "ragg")))
30330 (build-system r-build-system)
30331 (inputs
30332 (list freetype libjpeg-turbo libpng libtiff zlib))
30333 (propagated-inputs
30334 (list r-systemfonts r-textshaping))
30335 (native-inputs
30336 (list pkg-config))
30337 (home-page "https://ragg.r-lib.org")
30338 (synopsis "Graphic devices based on AGG")
30339 (description
30340 "Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D
30341 drawing library. The ragg package provides a set of graphic devices based on
30342 AGG to use as alternative to the raster devices provided through the
30343 @code{grDevices} package.")
30344 (license license:expat)))
30345
30346 (define-public r-downlit
30347 (package
30348 (name "r-downlit")
30349 (version "0.4.0")
30350 (source
30351 (origin
30352 (method url-fetch)
30353 (uri (cran-uri "downlit" version))
30354 (sha256
30355 (base32
30356 "10zvrqdpwavdy97h3q26bqh3k63z61fmc04w9vwsnvmnv8hnh3vl"))))
30357 (properties `((upstream-name . "downlit")))
30358 (build-system r-build-system)
30359 (propagated-inputs
30360 (list r-brio
30361 r-desc
30362 r-digest
30363 r-evaluate
30364 r-fansi
30365 r-memoise
30366 r-rlang
30367 r-vctrs
30368 r-yaml))
30369 (home-page "https://downlit.r-lib.org/")
30370 (synopsis "Syntax highlighting and automatic linking")
30371 (description
30372 "This package provides syntax highlighting of R code, specifically
30373 designed for the needs of RMarkdown packages like @code{pkgdown},
30374 @code{hugodown}, and @code{bookdown}. It includes linking of function calls
30375 to their documentation on the web, and automatic translation of ANSI escapes
30376 in output to the equivalent HTML.")
30377 (license license:expat)))
30378
30379 (define-public r-pkgdown
30380 (package
30381 (name "r-pkgdown")
30382 (version "2.0.3")
30383 (source
30384 (origin
30385 (method url-fetch)
30386 (uri (cran-uri "pkgdown" version))
30387 (sha256
30388 (base32
30389 "0wqga9bcl7wmvkwpkkmf5hx1cl7rjq5ddvqmxhl4p1dczys3adnr"))))
30390 (properties `((upstream-name . "pkgdown")))
30391 (build-system r-build-system)
30392 (inputs (list pandoc))
30393 (propagated-inputs
30394 (list r-bslib
30395 r-callr
30396 r-crayon
30397 r-desc
30398 r-digest
30399 r-downlit
30400 r-fs
30401 r-httr
30402 r-jsonlite
30403 r-magrittr
30404 r-memoise
30405 r-purrr
30406 r-ragg
30407 r-rlang
30408 r-rmarkdown
30409 r-tibble
30410 r-whisker
30411 r-withr
30412 r-xml2
30413 r-yaml))
30414 (native-inputs
30415 (list r-knitr))
30416 (home-page "https://pkgdown.r-lib.org")
30417 (synopsis "Make static HTML documentation for an R package")
30418 (description
30419 "The goal of this package is to generate an attractive and useful website
30420 from a source package. @code{pkgdown} converts your documentation, vignettes,
30421 README file, and more to HTML making it easy to share information about your
30422 package online.")
30423 (license license:expat)))
30424
30425 (define-public r-prereg
30426 (package
30427 (name "r-prereg")
30428 (version "0.6.0")
30429 (source
30430 (origin
30431 (method url-fetch)
30432 (uri (cran-uri "prereg" version))
30433 (sha256
30434 (base32
30435 "039nrl5cirsx1ysh214dr6xnn1h6h3f90im6k9dgmzfksxdqigpw"))))
30436 (properties `((upstream-name . "prereg")))
30437 (build-system r-build-system)
30438 (propagated-inputs
30439 (list r-rmarkdown))
30440 (home-page "https://github.com/crsh/prereg")
30441 (synopsis
30442 "R Markdown Templates to preregister Scientific Studies")
30443 (description
30444 "This package provides a collection of templates to author
30445 preregistration documents for scientific studies in PDF format.")
30446 (license license:gpl3)))
30447
30448 (define-public r-ez
30449 (package
30450 (name "r-ez")
30451 (version "4.4-0")
30452 (source
30453 (origin
30454 (method url-fetch)
30455 (uri (cran-uri "ez" version))
30456 (sha256
30457 (base32
30458 "0a58s94x576dfz7wcbivrr2hmdh5x1vy16zwkqp9fmdzqx38pagq"))))
30459 (properties `((upstream-name . "ez")))
30460 (build-system r-build-system)
30461 (propagated-inputs
30462 (list r-car
30463 r-ggplot2
30464 r-lme4
30465 r-mass
30466 r-matrix
30467 r-mgcv
30468 r-plyr
30469 r-reshape2
30470 r-scales
30471 r-stringr))
30472 (home-page "https://github.com/mike-lawrence/ez")
30473 (synopsis "Easy Analysis and Visualization of Factorial Experiments")
30474 (description
30475 "Facilitates easy analysis of factorial experiments, including purely
30476 within-Ss designs (a.k.a. \"repeated measures\"), purely between-Ss designs,
30477 and mixed within-and-between-Ss designs. The functions in this package aim to
30478 provide simple, intuitive and consistent specification of data analysis and
30479 visualization. Visualization functions also include design visualization for
30480 pre-analysis data auditing, and correlation matrix visualization. Finally,
30481 this package includes functions for non-parametric analysis, including
30482 permutation tests and bootstrap resampling. The bootstrap function obtains
30483 predictions either by cell means or by more advanced/powerful mixed effects
30484 models, yielding predictions and confidence intervals that may be easily
30485 visualized at any level of the experiment's design.")
30486 (license license:gpl2+)))
30487
30488 (define-public r-qdapregex
30489 (package
30490 (name "r-qdapregex")
30491 (version "0.7.5")
30492 (source
30493 (origin
30494 (method url-fetch)
30495 (uri (cran-uri "qdapRegex" version))
30496 (sha256
30497 (base32
30498 "1hdilycwrvi0q6cx7k8vg87bamm2xsafjkya5x4smxysm5k1r4qb"))))
30499 (properties `((upstream-name . "qdapRegex")))
30500 (build-system r-build-system)
30501 (propagated-inputs (list r-stringi))
30502 (home-page
30503 "https://trinker.github.com/qdapRegex/")
30504 (synopsis
30505 "Regular Expression Removal, Extraction, and Replacement Tools")
30506 (description
30507 "This package provides a collection of regular expression tools
30508 associated with the @code{qdap} package that may be useful outside of the
30509 context of discourse analysis. Tools include removal/extraction/replacement of
30510 abbreviations, dates, dollar amounts, email addresses, hash tags, numbers,
30511 percentages, citations, person tags, phone numbers, times, and zip codes.")
30512 (license license:gpl2)))
30513
30514 (define-public r-mgsub
30515 (package
30516 (name "r-mgsub")
30517 (version "1.7.3")
30518 (source
30519 (origin
30520 (method url-fetch)
30521 (uri (cran-uri "mgsub" version))
30522 (sha256
30523 (base32
30524 "1mci6x65h94qiz9cwikx2inbrwkykv43zbs8abfbx416zrh2bbn9"))))
30525 (properties `((upstream-name . "mgsub")))
30526 (build-system r-build-system)
30527 (native-inputs (list r-knitr))
30528 (home-page
30529 "https://cran.r-project.org/package=mgsub")
30530 (synopsis
30531 "Safe, Multiple, Simultaneous String Substitution")
30532 (description
30533 "Designed to enable simultaneous substitution in strings in a safe
30534 fashion. Safe means it does not rely on placeholders (which can cause errors
30535 in same length matches).")
30536 (license license:expat)))
30537
30538 (define-public r-textshape
30539 (package
30540 (name "r-textshape")
30541 (version "1.7.3")
30542 (source
30543 (origin
30544 (method url-fetch)
30545 (uri (cran-uri "textshape" version))
30546 (sha256
30547 (base32
30548 "0k9injxykgj2qprc7dygd7gafvcbh3r9x84qzaa1al21pk0dz7ds"))))
30549 (properties `((upstream-name . "textshape")))
30550 (build-system r-build-system)
30551 (propagated-inputs
30552 (list r-data-table r-slam r-stringi))
30553 (home-page "https://github.com/trinker/textshape")
30554 (synopsis "Tools for Reshaping Text")
30555 (description
30556 "Tools that can be used to reshape and restructure text data.")
30557 (license license:gpl2)))
30558
30559 (define-public r-syuzhet
30560 (package
30561 (name "r-syuzhet")
30562 (version "1.0.6")
30563 (source
30564 (origin
30565 (method url-fetch)
30566 (uri (cran-uri "syuzhet" version))
30567 (sha256
30568 (base32
30569 "16iccqdbw02iw82nah6kwz3gwfghi864j2y698n4b9dyc386ijzv"))))
30570 (properties `((upstream-name . "syuzhet")))
30571 (build-system r-build-system)
30572 (propagated-inputs
30573 (list r-dplyr
30574 r-dtt
30575 r-nlp
30576 r-rlang
30577 r-textshape
30578 r-tidyr
30579 r-zoo))
30580 (native-inputs (list r-knitr))
30581 (home-page "https://github.com/mjockers/syuzhet")
30582 (synopsis
30583 "Extracts Sentiment and Sentiment-Derived Plot Arcs from Text")
30584 (description
30585 "Extracts sentiment and sentiment-derived plot arcs from text using a
30586 variety of sentiment dictionaries conveniently packaged for consumption by R
30587 users. Implemented dictionaries include @dfn{syuzhet} (default) developed in the
30588 Nebraska Literary Lab, @dfn{afinn} developed by Finn Arup Nielsen, @dfn{bing}
30589 developed by Minqing Hu and Bing Liu, and @dfn{nrc} developed by Mohammad, Saif
30590 M. and Turney, Peter D. Applicable references are available in
30591 @file{README.md} and in the documentation for the @code{get_sentiment}
30592 function. The package also provides a hack for implementing Stanford's coreNLP
30593 sentiment parser. The package provides several methods for plot arc
30594 normalization.")
30595 (license license:gpl3)))
30596
30597 (define-public r-lexicon
30598 (package
30599 (name "r-lexicon")
30600 (version "1.2.1")
30601 (source
30602 (origin
30603 (method url-fetch)
30604 (uri (cran-uri "lexicon" version))
30605 (sha256
30606 (base32
30607 "0x7rscsh6par2lj11sby7bmz41cxn63iiw51lgh29z09cg8j606c"))))
30608 (properties `((upstream-name . "lexicon")))
30609 (build-system r-build-system)
30610 (propagated-inputs
30611 (list r-data-table r-syuzhet))
30612 (home-page "https://github.com/trinker/lexicon")
30613 (synopsis "Lexicons for Text Analysis")
30614 (description
30615 "This package provides a collection of lexical hash tables, dictionaries,
30616 and word lists.")
30617 (license license:gpl3)))
30618
30619 (define-public r-english
30620 (package
30621 (name "r-english")
30622 (version "1.2-6")
30623 (source
30624 (origin
30625 (method url-fetch)
30626 (uri (cran-uri "english" version))
30627 (sha256
30628 (base32
30629 "1g3nmy5p8wj3ix1vp1qmkmy3dyqisrw0md8cjrx4klqkp0wqlms9"))))
30630 (properties `((upstream-name . "english")))
30631 (build-system r-build-system)
30632 (native-inputs (list r-knitr))
30633 (home-page
30634 "https://cran.r-project.org/package=english")
30635 (synopsis "Translate Integers into English")
30636 (description
30637 "Allow numbers to be presented in an English language version, one, two,
30638 three, ... Ordinals are also available, first, second, third, ... and
30639 indefinite article choice, \"a\" or \"an\".")
30640 (license license:gpl2)))
30641
30642 (define-public r-textclean
30643 (package
30644 (name "r-textclean")
30645 (version "0.9.3")
30646 (source
30647 (origin
30648 (method url-fetch)
30649 (uri (cran-uri "textclean" version))
30650 (sha256
30651 (base32
30652 "0kgjh6c4f14qkjc4fds7q7rpf4nkma3p0igm54fplmm3p853nvrz"))))
30653 (properties `((upstream-name . "textclean")))
30654 (build-system r-build-system)
30655 (propagated-inputs
30656 (list r-data-table
30657 r-english
30658 r-glue
30659 r-lexicon
30660 r-mgsub
30661 r-qdapregex
30662 r-stringi
30663 r-textshape))
30664 (home-page
30665 "https://github.com/trinker/textclean")
30666 (synopsis "Text Cleaning Tools")
30667 (description
30668 "Tools to clean and process text. Tools are geared at checking for
30669 substrings that are not optimal for analysis and replacing or removing them
30670 (normalizing) with more analysis friendly substrings (see Sproat, Black, Chen,
30671 Kumar, Ostendorf, & Richards (2001) @url{doi:10.1006/csla.2001.0169}) or
30672 extracting them into new variables. For example, emoticons are often used in
30673 text but not always easily handled by analysis algorithms. The
30674 @code{replace_emoticon()} function replaces emoticons with word equivalents.")
30675 (license license:gpl2)))
30676
30677 (define-public r-striprtf
30678 (package
30679 (name "r-striprtf")
30680 (version "0.5.3")
30681 (source
30682 (origin
30683 (method url-fetch)
30684 (uri (cran-uri "striprtf" version))
30685 (sha256
30686 (base32
30687 "0dqcsh3fb8j0mmmxvxjl77rryhmrjm7a3scqvk2xkgxk4xq6q316"))))
30688 (properties `((upstream-name . "striprtf")))
30689 (build-system r-build-system)
30690 (propagated-inputs
30691 (list r-magrittr r-rcpp r-stringr))
30692 (home-page "https://github.com/kota7/striprtf")
30693 (synopsis "Extract Text from RTF File")
30694 (description
30695 "Extracts plain text from @dfn{Rich Text Format} (RTF) file.")
30696 (license license:expat)))
30697
30698 (define-public r-ndjson
30699 (package
30700 (name "r-ndjson")
30701 (version "0.8.0")
30702 (source
30703 (origin
30704 (method url-fetch)
30705 (uri (cran-uri "ndjson" version))
30706 (sha256
30707 (base32
30708 "0lvzbgfi1sg4kya1mvv67z14qk3vz9q57x22qh57xq8ampdkg812"))
30709 (modules '((guix build utils)))
30710 (snippet
30711 '(begin
30712 ;; unvendor gzstream
30713 (for-each delete-file '("src/gzstream.cpp" "src/gzstream.h"))
30714 #t))))
30715 (properties `((upstream-name . "ndjson")))
30716 (build-system r-build-system)
30717 (arguments
30718 '(#:phases
30719 (modify-phases %standard-phases
30720 (add-after 'unpack 'use-system-gzstream
30721 (lambda* (#:key inputs #:allow-other-keys)
30722 (substitute* "src/Makevars"
30723 (("PKG_LIBS = " all)
30724 (string-append all "-lgzstream ")))
30725 #t)))))
30726 (inputs (list zlib gzstream))
30727 (propagated-inputs
30728 (list r-data-table r-rcpp r-tibble))
30729 (home-page "https://gitlab.com/hrbrmstr/ndjson")
30730 (synopsis
30731 "Wicked-Fast @dfn{Streaming JSON} (ndjson) Reader")
30732 (description
30733 "@dfn{Streaming JSON} (ndjson) has one JSON record per-line and many
30734 modern ndjson files contain large numbers of records. These constructs may not
30735 be columnar in nature, but it is often useful to read in these files and
30736 \"flatten\" the structure out to enable working with the data in an R
30737 @code{data.frame}-like context. Functions are provided that make it possible
30738 to read in plain ndjson files or compressed (@code{gz}) ndjson files and either
30739 validate the format of the records or create \"flat\" @code{data.table}
30740 structures from them.")
30741 (license license:expat)))
30742
30743 (define-public r-streamr
30744 (package
30745 (name "r-streamr")
30746 (version "0.4.5")
30747 (source
30748 (origin
30749 (method url-fetch)
30750 (uri (cran-uri "streamR" version))
30751 (sha256
30752 (base32
30753 "1clx3b0j2515r1nmnl6ki7qw5n54q3x2jvqv3zrc00kq71mlj7ix"))))
30754 (properties `((upstream-name . "streamR")))
30755 (build-system r-build-system)
30756 (propagated-inputs
30757 (list r-ndjson r-rcurl r-rjson))
30758 (home-page
30759 "https://cran.r-project.org/package=streamR")
30760 (synopsis
30761 "Access to Twitter Streaming API via R")
30762 (description
30763 "This package provides functions to access Twitter's filter, sample, and
30764 user streams, and to parse the output into data frames.")
30765 (license license:gpl2)))
30766
30767 (define-public r-readods
30768 (package
30769 (name "r-readods")
30770 (version "1.7.0")
30771 (source
30772 (origin
30773 (method url-fetch)
30774 (uri (cran-uri "readODS" version))
30775 (sha256
30776 (base32
30777 "1hi217ab7hp15jsbzi5ak57cqf8jn2rv78bnn74q72gn9mrfra7n"))))
30778 (properties `((upstream-name . "readODS")))
30779 (build-system r-build-system)
30780 (propagated-inputs
30781 (list r-cellranger r-readr r-stringi r-xml2))
30782 (native-inputs (list r-knitr))
30783 (home-page
30784 "https://cran.r-project.org/package=readODS")
30785 (synopsis "Read and Write ODS Files")
30786 (description
30787 "Import @dfn{OpenDocument Spreadsheet} (ODS) into R as a data frame.
30788 Also support writing data frame into ODS file.")
30789 (license license:gpl3)))
30790
30791 (define-public r-qpdf
30792 (package
30793 (name "r-qpdf")
30794 (version "1.1")
30795 (source
30796 (origin
30797 (method url-fetch)
30798 (uri (cran-uri "qpdf" version))
30799 (sha256
30800 (base32
30801 "03lnfncw8qd1fwfyqh1mjvnsjr3b63wxbah0wp5g7z7gba90dwbi"))
30802 (modules '((guix build utils)))
30803 (snippet
30804 '(begin
30805 ;; unvendor libqpdf
30806 (delete-file-recursively "src/libqpdf")
30807 (delete-file-recursively "src/include/qpdf")
30808 #t))))
30809 (properties `((upstream-name . "qpdf")))
30810 (build-system r-build-system)
30811 (arguments
30812 '(#:phases
30813 (modify-phases %standard-phases
30814 (add-after 'unpack 'configure
30815 (lambda _
30816 (setenv "EXTERNAL_QPDF" "1")
30817 #t)))))
30818 (inputs
30819 (list zlib qpdf))
30820 (propagated-inputs
30821 (list r-askpass r-curl r-rcpp))
30822 (native-inputs (list pkg-config))
30823 (home-page "https://github.com/ropensci/qpdf")
30824 (synopsis
30825 "Split, Combine and Compress PDF Files")
30826 (description
30827 "Content-preserving transformations transformations of PDF files such as
30828 split, combine, and compress. This package interfaces directly to the
30829 @code{qpdf} C++ API and does not require any command line utilities. Note that
30830 @code{qpdf} does not read actual content from PDF files: to extract text and
30831 data you need the @code{pdftools} package.")
30832 (license license:asl2.0)))
30833
30834 (define-public r-pdftools
30835 (package
30836 (name "r-pdftools")
30837 (version "3.2.1")
30838 (source
30839 (origin
30840 (method url-fetch)
30841 (uri (cran-uri "pdftools" version))
30842 (sha256
30843 (base32
30844 "1b9ppdndvlf8nl0i3xy1rx4f9j0j8ic6q9n0c4zn3rv6jdy8zqfi"))))
30845 (properties `((upstream-name . "pdftools")))
30846 (build-system r-build-system)
30847 (inputs (list zlib poppler))
30848 (propagated-inputs (list r-qpdf r-rcpp))
30849 (native-inputs (list pkg-config))
30850 (home-page "https://docs.ropensci.org/pdftools/")
30851 (synopsis "Text Extraction, Rendering and Converting of PDF Documents")
30852 (description
30853 "This package provides utilities based on @code{libpoppler} for
30854 extracting text, fonts, attachments and metadata from a PDF file. It also
30855 supports high quality rendering of PDF documents into PNG, JPEG, TIFF format,
30856 or into raw bitmap vectors for further processing in R.")
30857 (license license:expat)))
30858
30859 (define-public r-antiword
30860 (package
30861 (name "r-antiword")
30862 (version "1.3.1")
30863 (source
30864 (origin
30865 (method url-fetch)
30866 (uri (cran-uri "antiword" version))
30867 (sha256
30868 (base32
30869 "123v8zlczwh6fr1v3x7dl3885xlmddq1bqlcxih8zh07w0hlk1k2"))
30870 (modules '((guix build utils)))
30871 (snippet
30872 '(begin
30873 ;; unvendor libantiword
30874 (delete-file-recursively "src")
30875 #t))))
30876 (properties `((upstream-name . "antiword")))
30877 (build-system r-build-system)
30878 (arguments
30879 '(#:phases
30880 (modify-phases %standard-phases
30881 (add-after 'unpack 'use-system-antiword
30882 (lambda* (#:key inputs #:allow-other-keys)
30883 (substitute* "R/antiword.R"
30884 (("system.file\\(\"bin\", package = \"antiword\"\\)")
30885 (string-append "\"" (assoc-ref inputs "antiword") "/bin\"")))
30886 #t)))))
30887 (inputs (list antiword))
30888 (propagated-inputs (list r-sys))
30889 (home-page
30890 "https://github.com/ropensci/antiword#readme")
30891 (synopsis
30892 "Extract Text from Microsoft Word Documents")
30893 (description
30894 "Wraps the @code{AntiWord} utility to extract text from Microsoft Word
30895 documents. The utility only supports the old @code{doc} format, not the new
30896 xml based @code{docx} format. Use the @code{xml2} package to read the
30897 latter.")
30898 (license license:gpl2)))
30899
30900 (define-public r-readtext
30901 (package
30902 (name "r-readtext")
30903 (version "0.81")
30904 (source
30905 (origin
30906 (method url-fetch)
30907 (uri (cran-uri "readtext" version))
30908 (sha256
30909 (base32
30910 "0k782h5hns5v5h8a6qyfqck2hc15nq0awg8bsp196q4zviv5jw3c"))))
30911 (properties `((upstream-name . "readtext")))
30912 (build-system r-build-system)
30913 (propagated-inputs
30914 (list r-antiword
30915 r-data-table
30916 r-digest
30917 r-httr
30918 r-jsonlite
30919 r-pdftools
30920 r-readods
30921 r-readxl
30922 r-streamr
30923 r-stringi
30924 r-striprtf
30925 r-tibble
30926 r-xml2))
30927 (native-inputs (list r-knitr))
30928 (home-page
30929 "https://github.com/quanteda/readtext")
30930 (synopsis
30931 "Import and Handling for Plain and Formatted Text Files")
30932 (description
30933 "This package provides functions for importing and handling text files
30934 and formatted text files with additional meta-data, such including @code{.csv},
30935 @code{.tab}, @code{.json}, @code{.xml}, @code{.html}, @code{.pdf}, @code{.doc},
30936 @code{.docx}, @code{.rtf}, @code{.xls}, @code{.xlsx}, and others.")
30937 (license license:gpl3)))
30938
30939 (define-public r-packcircles
30940 (package
30941 (name "r-packcircles")
30942 (version "0.3.4")
30943 (source
30944 (origin
30945 (method url-fetch)
30946 (uri (cran-uri "packcircles" version))
30947 (sha256
30948 (base32
30949 "05pv5c4k4njkr0xw6i6ksiy34hcyx2lbiqpv5gxw81yrkm0rxfyk"))))
30950 (properties `((upstream-name . "packcircles")))
30951 (build-system r-build-system)
30952 (propagated-inputs (list r-rcpp))
30953 (native-inputs (list r-knitr))
30954 (home-page
30955 "https://github.com/mbedward/packcircles")
30956 (synopsis "Circle Packing")
30957 (description
30958 "Algorithms to find arrangements of non-overlapping circles.")
30959 (license license:expat)))
30960
30961 ;; Cannot unbundle liblwgeom, because PostGIS does not support building it on
30962 ;; its own.
30963 (define-public r-lwgeom
30964 (package
30965 (name "r-lwgeom")
30966 (version "0.2-8")
30967 (source
30968 (origin
30969 (method url-fetch)
30970 (uri (cran-uri "lwgeom" version))
30971 (sha256
30972 (base32
30973 "0d4b1djwrzla91mmyya2m1250mb44fzmq3d36w5mk81d4bg952pl"))))
30974 (properties `((upstream-name . "lwgeom")))
30975 (build-system r-build-system)
30976 (inputs
30977 (list geos proj sqlite zlib))
30978 (propagated-inputs
30979 (list r-rcpp r-sf r-units))
30980 (native-inputs (list pkg-config))
30981 (home-page "https://github.com/r-spatial/lwgeom/")
30982 (synopsis "Bindings to Selected 'liblwgeom' Functions for Simple Features")
30983 (description
30984 "Access to selected functions found in
30985 @url{https://github.com/postgis/postgis/tree/master/liblwgeom,liblwgeom}, the
30986 light-weight geometry library used by @url{http://postgis.net/,PostGIS}.")
30987 (license license:gpl2)))
30988
30989 (define-public r-stars
30990 (package
30991 (name "r-stars")
30992 (version "0.5-5")
30993 (source
30994 (origin
30995 (method url-fetch)
30996 (uri (cran-uri "stars" version))
30997 (sha256
30998 (base32
30999 "0hcbzr8c7wk30qjwrvx6bflzwkjpms79pavaxawnq1h8kry5fngk"))))
31000 (properties `((upstream-name . "stars")))
31001 (build-system r-build-system)
31002 (propagated-inputs
31003 (list r-abind
31004 r-classint
31005 r-lwgeom
31006 r-rlang
31007 r-sf
31008 r-units))
31009 (native-inputs (list r-knitr))
31010 (home-page "https://r-spatial.github.io/stars/")
31011 (synopsis
31012 "Spatiotemporal Arrays, Raster and Vector Data Cubes")
31013 (description
31014 "Reading, manipulating, writing and plotting spatiotemporal arrays
31015 (raster and vector data cubes) in @code{R}, using @code{GDAL} bindings provided
31016 by @code{sf}, and @code{NetCDF} bindings by @code{ncmeta} and @code{RNetCDF}.")
31017 (license license:asl2.0)))
31018
31019 (define-public r-tmaptools
31020 (package
31021 (name "r-tmaptools")
31022 (version "3.1-1")
31023 (source
31024 (origin
31025 (method url-fetch)
31026 (uri (cran-uri "tmaptools" version))
31027 (sha256
31028 (base32
31029 "0bal3czrdr93qig8s5cf5szld5vjbbks67rismfhlkmlgw6wp2gx"))))
31030 (properties `((upstream-name . "tmaptools")))
31031 (build-system r-build-system)
31032 (propagated-inputs
31033 (list r-dichromat
31034 r-lwgeom
31035 r-magrittr
31036 r-rcolorbrewer
31037 r-sf
31038 r-stars
31039 r-units
31040 r-viridislite
31041 r-xml))
31042 (home-page
31043 "https://github.com/mtennekes/tmaptools")
31044 (synopsis "Thematic Map Tools")
31045 (description
31046 "Set of tools for reading and processing spatial data. The aim is to
31047 supply the workflow to create thematic maps. This package also facilitates
31048 @code{tmap}, the package for visualizing thematic maps.")
31049 (license license:gpl3)))
31050
31051 (define-public r-rworldmap
31052 (package
31053 (name "r-rworldmap")
31054 (version "1.3-6")
31055 (source
31056 (origin
31057 (method url-fetch)
31058 (uri (cran-uri "rworldmap" version))
31059 (sha256
31060 (base32
31061 "1q1h0n9qr0m5pdx10swrh9ddsvdj8kv5nqngrf3lnx9rg9iwivjk"))))
31062 (properties `((upstream-name . "rworldmap")))
31063 (build-system r-build-system)
31064 (propagated-inputs
31065 (list r-fields r-maptools r-sp))
31066 (home-page
31067 "https://github.com/AndySouth/rworldmap/")
31068 (synopsis "Mapping Global Data")
31069 (description
31070 "Enables mapping of country level and gridded user datasets.")
31071 (license license:gpl2+)))
31072
31073 (define-public r-rtweet
31074 (package
31075 (name "r-rtweet")
31076 (version "0.7.0")
31077 (source
31078 (origin
31079 (method url-fetch)
31080 (uri (cran-uri "rtweet" version))
31081 (sha256
31082 (base32
31083 "05pbvxm2vmf6935b9s6663k3aifnkr3m52wh2jvnplmrwyrfpn9n"))))
31084 (properties `((upstream-name . "rtweet")))
31085 (build-system r-build-system)
31086 (propagated-inputs
31087 (list r-httpuv
31088 r-httr
31089 r-jsonlite
31090 r-magrittr
31091 r-progress
31092 r-rcpp
31093 r-tibble))
31094 (native-inputs (list r-knitr))
31095 (home-page
31096 "https://docs.ropensci.org/rtweet/")
31097 (synopsis "Collecting Twitter Data")
31098 (description
31099 "An implementation of calls designed to collect and organize Twitter data
31100 via @url{https://developer.twitter.com/en/docs,Twitter's REST and stream
31101 Application Program Interfaces (API)}.")
31102 (license license:expat)))
31103
31104 (define-public r-intervals
31105 (package
31106 (name "r-intervals")
31107 (version "0.15.2")
31108 (source
31109 (origin
31110 (method url-fetch)
31111 (uri (cran-uri "intervals" version))
31112 (sha256
31113 (base32
31114 "0mvwfwc03ifb30a3dzbmkv9adwqb8ajxhcw24d8xip8px063plhb"))))
31115 (properties `((upstream-name . "intervals")))
31116 (build-system r-build-system)
31117 (home-page "https://github.com/edzer/intervals")
31118 (synopsis
31119 "Tools for Working with Points and Intervals")
31120 (description
31121 "Tools for working with and comparing sets of points and intervals.")
31122 (license license:artistic2.0)))
31123
31124 (define-public r-eyelinker
31125 (package
31126 (name "r-eyelinker")
31127 (version "0.2.1")
31128 (source
31129 (origin
31130 (method url-fetch)
31131 (uri (cran-uri "eyelinker" version))
31132 (sha256
31133 (base32
31134 "0wijd45p6j2qal6wnj7zywks8p9v3m9cmyp7axmk44mrjdjx2i71"))))
31135 (properties `((upstream-name . "eyelinker")))
31136 (build-system r-build-system)
31137 (propagated-inputs
31138 (list r-intervals r-readr r-stringi r-stringr r-tibble))
31139 (native-inputs (list r-knitr))
31140 (home-page
31141 "https://github.com/a-hurst/eyelinker")
31142 (synopsis
31143 "Import ASC Files from EyeLink Eye Trackers")
31144 (description
31145 "Imports plain-text ASC data files from EyeLink eye trackers into
31146 (relatively) tidy data frames for analysis and visualization.")
31147 (license license:gpl3)))
31148
31149 (define-public r-btm
31150 (package
31151 (name "r-btm")
31152 (version "0.3.6")
31153 (source
31154 (origin
31155 (method url-fetch)
31156 (uri (cran-uri "BTM" version))
31157 (sha256
31158 (base32
31159 "0ab0wr8nbwn1w1j9hpwfz52lm1sw0qk93713y9k0hpm3pw9dq4jr"))))
31160 (properties `((upstream-name . "BTM")))
31161 (build-system r-build-system)
31162 (propagated-inputs (list r-rcpp))
31163 (home-page "https://github.com/bnosac/BTM")
31164 (synopsis "Biterm Topic Models for Short Text")
31165 (description
31166 "Biterm Topic Models find topics in collections of short texts. It is a
31167 word co-occurrence based topic model that learns topics by modeling word-word
31168 co-occurrences patterns which are called biterms. This in contrast to
31169 traditional topic models like Latent Dirichlet Allocation and Probabilistic
31170 Latent Semantic Analysis which are word-document co-occurrence topic models. A
31171 biterm consists of two words co-occurring in the same short text window. This
31172 context window can for example be a twitter message, a short answer on a
31173 survey, a sentence of a text or a document identifier. The techniques are
31174 explained in detail in the paper 'A Biterm Topic Model For Short Text' by
31175 Xiaohui Yan, Jiafeng Guo, Yanyan Lan, Xueqi Cheng (2013)
31176 @url{https://github.com/xiaohuiyan/xiaohuiyan.github.io/blob/master/paper/\
31177 BTM-WWW13.pdf}.")
31178 (license license:asl2.0)))
31179
31180 (define-public r-delaporte
31181 (package
31182 (name "r-delaporte")
31183 (version "8.0.2")
31184 (source
31185 (origin
31186 (method url-fetch)
31187 (uri (cran-uri "Delaporte" version))
31188 (sha256
31189 (base32
31190 "10xsmms2jfw7x4hmgpd35dv4n4azpjzmfid6585kg6qfh2zg23g5"))))
31191 (properties `((upstream-name . "Delaporte")))
31192 (build-system r-build-system)
31193 (native-inputs (list gfortran))
31194 (home-page "https://github.com/aadler/Delaporte")
31195 (synopsis "Statistical functions for the Delaporte distribution")
31196 (description
31197 "This package provides probability mass, distribution, quantile,
31198 random-variate generation, and method-of-moments parameter-estimation
31199 functions for the Delaporte distribution with parameterization based on
31200 Vose (2008). The Delaporte is a discrete probability distribution which can
31201 be considered the convolution of a negative binomial distribution with a
31202 Poisson distribution. Alternatively, it can be considered a counting
31203 distribution with both Poisson and negative binomial components. It has been
31204 studied in actuarial science as a frequency distribution which has more
31205 variability than the Poisson, but less than the negative binomial.")
31206 (license license:bsd-2)))
31207
31208 (define-public r-rjsonio
31209 (package
31210 (name "r-rjsonio")
31211 (version "1.3-1.6")
31212 (source
31213 (origin
31214 (method url-fetch)
31215 (uri (cran-uri "RJSONIO" version))
31216 (sha256
31217 (base32
31218 "17x0ayk7daprbc8w2hvb2jl9mfnw4dic9yc3sr5adcjqfzmcklc2"))))
31219 (properties `((upstream-name . "RJSONIO")))
31220 (build-system r-build-system)
31221 (home-page "https://cran.r-project.org/package=RJSONIO")
31222 (synopsis "Serialize R objects to JSON")
31223 (description
31224 "This is a package that allows conversion to and from data in JavaScript
31225 Object Notation (JSON) format. This allows R objects to be inserted into
31226 Javascript/ECMAScript/ActionScript code and allows R programmers to read and
31227 convert JSON content to R objects. This is an alternative to the @code{rjson}
31228 package.")
31229 (license license:bsd-3)))
31230
31231 (define-public r-revgeo
31232 (package
31233 (name "r-revgeo")
31234 (version "0.15")
31235 (source
31236 (origin
31237 (method url-fetch)
31238 (uri (cran-uri "revgeo" version))
31239 (sha256
31240 (base32
31241 "1ns7d1817475lriss6wwgvdm6lj760p40yxqaifla13c2xb73a55"))))
31242 (properties `((upstream-name . "revgeo")))
31243 (build-system r-build-system)
31244 (propagated-inputs
31245 (list r-rcurl r-rjsonio))
31246 (home-page "https://cran.r-project.org/package=revgeo")
31247 (synopsis "Reverse geocoding")
31248 (description
31249 "The @code{revgeo} procedure allows you to use the Photon geocoder for
31250 OpenStreetMap, Google Maps, and Bing to reverse geocode coordinate pairs with
31251 minimal hassle.")
31252 (license license:gpl3+)))
31253
31254 (define-public r-qpcr
31255 (package
31256 (name "r-qpcr")
31257 (version "1.4-1")
31258 (source
31259 (origin
31260 (method url-fetch)
31261 (uri (cran-uri "qpcR" version))
31262 (sha256
31263 (base32
31264 "1r01q7jv3w59yx1gc0qw91rq7rvdhqsi8y57sqqkmwyqfw2x2vsv"))))
31265 (properties `((upstream-name . "qpcR")))
31266 (build-system r-build-system)
31267 (propagated-inputs
31268 (list r-mass r-matrix r-minpack-lm r-rgl r-robustbase))
31269 (home-page "https://cran.r-project.org/package=qpcR")
31270 (synopsis "Modelling and analysis of real-time PCR data")
31271 (description
31272 "This is a package for model fitting, optimal model selection and
31273 calculation of various features that are essential in the analysis of
31274 quantitative real-time polymerase chain reaction (qPCR).")
31275 (license license:gpl2+)))
31276
31277 (define-public r-textplot
31278 (package
31279 (name "r-textplot")
31280 (version "0.2.1")
31281 (source
31282 (origin
31283 (method url-fetch)
31284 (uri (cran-uri "textplot" version))
31285 (sha256
31286 (base32
31287 "10nxh9axhy6kyp6f3rz7smq08yl35ydx9jx47bs7i0bmcl2kwxvl"))))
31288 (properties `((upstream-name . "textplot")))
31289 (build-system r-build-system)
31290 (propagated-inputs
31291 (list r-data-table r-lattice r-matrix))
31292 (native-inputs (list r-knitr))
31293 (home-page "https://github.com/bnosac/textplot")
31294 (synopsis "Text Plots")
31295 (description
31296 "Visualise complex relations in texts. This is done by providing
31297 functionalities for displaying text co-occurrence networks, text correlation
31298 networks, dependency relationships as well as text clustering. Feel free to
31299 join the effort of providing interesting text visualisations.")
31300 (license license:gpl2)))
31301
31302 (define-public r-gsa
31303 (package
31304 (name "r-gsa")
31305 (version "1.03.2")
31306 (source
31307 (origin
31308 (method url-fetch)
31309 (uri (cran-uri "GSA" version))
31310 (sha256
31311 (base32
31312 "1f1mrxxdbdlnibgav6nsvbpniz2x3km2svc0hf43spb4zicn0z8p"))))
31313 (properties `((upstream-name . "GSA")))
31314 (build-system r-build-system)
31315 (home-page "https://statweb.stanford.edu/~tibs/GSA/")
31316 (synopsis "Gene set analysis")
31317 (description "This package lets you determine the significance of
31318 pre-defined sets of genes with respect to an outcome variable, such as a group
31319 indicator, a quantitative variable or a survival time.")
31320 ;; Any version of the LGPL
31321 (license license:lgpl3+)))
31322
31323 (define-public r-randomforestsrc
31324 (package
31325 (name "r-randomforestsrc")
31326 (version "2.9.3")
31327 (source
31328 (origin
31329 (method url-fetch)
31330 (uri (cran-uri "randomForestSRC" version))
31331 (sha256
31332 (base32
31333 "05ifvj49jv0n5p6k46milpgj9r10sc5aw23fypyyibdgwpwvwixw"))))
31334 (properties
31335 `((upstream-name . "randomForestSRC")))
31336 (build-system r-build-system)
31337 (home-page "https://cran.r-project.org/web/packages/randomForestSRC/")
31338 (synopsis "Random forests for survival, regression, and classification")
31339 (description
31340 "This package implements fast OpenMP parallel computing of Breiman's
31341 random forests for survival, competing risks, regression and classification
31342 based on Ishwaran and Kogalur's popular random survival forests (RSF) package.
31343 It handles missing data and now includes multivariate, unsupervised forests,
31344 quantile regression and solutions for class imbalanced data. It provides a
31345 fast interface using subsampling and confidence regions for variable
31346 importance.")
31347 (license license:gpl3+)))
31348
31349 (define-public r-contfrac
31350 (package
31351 (name "r-contfrac")
31352 (version "1.1-12")
31353 (source
31354 (origin
31355 (method url-fetch)
31356 (uri (cran-uri "contfrac" version))
31357 (sha256
31358 (base32
31359 "0sq5c7ny235yrkv2xc4insgxby6rvzc1qsj8h301cd2if3lwbgwm"))))
31360 (properties `((upstream-name . "contfrac")))
31361 (build-system r-build-system)
31362 (home-page
31363 "https://github.com/RobinHankin/contfrac")
31364 (synopsis "Continued Fractions")
31365 (description
31366 "Various utilities for evaluating continued fractions.")
31367 (license license:gpl2)))
31368
31369 (define-public r-elliptic
31370 (package
31371 (name "r-elliptic")
31372 (version "1.4-0")
31373 (source
31374 (origin
31375 (method url-fetch)
31376 (uri (cran-uri "elliptic" version))
31377 (sha256
31378 (base32
31379 "1dhba0yfxjd5rlqsxp5a7s2hclfkla9wigsr39dlma67l6qjjmxn"))))
31380 (properties `((upstream-name . "elliptic")))
31381 (build-system r-build-system)
31382 (inputs (list pari-gp))
31383 (propagated-inputs (list r-mass))
31384 (home-page
31385 "https://github.com/RobinHankin/elliptic")
31386 (synopsis
31387 "Weierstrass and Jacobi Elliptic Functions")
31388 (description
31389 "A suite of elliptic and related functions including Weierstrass and
31390 Jacobi forms. Also includes various tools for manipulating and visualizing
31391 complex functions.")
31392 (license license:gpl2)))
31393
31394 (define-public r-hypergeo
31395 (package
31396 (name "r-hypergeo")
31397 (version "1.2-13")
31398 (source
31399 (origin
31400 (method url-fetch)
31401 (uri (cran-uri "hypergeo" version))
31402 (sha256
31403 (base32
31404 "13jdiy216znwhr91iqnh03mvkmyscw439syb3h4i67dd78sphnvd"))))
31405 (properties `((upstream-name . "hypergeo")))
31406 (build-system r-build-system)
31407 (propagated-inputs
31408 (list r-contfrac r-desolve r-elliptic))
31409 (home-page
31410 "https://cran.r-project.org/web/packages/hypergeo/")
31411 (synopsis "The Gauss Hypergeometric Function")
31412 (description
31413 "The Gaussian hypergeometric function for complex numbers.")
31414 (license license:gpl2)))
31415
31416 (define-public r-gganimate
31417 (package
31418 (name "r-gganimate")
31419 (version "1.0.7")
31420 (source
31421 (origin
31422 (method url-fetch)
31423 (uri (cran-uri "gganimate" version))
31424 (sha256
31425 (base32
31426 "046v6j92xxgaghsnh88dy5h8x040qsfa8csvhp4dmsfmrrf0dz0f"))))
31427 (properties `((upstream-name . "gganimate")))
31428 (build-system r-build-system)
31429 (arguments
31430 `(#:phases
31431 (modify-phases %standard-phases
31432 (add-after 'unpack 'absolute-paths
31433 (lambda* (#:key inputs #:allow-other-keys)
31434 (substitute* "R/renderers.R"
31435 (("'ffmpeg'")
31436 (string-append "'" (assoc-ref inputs "ffmpeg") "/bin/ffmpeg'"))))))))
31437 (inputs
31438 ;; For video output.
31439 (list ffmpeg))
31440 (propagated-inputs
31441 (list r-ggplot2
31442 r-glue
31443 r-plyr
31444 r-progress
31445 r-rlang
31446 r-scales
31447 r-stringi
31448 r-tweenr
31449 ;; For GIF/SVG output. gifski is faster, but depends on Rust.
31450 r-magick
31451 ;; For HTML output.
31452 r-base64enc
31453 r-htmltools))
31454 (native-inputs (list r-knitr))
31455 (home-page "https://gganimate.com")
31456 (synopsis "Grammar of Animated Graphics")
31457 (description
31458 "This package extends the grammar of graphics as implemented by
31459 @code{ggplot2} to include the description of animation. It does this by
31460 providing a range of new grammar classes that can be added to the plot object
31461 in order to customise how it should change with time.")
31462 (license license:expat)))
31463
31464 ;; This library bundles ‘date’ from (gnu packages calendar). We cannot unbundle
31465 ;; it, because its C++ libtz.so is built with different compiler flags than
31466 ;; ours.
31467 (define-public r-tzdb
31468 (package
31469 (name "r-tzdb")
31470 (version "0.3.0")
31471 (source
31472 (origin
31473 (method url-fetch)
31474 (uri (cran-uri "tzdb" version))
31475 (sha256
31476 (base32
31477 "0f3h4zaf9f4l371k6nc1mq6z2f9aj1vaf2inni8jnsds3zng16b0"))))
31478 (properties `((upstream-name . "tzdb")))
31479 (build-system r-build-system)
31480 (propagated-inputs (list r-cpp11))
31481 (home-page "https://github.com/r-lib/tzdb")
31482 (synopsis "Time Zone Database Information")
31483 (description
31484 "This package provides an up-to-date copy of the Internet Assigned
31485 Numbers Authority (IANA) Time Zone Database. It is updated periodically to
31486 reflect changes made by political bodies to time zone boundaries, UTC offsets,
31487 and daylight saving time rules. Additionally, this package provides a C++
31488 interface for working with the @code{date} library. @code{date} provides
31489 comprehensive support for working with dates and date-times, which this package
31490 exposes to make it easier for other R packages to utilize. Headers are
31491 provided for calendar specific calculations, along with a limited interface for
31492 time zone manipulations.")
31493 (license license:expat)))
31494
31495 (define-public r-vroom
31496 (package
31497 (name "r-vroom")
31498 (version "1.5.7")
31499 (source
31500 (origin
31501 (method url-fetch)
31502 (uri (cran-uri "vroom" version))
31503 (sha256
31504 (base32
31505 "1plz20x6s01gkkcac51lhx4r2s024pgh778ri7y25hkiiwacp1yh"))))
31506 (properties `((upstream-name . "vroom")))
31507 (build-system r-build-system)
31508 (propagated-inputs
31509 (list r-bit64
31510 r-cli
31511 r-cpp11
31512 r-crayon
31513 r-glue
31514 r-hms
31515 r-lifecycle
31516 r-progress
31517 r-rlang
31518 r-tibble
31519 r-tidyselect
31520 r-tzdb
31521 r-vctrs
31522 r-withr))
31523 (native-inputs (list r-knitr))
31524 (home-page "https://vroom.r-lib.org")
31525 (synopsis
31526 "Read and Write Rectangular Text Data")
31527 (description
31528 "This package reads and writes data files like @acronym{CSV},
31529 @acronym{TSV} and @acronym{FWF}. When reading it uses a quick initial indexing
31530 step, then reads the values lazily, so only the data you actually use needs to
31531 be read. The writer formats the data in parallel and writes to disk
31532 asynchronously from formatting.")
31533 (license license:expat)))
31534
31535 (define-public r-rmisc
31536 (package
31537 (name "r-rmisc")
31538 (version "1.5.1")
31539 (source (origin
31540 (method url-fetch)
31541 (uri (cran-uri "Rmisc" version))
31542 (sha256
31543 (base32
31544 "1h6jb0xwkyhm9lwm7nj9bhrb5dhrsifvkpqkrd594j1lz74dar8x"))))
31545 (build-system r-build-system)
31546 (propagated-inputs
31547 (list r-plyr r-lattice))
31548 (home-page "https://cran.r-project.org/web/packages/Rmisc/")
31549 (synopsis "Ryan Miscellaneous")
31550 (description "The Rmisc library contains functions for data analysis and
31551 utility operations.")
31552 (license license:gpl3)))
31553
31554 (define-public r-webutils
31555 (package
31556 (name "r-webutils")
31557 (version "1.1")
31558 (source
31559 (origin
31560 (method url-fetch)
31561 (uri (cran-uri "webutils" version))
31562 (sha256
31563 (base32 "16a6ds0fnb6y8i1r9ba1hf1ydb53am57s070b3hi5jmrs84b9qik"))))
31564 (properties `((upstream-name . "webutils")))
31565 (build-system r-build-system)
31566 (propagated-inputs
31567 (list r-curl r-jsonlite))
31568 (home-page "https://github.com/jeroen/webutils")
31569 (synopsis "Utility functions for developing web applications")
31570 (description
31571 "This package parses HTTP request data in @code{application/json},
31572 @code{multipart/form-data}, or @code{application/x-www-form-urlencoded}
31573 format. It includes an example of hosting and parsing HTML form data in R
31574 using either @code{httpuv} or @code{Rhttpd}.")
31575 (license license:expat)))
31576
31577 (define-public r-protolite
31578 (package
31579 (name "r-protolite")
31580 (version "2.1.1")
31581 (source
31582 (origin
31583 (method url-fetch)
31584 (uri (cran-uri "protolite" version))
31585 (sha256
31586 (base32 "0g1r3lzmvx1w44qzqzdvxfn21zmz11srlp6cr76kd7pd5wzjv82p"))))
31587 (properties `((upstream-name . "protolite")))
31588 (build-system r-build-system)
31589 (inputs
31590 (list protobuf))
31591 (propagated-inputs
31592 (list r-jsonlite r-rcpp))
31593 (native-inputs
31594 (list protobuf pkg-config))
31595 (home-page "https://github.com/jeroen/protolite")
31596 (synopsis "Highly optimized protocol buffer serializers")
31597 (description
31598 "This package provides pure C++ implementations for reading and writing
31599 several common data formats based on Google protocol-buffers. It currently
31600 supports @code{rexp.proto} for serialized R objects, @code{geobuf.proto} for
31601 binary geojson, and @code{mvt.proto} for vector tiles. This package uses the
31602 auto-generated C++ code by protobuf-compiler, hence the entire serialization
31603 is optimized at compile time. The @code{RProtoBuf} package on the other hand
31604 uses the protobuf runtime library to provide a general-purpose toolkit for
31605 reading and writing arbitrary protocol-buffer data in R.")
31606 (license license:expat)))
31607
31608 (define-public r-opencpu
31609 (package
31610 (name "r-opencpu")
31611 (version "2.2.8")
31612 (source
31613 (origin
31614 (method url-fetch)
31615 (uri (cran-uri "opencpu" version))
31616 (sha256
31617 (base32 "1h0s7fbifyf4h1296sdk3amij0m6s12wq32mbky7xg4nz8wj29ni"))))
31618 (properties `((upstream-name . "opencpu")))
31619 (build-system r-build-system)
31620 (inputs
31621 (list pandoc))
31622 (propagated-inputs
31623 (list r-brew
31624 r-curl
31625 r-evaluate
31626 r-httpuv
31627 r-jsonlite
31628 r-knitr
31629 r-mime
31630 r-openssl
31631 r-protolite
31632 r-rappdirs
31633 r-remotes
31634 r-sys
31635 r-webutils
31636 r-zip))
31637 (native-inputs
31638 (list r-knitr))
31639 (home-page "https://www.opencpu.org")
31640 (synopsis "API for embedded scientific computing")
31641 (description
31642 "This package provides a system for embedded scientific computing and
31643 reproducible research with R. The OpenCPU server exposes a simple but
31644 powerful HTTP API for RPC and data interchange with R. This provides a
31645 reliable and scalable foundation for statistical services or building R web
31646 applications. The OpenCPU server runs either as a single-user development
31647 server within the interactive R session, or as a multi-user stack based on
31648 Apache2.")
31649 (license license:asl2.0)))
31650
31651 (define-public r-exactextractr
31652 (package
31653 (name "r-exactextractr")
31654 (version "0.8.2")
31655 (source
31656 (origin
31657 (method url-fetch)
31658 (uri (cran-uri "exactextractr" version))
31659 (sha256
31660 (base32
31661 "0x4axrq9iznvajqy07gcfcrvzniz5yj6wabchgksg0fqz0xancnc"))))
31662 (properties `((upstream-name . "exactextractr")))
31663 (build-system r-build-system)
31664 (inputs (list geos))
31665 (propagated-inputs
31666 (list r-raster r-rcpp r-sf))
31667 (native-inputs
31668 (list r-knitr))
31669 (home-page "https://isciences.gitlab.io/exactextractr/")
31670 (synopsis "Fast extraction from raster datasets using polygons")
31671 (description
31672 "This package provides a replacement for the @code{extract} function from
31673 the @code{raster} package that is suitable for extracting raster values using
31674 @code{sf} polygons.")
31675 (license license:asl2.0)))
31676
31677 (define-public r-stringfish
31678 (package
31679 (name "r-stringfish")
31680 (version "0.15.7")
31681 (source
31682 (origin
31683 (method url-fetch)
31684 (uri (cran-uri "stringfish" version))
31685 (sha256
31686 (base32
31687 "0ddpsi7z0kzqgbq9y646pk9afclq0r7ak22zsdh0i93ni0x71c9l"))))
31688 (properties `((upstream-name . "stringfish")))
31689 (build-system r-build-system)
31690 (propagated-inputs
31691 (list r-rcpp r-rcppparallel))
31692 (native-inputs
31693 (list pkg-config r-knitr))
31694 (home-page "https://github.com/traversc/stringfish")
31695 (synopsis "Alternative string implementation")
31696 (description
31697 "This package provides an extendable, performant and multithreaded
31698 @code{alt-string} implementation backed by C++ vectors and strings.")
31699 (license license:gpl3)))
31700
31701 (define-public r-rapiserialize
31702 (package
31703 (name "r-rapiserialize")
31704 (version "0.1.0")
31705 (source
31706 (origin
31707 (method url-fetch)
31708 (uri (cran-uri "RApiSerialize" version))
31709 (sha256
31710 (base32
31711 "0gm2j8kh40imhncwwx1sx9kmraaxcxycvgwls53lcyy2ap344k9j"))))
31712 (properties `((upstream-name . "RApiSerialize")))
31713 (build-system r-build-system)
31714 (home-page
31715 "https://cran.r-project.org/package=RApiSerialize")
31716 (synopsis "R API serialization")
31717 (description
31718 "This package provides other packages with access to the internal R
31719 serialization code. Access to this code is provided at the C function level
31720 by using the registration of native function mechanism. Client packages
31721 simply include a single header file RApiSerializeAPI.h provided by this
31722 package.")
31723 (license license:gpl2+)))
31724
31725 (define-public r-qs
31726 (package
31727 (name "r-qs")
31728 (version "0.25.3")
31729 (source
31730 (origin
31731 (method url-fetch)
31732 (uri (cran-uri "qs" version))
31733 (sha256
31734 (base32
31735 "0sxy497v5arjv6lwxng7chkbzrn703waqmgsxv77i7y12ahzdbai"))))
31736 (properties `((upstream-name . "qs")))
31737 (build-system r-build-system)
31738 (inputs (list zlib))
31739 (propagated-inputs
31740 (list r-rapiserialize r-rcpp r-stringfish))
31741 (native-inputs
31742 (list pkg-config r-knitr))
31743 (home-page "https://github.com/traversc/qs")
31744 (synopsis "Quick serialization of R objects")
31745 (description
31746 "This package provides functions for quickly writing and reading any R
31747 object to and from disk.")
31748 (license license:gpl3)))
31749
31750 (define-public r-rgeos
31751 (package
31752 (name "r-rgeos")
31753 (version "0.5-9")
31754 (source
31755 (origin
31756 (method url-fetch)
31757 (uri (cran-uri "rgeos" version))
31758 (sha256
31759 (base32
31760 "1m73y0nwrdwsjrl48c4fg1kdqnh79835brnmxv9ak01ndbzcp45b"))))
31761 (properties `((upstream-name . "rgeos")))
31762 (build-system r-build-system)
31763 (inputs
31764 (list geos))
31765 (propagated-inputs
31766 (list r-sp))
31767 (home-page "https://cran.r-project.org/package=rgeos")
31768 (synopsis "Interface to Geometry Engine (GEOS)")
31769 (description
31770 "This package provides an R interface to Geometry Engine (GEOS) using the
31771 C API for topology operations on geometries.")
31772 (license license:gpl2+)))
31773
31774 (define-public r-tfruns
31775 (package
31776 (name "r-tfruns")
31777 (version "1.5.0")
31778 (source
31779 (origin
31780 (method url-fetch)
31781 (uri (cran-uri "tfruns" version))
31782 (sha256
31783 (base32
31784 "04lfckg1if3kfwcl4s4fcc9aw04crwk4m1qr55ag22j2x2jlb2l9"))))
31785 (properties `((upstream-name . "tfruns")))
31786 (build-system r-build-system)
31787 (propagated-inputs
31788 (list r-base64enc
31789 r-config
31790 r-jsonlite
31791 r-magrittr
31792 r-reticulate
31793 r-rlang
31794 r-rstudioapi
31795 r-tidyselect
31796 r-whisker
31797 r-yaml))
31798 (native-inputs (list r-knitr))
31799 (home-page "https://github.com/rstudio/tfruns")
31800 (synopsis "Training run tools for TensorFlow")
31801 (description
31802 "Create and manage unique directories for each TensorFlow training run.
31803 This package provides a unique, time stamped directory for each run along with
31804 functions to retrieve the directory of the latest run or latest several
31805 runs.")
31806 (license license:asl2.0)))
31807
31808 (define-public r-tfautograph
31809 (package
31810 (name "r-tfautograph")
31811 (version "0.3.2")
31812 (source
31813 (origin
31814 (method url-fetch)
31815 (uri (cran-uri "tfautograph" version))
31816 (sha256
31817 (base32
31818 "0fmaq1ggjyxgf2ss7qb8jk74sfwc3s1vc123pd5glclxcy1ib0j2"))))
31819 (properties `((upstream-name . "tfautograph")))
31820 (build-system r-build-system)
31821 (inputs (list tensorflow))
31822 (propagated-inputs
31823 (list r-backports r-reticulate))
31824 (home-page "https://t-kalinowski.github.io/tfautograph/")
31825 (synopsis "Autograph R for Tensorflow")
31826 (description
31827 "This package lets you translate R control flow expressions into
31828 Tensorflow graphs.")
31829 (license license:gpl3)))
31830
31831 (define-public r-tensorflow
31832 (package
31833 (name "r-tensorflow")
31834 (version "2.9.0")
31835 (source
31836 (origin
31837 (method url-fetch)
31838 (uri (cran-uri "tensorflow" version))
31839 (sha256
31840 (base32
31841 "12c6ndxx4g6fqjakpzp9pgl29ghswhqyr6q9jahpk0cawizh2znj"))))
31842 (properties `((upstream-name . "tensorflow")))
31843 (build-system r-build-system)
31844 (inputs (list tensorflow))
31845 (propagated-inputs
31846 (list r-config
31847 r-processx
31848 r-reticulate
31849 r-rstudioapi
31850 r-tfautograph
31851 r-tfruns
31852 r-yaml))
31853 (home-page "https://github.com/rstudio/tensorflow")
31854 (synopsis "R interface to TensorFlow")
31855 (description
31856 "R interface to TensorFlow a library for numerical computation using data
31857 flow graphs. Nodes in the graph represent mathematical operations, while the
31858 graph edges represent the multidimensional data arrays (tensors) communicated
31859 between them.")
31860 (license license:asl2.0)))
31861
31862 (define-public r-keras
31863 (package
31864 (name "r-keras")
31865 (version "2.9.0")
31866 (source
31867 (origin
31868 (method url-fetch)
31869 (uri (cran-uri "keras" version))
31870 (sha256
31871 (base32
31872 "06513d1fp7cxk4v03xm9lhgj6xmp9dqqvw3lnzwbzjwdkfj948yc"))))
31873 (properties `((upstream-name . "keras")))
31874 (build-system r-build-system)
31875 (propagated-inputs
31876 (list r-ellipsis
31877 r-generics
31878 r-glue
31879 r-magrittr
31880 r-r6
31881 r-reticulate
31882 r-rlang
31883 r-tensorflow
31884 r-tfruns
31885 r-zeallot))
31886 (native-inputs (list r-knitr))
31887 (home-page "https://keras.rstudio.com")
31888 (synopsis "R Interface to 'Keras'")
31889 (description
31890 "This package provides an interface to Keras, a high-level neural
31891 networks API. Keras was developed with a focus on enabling fast
31892 experimentation, supports both convolution based networks and recurrent
31893 networks (as well as combinations of the two), and runs seamlessly on both CPU
31894 and GPU devices.")
31895 (license license:expat)))
31896
31897 (define-public r-zzlite
31898 (package
31899 (name "r-zzlite")
31900 (version "0.1.2")
31901 (source
31902 (origin
31903 (method url-fetch)
31904 (uri (cran-uri "zzlite" version))
31905 (sha256
31906 (base32
31907 "0vi1slx2s4r5zf82lazqv0c3m12xq73wlgsbz6af4y00h0bkr3ps"))))
31908 (properties `((upstream-name . "zzlite")))
31909 (build-system r-build-system)
31910 (propagated-inputs
31911 (list r-httr r-jsonlite))
31912 (native-inputs
31913 (list r-knitr))
31914 (home-page "https://cran.r-project.org/package=zzlite")
31915 (synopsis "Wrapper for the Zamzar file conversion API")
31916 (description
31917 "This package provides a minor collection of HTTP wrappers for the Zamzar
31918 file conversion API. The wrappers makes it easy to utilize the API and thus
31919 convert between more than 100 different file formats (ranging from audio
31920 files, images, movie formats, etc., etc.) through an R session.")
31921 (license license:gpl3)))
31922
31923 (define-public r-ztree
31924 (package
31925 (name "r-ztree")
31926 (version "1.0.7")
31927 (source
31928 (origin
31929 (method url-fetch)
31930 (uri (cran-uri "zTree" version))
31931 (sha256
31932 (base32
31933 "005zk6wpchpss6865ki35yawgf668pn70163ah97rnfkhfaswm6y"))))
31934 (properties `((upstream-name . "zTree")))
31935 (build-system r-build-system)
31936 (propagated-inputs
31937 (list r-plyr))
31938 (home-page "https://cran.r-project.org/package=zTree")
31939 (synopsis "Functions to import data from z-Tree into R")
31940 (description
31941 "This package provides tools for reading @code{.xls} and @code{.sbj}
31942 files which are written by the proprietary program z-Tree for developing and
31943 carrying out economic experiments.")
31944 (license license:gpl3)))
31945
31946 (define-public r-distributionutils
31947 (package
31948 (name "r-distributionutils")
31949 (version "0.6-0")
31950 (source
31951 (origin
31952 (method url-fetch)
31953 (uri (cran-uri "DistributionUtils" version))
31954 (sha256
31955 (base32
31956 "08vq54pyqxlqsj6q6gsg5ikqa0z3x842j52ld5dxaq272p6xchvl"))))
31957 (properties
31958 `((upstream-name . "DistributionUtils")))
31959 (build-system r-build-system)
31960 (native-inputs
31961 (list gfortran))
31962 (home-page "https://cran.r-project.org/package=DistributionUtils")
31963 (synopsis "Distribution utilities")
31964 (description
31965 "This package provides utilities for dealing with distributions.
31966 Functionality includes sample skewness and kurtosis, log-histogram, tail
31967 plots, moments by integration, changing the point about which a moment is
31968 calculated, functions for testing distributions using inversion tests and the
31969 Massart inequality. Also included is an implementation of the incomplete
31970 Bessel K function.")
31971 (license license:gpl2+)))
31972
31973 (define-public r-ztpln
31974 (package
31975 (name "r-ztpln")
31976 (version "0.1.2")
31977 (source
31978 (origin
31979 (method url-fetch)
31980 (uri (cran-uri "ztpln" version))
31981 (sha256
31982 (base32
31983 "1b22m72a8117yrgq5k1gzsrbx6yrsrj7bpd49lh7x3vbaz56c0wr"))))
31984 (properties `((upstream-name . "ztpln")))
31985 (build-system r-build-system)
31986 (propagated-inputs
31987 (list r-distributionutils r-mixtools r-rcpp r-rcppeigen
31988 r-rcppnumerical))
31989 (native-inputs
31990 (list r-knitr))
31991 (home-page "https://github.com/mattocci27/ztpln")
31992 (synopsis "Zero-truncated Poisson lognormal distribution")
31993 (description
31994 "This package provides functions for obtaining the density, random
31995 variates and maximum likelihood estimates of the Zero-truncated Poisson
31996 lognormal distribution and their mixture distribution.")
31997 (license license:expat)))
31998
31999 (define-public r-zscorer
32000 (package
32001 (name "r-zscorer")
32002 (version "0.3.1")
32003 (source
32004 (origin
32005 (method url-fetch)
32006 (uri (cran-uri "zscorer" version))
32007 (sha256
32008 (base32
32009 "0aijhs0fyird5gq68x4dxchb02mxa7ijk10k9zjhngghxbjj7iqn"))))
32010 (properties `((upstream-name . "zscorer")))
32011 (build-system r-build-system)
32012 (propagated-inputs
32013 (list r-shiny))
32014 (native-inputs
32015 (list r-knitr))
32016 (home-page "https://github.com/nutriverse/zscorer")
32017 (synopsis "Child Anthropometry z-Score Calculator")
32018 (description
32019 "This package provides a tool for calculating z-scores and centiles for
32020 weight-for-age, length/height-for-age, weight-for-length/height, BMI-for-age,
32021 head circumference-for-age, age circumference-for-age, subscapular
32022 skinfold-for-age, triceps skinfold-for-age based on the WHO Child Growth
32023 Standards.")
32024 (license license:agpl3+)))
32025
32026 (define-public r-zra
32027 (package
32028 (name "r-zra")
32029 (version "0.2")
32030 (source
32031 (origin
32032 (method url-fetch)
32033 (uri (cran-uri "ZRA" version))
32034 (sha256
32035 (base32
32036 "1sx1q5yf68hhlb5j1hicpj594rmgajqr25llg7ax416j0m2rnagi"))))
32037 (properties `((upstream-name . "ZRA")))
32038 (build-system r-build-system)
32039 (propagated-inputs
32040 (list r-dygraphs r-forecast))
32041 (home-page "https://cran.r-project.org/package=ZRA")
32042 (synopsis "Dynamic plots for time series forecasting")
32043 (description
32044 "This package combines a forecast of a time series, using the function @code{forecast},
32045 with the dynamic plots from @code{dygraphs}.")
32046 (license license:gpl2+)))
32047
32048 (define-public r-rfigshare
32049 (package
32050 (name "r-rfigshare")
32051 (version "0.3.8")
32052 (source
32053 (origin
32054 (method url-fetch)
32055 (uri (cran-uri "rfigshare" version))
32056 (sha256
32057 (base32
32058 "10shwl1y9220m7ld5w9fjsjzy5yg8myrz9cz97ps9z2bw7bvka5j"))))
32059 (properties `((upstream-name . "rfigshare")))
32060 (build-system r-build-system)
32061 (propagated-inputs
32062 (list r-ggplot2
32063 r-httpuv
32064 r-httr
32065 r-rjsonio
32066 r-xml
32067 r-yaml))
32068 (native-inputs
32069 (list r-knitr))
32070 (home-page "https://github.com/ropensci/rfigshare")
32071 (synopsis "R Interface to figshare")
32072 (description
32073 "This package provides an interface to figshare, a scientific repository
32074 to archive and assign DOIs to data, software, figures, and more.")
32075 (license license:cc0)))
32076
32077 (define-public r-dismo
32078 (package
32079 (name "r-dismo")
32080 (version "1.3-5")
32081 (source
32082 (origin
32083 (method url-fetch)
32084 (uri (cran-uri "dismo" version))
32085 (sha256
32086 (base32
32087 "1rqf6h4imbqvs7hjd1k4my6154wg0qnmnp5byan403rcshr1jbl1"))))
32088 (properties `((upstream-name . "dismo")))
32089 (build-system r-build-system)
32090 (propagated-inputs
32091 (list r-raster r-rcpp r-sp r-terra))
32092 (home-page "https://rspatial.org/raster/sdm/")
32093 (synopsis "Species distribution modeling")
32094 (description
32095 "This package provides methods for species distribution modeling, i.e.,
32096 predicting the environmental similarity of any site to that of the locations
32097 of known occurrences of a species.")
32098 (license license:gpl3+)))
32099
32100 (define-public r-zoon
32101 (package
32102 (name "r-zoon")
32103 (version "0.6.5")
32104 (source
32105 (origin
32106 (method url-fetch)
32107 (uri (cran-uri "zoon" version))
32108 (sha256
32109 (base32
32110 "02y29vr2yn8al69km8faiqrwjrc1r3hsvw3dg8lwjr65cxw1krip"))))
32111 (properties `((upstream-name . "zoon")))
32112 (build-system r-build-system)
32113 (propagated-inputs
32114 (list r-dismo
32115 r-plyr
32116 r-randomforest
32117 r-raster
32118 r-rcurl
32119 r-rfigshare
32120 r-rgdal
32121 r-roxygen2
32122 r-rworldmap
32123 r-sp
32124 r-testthat))
32125 (native-inputs
32126 (list r-knitr))
32127 (home-page "https://github.com/zoonproject/zoon")
32128 (synopsis "Reproducible, accessible and shareable species distribution modelling")
32129 (description
32130 "This package reads user submitted modules from an online repository,
32131 runs full species distribution modelling workflows and returns output that is
32132 fully reproducible.")
32133 (license license:bsd-3)))
32134
32135 (define-public r-paws-common
32136 (package
32137 (name "r-paws-common")
32138 (version "0.3.17")
32139 (source
32140 (origin
32141 (method url-fetch)
32142 (uri (cran-uri "paws.common" version))
32143 (sha256
32144 (base32
32145 "1dg18hwnrjd6m1vjcxfs2vm1zxciivf4vzhq0z76dmmiqz2yjm28"))))
32146 (properties `((upstream-name . "paws.common")))
32147 (build-system r-build-system)
32148 (propagated-inputs
32149 (list r-base64enc r-digest r-httr r-jsonlite r-xml2))
32150 (home-page "https://cran.r-project.org/package=paws.common")
32151 (synopsis "Paws low-level Amazon Web Services API")
32152 (description
32153 "This package provides functions for making low-level API requests to
32154 Amazon Web Services. The functions handle building, signing, and sending
32155 requests, and receiving responses. They are designed to help build
32156 higher-level interfaces to individual services, such as Simple Storage
32157 Service (S3).")
32158 (license license:asl2.0)))
32159
32160 (define-public r-paws-customer-engagement
32161 (package
32162 (name "r-paws-customer-engagement")
32163 (version "0.1.12")
32164 (source
32165 (origin
32166 (method url-fetch)
32167 (uri (cran-uri "paws.customer.engagement" version))
32168 (sha256
32169 (base32
32170 "0ac6hzn4ilfjhzdmc9x80999fl18cz16mky31qd3y09m93w2xkdj"))))
32171 (properties
32172 `((upstream-name . "paws.customer.engagement")))
32173 (build-system r-build-system)
32174 (propagated-inputs
32175 (list r-paws-common))
32176 (home-page "https://github.com/paws-r/paws")
32177 (synopsis "Amazon Web Services customer engagement services")
32178 (description
32179 "This package provides an interface to Amazon Web Services customer
32180 engagement services, including Simple Email Service, Connect contact center
32181 service, and more.")
32182 (license license:asl2.0)))
32183
32184 (define-public r-paws-cost-management
32185 (package
32186 (name "r-paws-cost-management")
32187 (version "0.1.12")
32188 (source
32189 (origin
32190 (method url-fetch)
32191 (uri (cran-uri "paws.cost.management" version))
32192 (sha256
32193 (base32
32194 "0in4f8ygw5g2v6vl3lz2y0v51llglh8b1ymbd04d54xxlgn83knh"))))
32195 (properties
32196 `((upstream-name . "paws.cost.management")))
32197 (build-system r-build-system)
32198 (propagated-inputs
32199 (list r-paws-common))
32200 (home-page "https://github.com/paws-r/paws")
32201 (synopsis "Amazon Web Services cost management services")
32202 (description
32203 "This package provides an interface to Amazon Web Services cost
32204 management services, including cost and usage reports, budgets, pricing, and
32205 more.")
32206 (license license:asl2.0)))
32207
32208 (define-public r-paws-developer-tools
32209 (package
32210 (name "r-paws-developer-tools")
32211 (version "0.1.12")
32212 (source
32213 (origin
32214 (method url-fetch)
32215 (uri (cran-uri "paws.developer.tools" version))
32216 (sha256
32217 (base32 "16gb8g8s67al7qdd95fbigxqkih9a9p7slkyf3cga42wb6miiby2"))))
32218 (properties `((upstream-name . "paws.developer.tools")))
32219 (build-system r-build-system)
32220 (propagated-inputs
32221 (list r-paws-common))
32222 (home-page "https://github.com/paws-r/paws")
32223 (synopsis "Amazon Web Services developer tools services")
32224 (description
32225 "This package provides an interface to Amazon Web Services developer
32226 tools services, including version control, continuous integration and
32227 deployment, and more.")
32228 (license license:asl2.0)))
32229
32230 (define-public r-paws-end-user-computing
32231 (package
32232 (name "r-paws-end-user-computing")
32233 (version "0.1.12")
32234 (source
32235 (origin
32236 (method url-fetch)
32237 (uri (cran-uri "paws.end.user.computing" version))
32238 (sha256
32239 (base32 "1xxsz86nx128sizym9np8vldzkbym0p3i6vcy94kq1y0cylaicv3"))))
32240 (properties `((upstream-name . "paws.end.user.computing")))
32241 (build-system r-build-system)
32242 (propagated-inputs
32243 (list r-paws-common))
32244 (home-page "https://github.com/paws-r/paws")
32245 (synopsis "Amazon Web Services end user computing services")
32246 (description
32247 "This package provides an interface to Amazon Web Services end user
32248 computing services, including collaborative document editing, mobile intranet,
32249 and more.")
32250 (license license:asl2.0)))
32251
32252 (define-public r-paws-application-integration
32253 (package
32254 (name "r-paws-application-integration")
32255 (version "0.1.12")
32256 (source
32257 (origin
32258 (method url-fetch)
32259 (uri (cran-uri "paws.application.integration" version))
32260 (sha256
32261 (base32
32262 "0llyd9hc679pad1ih0rcc38q5xxpzinhwrl8cvrkgsjgbc3agq42"))))
32263 (properties
32264 `((upstream-name . "paws.application.integration")))
32265 (build-system r-build-system)
32266 (propagated-inputs
32267 (list r-paws-common))
32268 (home-page "https://github.com/paws-r/paws")
32269 (synopsis "Amazon Web Services application integration services")
32270 (description
32271 "This package provides an interface to Amazon Web Services application
32272 integration services, including Simple Queue Service (SQS) message queue,
32273 Simple Notification Service (SNS) publish/subscribe messaging, and more.")
32274 (license license:asl2.0)))
32275
32276 (define-public r-paws-security-identity
32277 (package
32278 (name "r-paws-security-identity")
32279 (version "0.1.12")
32280 (source
32281 (origin
32282 (method url-fetch)
32283 (uri (cran-uri "paws.security.identity" version))
32284 (sha256
32285 (base32
32286 "092lz2ipn5iqr593x7ra8c0bj64yf6315mdc3llgwrjyb4vfxif9"))))
32287 (properties
32288 `((upstream-name . "paws.security.identity")))
32289 (build-system r-build-system)
32290 (propagated-inputs
32291 (list r-paws-common))
32292 (home-page "https://github.com/paws-r/paws")
32293 (synopsis "Amazon Web Services security, identity, and compliance services")
32294 (description
32295 "This package provides an interface to Amazon Web Services security,
32296 identity, and compliance services, including the Identity and Access
32297 Management (IAM) service for managing access to services and resources, and
32298 more.")
32299 (license license:asl2.0)))
32300
32301 (define-public r-paws-analytics
32302 (package
32303 (name "r-paws-analytics")
32304 (version "0.1.12")
32305 (source
32306 (origin
32307 (method url-fetch)
32308 (uri (cran-uri "paws.analytics" version))
32309 (sha256
32310 (base32
32311 "04gnaxmj21l312xkrsd9bisi0bz9h6h5fyhwlqylcxi077z1yb2g"))))
32312 (properties
32313 `((upstream-name . "paws.analytics")))
32314 (build-system r-build-system)
32315 (propagated-inputs
32316 (list r-paws-common))
32317 (home-page "https://github.com/paws-r/paws")
32318 (synopsis "Amazon Web Services analytics services")
32319 (description
32320 "This package provides an interface to Amazon Web Services analytics
32321 services, including Elastic MapReduce Hadoop and Spark big data service,
32322 Elasticsearch search engine, and more.")
32323 (license license:asl2.0)))
32324
32325 (define-public r-paws-machine-learning
32326 (package
32327 (name "r-paws-machine-learning")
32328 (version "0.1.12")
32329 (source
32330 (origin
32331 (method url-fetch)
32332 (uri (cran-uri "paws.machine.learning" version))
32333 (sha256
32334 (base32
32335 "01w2y5952pk50xjbzby2pc51xrkrzjpfxbmii1b10cl2xgzfkxsa"))))
32336 (properties
32337 `((upstream-name . "paws.machine.learning")))
32338 (build-system r-build-system)
32339 (propagated-inputs
32340 (list r-paws-common))
32341 (home-page "https://github.com/paws-r/paws")
32342 (synopsis "Amazon Web Services machine learning services")
32343 (description
32344 "This package provides an interface to Amazon Web Services machine
32345 learning services, including SageMaker managed machine learning service,
32346 natural language processing, speech recognition, translation, and more.")
32347 (license license:asl2.0)))
32348
32349 (define-public r-paws-management
32350 (package
32351 (name "r-paws-management")
32352 (version "0.1.12")
32353 (source
32354 (origin
32355 (method url-fetch)
32356 (uri (cran-uri "paws.management" version))
32357 (sha256
32358 (base32
32359 "09k7wg0jlj40zs2yb3vldffpkdcjg7ap98n7c5lxr5plpca08swg"))))
32360 (properties
32361 `((upstream-name . "paws.management")))
32362 (build-system r-build-system)
32363 (propagated-inputs
32364 (list r-paws-common))
32365 (home-page "https://github.com/paws-r/paws")
32366 (synopsis "Amazon Web Services management and governance services")
32367 (description
32368 "This package provides an interface to Amazon Web Services management and
32369 governance services, including CloudWatch application and infrastructure
32370 monitoring, Auto Scaling for automatically scaling resources, and more.")
32371 (license license:asl2.0)))
32372
32373 (define-public r-paws-networking
32374 (package
32375 (name "r-paws-networking")
32376 (version "0.1.12")
32377 (source
32378 (origin
32379 (method url-fetch)
32380 (uri (cran-uri "paws.networking" version))
32381 (sha256
32382 (base32
32383 "02hxaa5nlj70mdggh379ij3fn09xm8h5ldzsyf45c342prpl6zwj"))))
32384 (properties
32385 `((upstream-name . "paws.networking")))
32386 (build-system r-build-system)
32387 (propagated-inputs
32388 (list r-paws-common))
32389 (home-page "https://github.com/paws-r/paws")
32390 (synopsis "Amazon Web Services networking and content delivery services")
32391 (description
32392 "This package provides an interface to Amazon Web Services networking and
32393 content delivery services, including Route 53 Domain Name System service,
32394 CloudFront content delivery, load balancing, and more.")
32395 (license license:asl2.0)))
32396
32397 (define-public r-paws-database
32398 (package
32399 (name "r-paws-database")
32400 (version "0.1.12")
32401 (source
32402 (origin
32403 (method url-fetch)
32404 (uri (cran-uri "paws.database" version))
32405 (sha256
32406 (base32
32407 "08jpwz95fw3f68j0wxh2lg57nn60khflldab0ryhkkbcw1iy0qyz"))))
32408 (properties `((upstream-name . "paws.database")))
32409 (build-system r-build-system)
32410 (propagated-inputs
32411 (list r-paws-common))
32412 (home-page "https://github.com/paws-r/paws")
32413 (synopsis
32414 "Amazon Web Services Database Services")
32415 (description
32416 "This package provides an interface to Amazon Web Services database
32417 services, including Relational Database Service (RDS), DynamoDB NoSQL
32418 database, and more.")
32419 (license license:asl2.0)))
32420
32421 (define-public r-paws-storage
32422 (package
32423 (name "r-paws-storage")
32424 (version "0.1.12")
32425 (source
32426 (origin
32427 (method url-fetch)
32428 (uri (cran-uri "paws.storage" version))
32429 (sha256
32430 (base32
32431 "06m887vpqp5d6k3zxdlga599dsv8v3rladk7xqaxqnld1f17am04"))))
32432 (properties `((upstream-name . "paws.storage")))
32433 (build-system r-build-system)
32434 (propagated-inputs
32435 (list r-paws-common))
32436 (home-page "https://github.com/paws-r/paws")
32437 (synopsis "Amazon Web Services storage services")
32438 (description
32439 "This package provides an interface to Amazon Web Services storage
32440 services, including Simple Storage Service (S3).")
32441 (license license:asl2.0)))
32442
32443 (define-public r-paws-compute
32444 (package
32445 (name "r-paws-compute")
32446 (version "0.1.12")
32447 (source
32448 (origin
32449 (method url-fetch)
32450 (uri (cran-uri "paws.compute" version))
32451 (sha256
32452 (base32
32453 "1km6fng6il5fcjlrbbndahsw2dr2ql83hwac9wlpd67zm3wy9lky"))))
32454 (properties `((upstream-name . "paws.compute")))
32455 (build-system r-build-system)
32456 (propagated-inputs
32457 (list r-paws-common))
32458 (home-page "https://github.com/paws-r/paws")
32459 (synopsis "Amazon Web Services compute services")
32460 (description
32461 "This package provides an interface to Amazon Web Services compute
32462 services, including Elastic Compute Cloud (EC2), Lambda
32463 functions-as-a-service, containers, batch processing, and more.")
32464 (license license:asl2.0)))
32465
32466 (define-public r-paws
32467 (package
32468 (name "r-paws")
32469 (version "0.1.12")
32470 (source
32471 (origin
32472 (method url-fetch)
32473 (uri (cran-uri "paws" version))
32474 (sha256
32475 (base32
32476 "0kn1z045r106fwqcaz52hb02bhrcblh479cajfjiq480s1iljcw6"))))
32477 (properties `((upstream-name . "paws")))
32478 (build-system r-build-system)
32479 (propagated-inputs
32480 (list r-paws-analytics
32481 r-paws-application-integration
32482 r-paws-compute
32483 r-paws-cost-management
32484 r-paws-customer-engagement
32485 r-paws-database
32486 r-paws-developer-tools
32487 r-paws-end-user-computing
32488 r-paws-machine-learning
32489 r-paws-management
32490 r-paws-networking
32491 r-paws-security-identity
32492 r-paws-storage))
32493 (home-page "https://github.com/paws-r/paws")
32494 (synopsis "Amazon Web Services software development kit")
32495 (description
32496 "This package provides an interface to Amazon Web Services, including
32497 storage, database, and compute services, such as Simple Storage Service (S3),
32498 DynamoDB NoSQL database, and Lambda functions-as-a-service.")
32499 (license license:asl2.0)))
32500
32501 (define-public r-zoomgroupstats
32502 (package
32503 (name "r-zoomgroupstats")
32504 (version "0.1.0")
32505 (source
32506 (origin
32507 (method url-fetch)
32508 (uri (cran-uri "zoomGroupStats" version))
32509 (sha256
32510 (base32
32511 "0gndiq92cy6gi7f833hdjvqii3cn83wz5rjvygcvjl3dw4pwv966"))))
32512 (properties
32513 `((upstream-name . "zoomGroupStats")))
32514 (build-system r-build-system)
32515 (propagated-inputs
32516 (list r-data-table
32517 r-dplyr
32518 r-lubridate
32519 r-magick
32520 r-openxlsx
32521 r-paws
32522 r-pbapply
32523 r-stringr
32524 r-syuzhet))
32525 (native-inputs (list r-knitr))
32526 (home-page "http://zoomgroupstats.org")
32527 (synopsis "Analyze text, audio, and video from Zoom meetings")
32528 (description
32529 "This package provides utilities for processing and analyzing the files
32530 that are exported from a recorded Zoom meeting. This includes analyzing data
32531 captured through video cameras and microphones, the text-based chat, and
32532 meta-data. You can analyze aspects of the conversation among meeting
32533 participants and their emotional expressions throughout the meeting.")
32534 (license license:expat)))
32535
32536 (define-public r-zoom
32537 (package
32538 (name "r-zoom")
32539 (version "2.0.4")
32540 (source
32541 (origin
32542 (method url-fetch)
32543 (uri (cran-uri "zoom" version))
32544 (sha256
32545 (base32
32546 "03f5rxfr6ncf1j6vpn7pip21q7ylj4bx0a5xphqb6x6i33lxf1g5"))))
32547 (properties `((upstream-name . "zoom")))
32548 (build-system r-build-system)
32549 (home-page "https://github.com/cbarbu/R-package-zoom")
32550 (synopsis "Spatial data visualization tool")
32551 (description
32552 "This package provides @code{zm}, a utility that allows you to
32553 zoom/navigate any plot when called with any active plot.")
32554 (license license:gpl3+)))
32555
32556 (define-public r-zoolog
32557 (package
32558 (name "r-zoolog")
32559 (version "1.0.1")
32560 (source
32561 (origin
32562 (method url-fetch)
32563 (uri (cran-uri "zoolog" version))
32564 (sha256
32565 (base32
32566 "00fi7czfwr0ll9070w3ijskd0xvilj02gy8wkgqzzrlilij8ah7p"))))
32567 (properties `((upstream-name . "zoolog")))
32568 (build-system r-build-system)
32569 (propagated-inputs
32570 (list r-rdpack r-stringi))
32571 (native-inputs
32572 (list r-knitr))
32573 (home-page "https://josempozo.github.io/zoolog/")
32574 (synopsis "Zooarchaeological analysis with log-ratios")
32575 (description
32576 "This package includes functions and reference data to generate and
32577 manipulate log-ratios (also known as @dfn{log size index} (LSI) values) from
32578 measurements obtained on zooarchaeological material. Log ratios are used to
32579 compare the relative (rather than the absolute) dimensions of animals from
32580 archaeological contexts. The zoolog package is also able to seamlessly
32581 integrate data and references with heterogeneous nomenclature, which is
32582 internally managed by a zoolog thesaurus.")
32583 (license license:gpl3)))
32584
32585 (define-public r-filehash
32586 (package
32587 (name "r-filehash")
32588 (version "2.4-3")
32589 (source
32590 (origin
32591 (method url-fetch)
32592 (uri (cran-uri "filehash" version))
32593 (sha256
32594 (base32
32595 "1ga17smgjd4qsnf5a7qk0giwhpc5969ylqj520favs1k6b4y557k"))))
32596 (properties `((upstream-name . "filehash")))
32597 (build-system r-build-system)
32598 (home-page "http://github.com/rdpeng/filehash")
32599 (synopsis "Simple key-value database")
32600 (description
32601 "This package implements a simple key-value style database where
32602 character string keys are associated with data values that are stored on the
32603 disk. A simple interface is provided for inserting, retrieving, and deleting
32604 data from the database. Utilities are provided that allow filehash databases
32605 to be treated much like environments and lists are already used in R. These
32606 utilities are provided to encourage interactive and exploratory analysis on
32607 large datasets.")
32608 (license license:gpl2+)))
32609
32610 (define-public r-mlearning
32611 (package
32612 (name "r-mlearning")
32613 (version "1.1.1")
32614 (source
32615 (origin
32616 (method url-fetch)
32617 (uri (cran-uri "mlearning" version))
32618 (sha256
32619 (base32
32620 "1zjnh4gcw068li1bks60gazn3205xhmqz67hbkb1san33lmlxya3"))))
32621 (properties `((upstream-name . "mlearning")))
32622 (build-system r-build-system)
32623 (propagated-inputs
32624 (list r-class
32625 r-e1071
32626 r-ipred
32627 r-mass
32628 r-nnet
32629 r-randomforest))
32630 (home-page "http://www.sciviews.org/zooimage")
32631 (synopsis "Machine learning algorithms with unified interface")
32632 (description
32633 "This package provides a unified interface to various machine learning
32634 algorithms. Confusion matrices are provided too.")
32635 (license license:gpl2+)))
32636
32637 (define-public r-zooimage
32638 (package
32639 (name "r-zooimage")
32640 (version "5.5.2")
32641 (source
32642 (origin
32643 (method url-fetch)
32644 (uri (cran-uri "zooimage" version))
32645 (sha256
32646 (base32
32647 "0ck8w0zb9l1n9xvjwqshq9q9l8pigy3yslq2hnfbgcwk17kk9mp8"))))
32648 (properties `((upstream-name . "zooimage")))
32649 (build-system r-build-system)
32650 (propagated-inputs
32651 (list r-digest
32652 r-dt
32653 r-filehash
32654 r-jpeg
32655 r-mass
32656 r-mda
32657 r-mlearning
32658 r-png
32659 r-shiny
32660 r-svdialogs
32661 r-svmisc
32662 r-tiff))
32663 (home-page "http://www.sciviews.org/zooimage")
32664 (synopsis "Analysis of numerical plankton images")
32665 (description
32666 "This package provides a solution for analyzing digital images of
32667 plankton. In combination with ImageJ, an image analysis system, it processes
32668 digital images, measures individuals, trains for automatic classification of
32669 taxa, and finally, measures plankton samples (abundances, total and partial
32670 size spectra or biomasses, etc.).")
32671 (license license:gpl2+)))
32672
32673 (define-public r-zooarch
32674 (package
32675 (name "r-zooarch")
32676 (version "1.2")
32677 (source
32678 (origin
32679 (method url-fetch)
32680 (uri (cran-uri "zooaRch" version))
32681 (sha256
32682 (base32
32683 "0grc378xppv0303sf4flfqz5002vq5a23nzbq4bsff41rww7dihc"))))
32684 (properties `((upstream-name . "zooaRch")))
32685 (build-system r-build-system)
32686 (propagated-inputs (list r-ggplot2))
32687 (native-inputs (list r-knitr))
32688 (home-page
32689 "https://cran.r-project.org/package=zooaRch")
32690 (synopsis
32691 "Analytical Tools for Zooarchaeological Data")
32692 (description
32693 "The analysis and inference of faunal remains recovered from
32694 archaeological sites concerns the field of zooarchaeology. The zooaRch
32695 package provides analytical tools to make inferences on zooarchaeological
32696 data. Functions in this package allow users to read, manipulate, visualize,
32697 and analyze zooarchaeological data.")
32698 (license license:gpl2+)))
32699
32700 (define-public r-zonebuilder
32701 (package
32702 (name "r-zonebuilder")
32703 (version "0.0.2")
32704 (source
32705 (origin
32706 (method url-fetch)
32707 (uri (cran-uri "zonebuilder" version))
32708 (sha256
32709 (base32
32710 "0mxf3dz0d6bi5wwjilqivdxhy5ypnq5svky8zygha0clv45l4dmn"))))
32711 (properties `((upstream-name . "zonebuilder")))
32712 (build-system r-build-system)
32713 (propagated-inputs
32714 (list r-rcolorbrewer r-sf))
32715 (native-inputs
32716 (list r-knitr))
32717 (home-page "https://github.com/zonebuilders/zonebuilder")
32718 (synopsis "Create and explore geographic zoning systems")
32719 (description
32720 "This package provides functions, documentation and example data to help
32721 divide geographic space into discrete polygons (zones). The functions are
32722 motivated by research into the merits of different zoning systems. A flexible
32723 @code{ClockBoard} zoning system is provided, which breaks-up space by
32724 concentric rings and radial lines emanating from a central point.")
32725 (license license:gpl3)))
32726
32727 (define-public r-zonator
32728 (package
32729 (name "r-zonator")
32730 (version "0.6.0")
32731 (source
32732 (origin
32733 (method url-fetch)
32734 (uri (cran-uri "zonator" version))
32735 (sha256
32736 (base32
32737 "1plxchpd4ypp36phl13pi9yvlrqi3lk83lv5rldrhdqynhcgfw2k"))))
32738 (properties `((upstream-name . "zonator")))
32739 (build-system r-build-system)
32740 (propagated-inputs
32741 (list r-ggplot2 r-raster r-rcolorbrewer r-reshape2 r-rgdal))
32742 (native-inputs (list r-knitr))
32743 (home-page "https://cbig.github.io/zonator/")
32744 (synopsis "Utilities for Zonation spatial conservation prioritization")
32745 (description
32746 "Create new analysis setups and deal with results of Zonation
32747 conservation prioritization software.")
32748 (license license:bsd-2)))
32749
32750 (define-public r-mmwrweek
32751 (package
32752 (name "r-mmwrweek")
32753 (version "0.1.3")
32754 (source
32755 (origin
32756 (method url-fetch)
32757 (uri (cran-uri "MMWRweek" version))
32758 (sha256
32759 (base32
32760 "1l1ks44v52iggw9nhs56lfj6804yab5b17k8fzrc6h1kvj3vda0s"))))
32761 (properties `((upstream-name . "MMWRweek")))
32762 (build-system r-build-system)
32763 (home-page "http://wwwn.cdc.gov/nndss/document/MMWR_Week_overview.pdf")
32764 (synopsis "Convert dates to MMWR day, week, and year")
32765 (description
32766 "The first day of any MMWR week is Sunday. MMWR week numbering is
32767 sequential beginning with 1 and incrementing with each week to a maximum of 52
32768 or 53. MMWR week #1 of an MMWR year is the first week of the year that has at
32769 least four days in the calendar year. This package provides functionality to
32770 convert dates to MMWR day, week, and year and the reverse.")
32771 (license license:gpl2+)))
32772
32773 (define-public r-cccd
32774 (package
32775 (name "r-cccd")
32776 (version "1.6")
32777 (source
32778 (origin
32779 (method url-fetch)
32780 (uri (cran-uri "cccd" version))
32781 (sha256
32782 (base32 "0cxh19jqappc6zq9nz3m40ybdmsp12mf7yvflsz96wks3ly2ld4y"))))
32783 (properties `((upstream-name . "cccd")))
32784 (build-system r-build-system)
32785 (propagated-inputs (list r-deldir r-fnn r-igraph r-proxy))
32786 (home-page "https://cran.r-project.org/package=cccd")
32787 (synopsis "Class cover catch digraphs")
32788 (description
32789 "This package provides tools to create Class Cover Catch Digraphs,
32790 neighborhood graphs, and relatives.")
32791 (license license:gpl2+)))
32792
32793 (define-public r-crul
32794 (package
32795 (name "r-crul")
32796 (version "1.2.0")
32797 (source
32798 (origin
32799 (method url-fetch)
32800 (uri (cran-uri "crul" version))
32801 (sha256
32802 (base32
32803 "133g0skz4lifl8hm8pqdryd2m2drbrm6mdfzbbsrw8fg46di86my"))))
32804 (properties `((upstream-name . "crul")))
32805 (build-system r-build-system)
32806 (propagated-inputs
32807 (list r-curl
32808 r-httpcode
32809 r-jsonlite
32810 r-mime
32811 r-r6
32812 r-urltools))
32813 (native-inputs (list r-knitr))
32814 (home-page "https://github.com/ropensci/crul")
32815 (synopsis "HTTP client")
32816 (description
32817 "This package provides a simple HTTP client, with tools for making HTTP
32818 requests, and mocking HTTP requests. The package is built on R6, and takes
32819 inspiration from Ruby's @code{faraday} gem.")
32820 (license license:expat)))
32821
32822 (define-public r-gistr
32823 (package
32824 (name "r-gistr")
32825 (version "0.9.0")
32826 (source
32827 (origin
32828 (method url-fetch)
32829 (uri (cran-uri "gistr" version))
32830 (sha256
32831 (base32
32832 "0ac9ikrdg6i8xvlma0gizvsdva46408lk7hvsgkqirhy2ljy02hp"))))
32833 (properties `((upstream-name . "gistr")))
32834 (build-system r-build-system)
32835 (propagated-inputs
32836 (list r-assertthat
32837 r-crul
32838 r-dplyr
32839 r-httr
32840 r-jsonlite
32841 r-knitr
32842 r-magrittr
32843 r-rmarkdown))
32844 (native-inputs (list r-knitr))
32845 (home-page "https://github.com/ropensci/gistr")
32846 (synopsis "Work with Gists in browser")
32847 (description
32848 "This package allows the user to create new Github gists, update gists
32849 with new files, rename files, delete files, get and delete gists, star and
32850 un-star them, fork them, open a gist in your default browser, get an embed
32851 code for a gist, list gist commits, and get rate limit information when
32852 authenticated.")
32853 (license license:expat)))
32854
32855 (define-public r-rbokeh
32856 (package
32857 (name "r-rbokeh")
32858 (version "0.5.2")
32859 (source
32860 (origin
32861 (method url-fetch)
32862 (uri (cran-uri "rbokeh" version))
32863 (sha256
32864 (base32
32865 "1h2fpzqf17pw9d09r1g1iyxsj5qma4fsk8vnar7f1z4fjyypvi6q"))
32866 (snippet
32867 '(for-each delete-file '("inst/htmlwidgets/lib/bokehjs/bokeh-widgets.min.js"
32868 "inst/htmlwidgets/lib/bokehjs/bokeh.min.js")))))
32869 (properties `((upstream-name . "rbokeh")))
32870 (build-system r-build-system)
32871 (arguments
32872 `(#:phases
32873 (modify-phases %standard-phases
32874 (add-after 'unpack 'process-javascript
32875 (lambda* (#:key inputs #:allow-other-keys)
32876 (with-directory-excursion "inst/htmlwidgets/lib/bokehjs"
32877 (let ((mapping
32878 `((,(assoc-ref inputs "js-bokeh-widgets")
32879 . "bokeh-widgets.min.js")
32880 (,(assoc-ref inputs "js-bokeh")
32881 . "bokeh.min.js"))))
32882 (for-each (lambda (source target)
32883 (format #true "Processing ~a --> ~a~%"
32884 source target)
32885 (invoke "esbuild" source "--minify"
32886 (string-append "--outfile=" target)))
32887 (map car mapping)
32888 (map cdr mapping)))))))))
32889 (propagated-inputs
32890 (list r-digest
32891 r-gistr
32892 r-hexbin
32893 r-htmlwidgets
32894 r-jsonlite
32895 r-lazyeval
32896 r-magrittr
32897 r-maps
32898 r-pryr
32899 r-scales))
32900 ;; Version 0.12.15 is mentioned in lib/htmlwidgets/rbokeh.yaml.
32901 (native-inputs
32902 `(("esbuild" ,esbuild)
32903 ("js-bokeh-widgets"
32904 ,(origin
32905 (method url-fetch)
32906 (uri "https://unpkg.com/bokehjs@0.12.15/build/js/bokeh-widgets.js")
32907 (sha256
32908 (base32
32909 "07v9lrkfcbdznpb10qqwi4m660zp65g85vlnfw7kn83zmkxkhhxy"))))
32910 ("js-bokeh"
32911 ,(origin
32912 (method url-fetch)
32913 (uri "https://unpkg.com/bokehjs@0.12.15/build/js/bokeh.js")
32914 (sha256
32915 (base32
32916 "1pq0059aad7d2jv50nv9449p3w0gbkxkl0mhblc76m5d9qjqav2q"))))
32917 ("r-knitr" ,r-knitr)))
32918 (home-page "https://cran.r-project.org/web/packages/rbokeh/")
32919 (synopsis "R interface for the Bokeh visualization library")
32920 (description
32921 "This package provides a native R plotting library that provides a
32922 flexible declarative interface for creating interactive web-based graphics,
32923 backed by the @url{https://bokeh.pydata.org/, Bokeh visualization library}.")
32924 (license license:expat)))
32925
32926 (define-public r-fauxpas
32927 (package
32928 (name "r-fauxpas")
32929 (version "0.5.0")
32930 (source
32931 (origin
32932 (method url-fetch)
32933 (uri (cran-uri "fauxpas" version))
32934 (sha256
32935 (base32
32936 "129fzqb7wsskbn50s8x0marr4wm8jrns6hiycqcsk166k3dnyyy8"))))
32937 (properties `((upstream-name . "fauxpas")))
32938 (build-system r-build-system)
32939 (propagated-inputs
32940 (list r-httpcode r-r6 r-whisker))
32941 (native-inputs
32942 (list r-knitr))
32943 (home-page "https://docs.ropensci.org/fauxpas")
32944 (synopsis "HTTP error helpers")
32945 (description
32946 "This package provides HTTP error helpers. Methods are included for
32947 general purpose HTTP error handling, as well as individual methods for every
32948 HTTP status code, both via status code numbers as well as their descriptive
32949 names. It supports the ability to adjust behavior to stop, message or
32950 warning. It includes the ability to use a custom whisker template to have any
32951 configuration of status code, short description, and verbose message.")
32952 (license license:expat)))
32953
32954 (define-public r-webmockr
32955 (package
32956 (name "r-webmockr")
32957 (version "0.8.0")
32958 (source
32959 (origin
32960 (method url-fetch)
32961 (uri (cran-uri "webmockr" version))
32962 (sha256
32963 (base32
32964 "0j40srwi0yasmllb9wsww4m6zkiyzqd549cis4dxd7c7p24hak8j"))))
32965 (properties `((upstream-name . "webmockr")))
32966 (build-system r-build-system)
32967 (propagated-inputs
32968 (list r-base64enc
32969 r-crul
32970 r-curl
32971 r-fauxpas
32972 r-jsonlite
32973 r-magrittr
32974 r-r6
32975 r-urltools))
32976 (home-page "https://github.com/ropensci/webmockr")
32977 (synopsis "Stubbing and setting expectations on HTTP Requests")
32978 (description
32979 "This is a package for stubbing and setting expectations on HTTP
32980 requests. It includes tools for stubbing HTTP requests, including expected
32981 request conditions and response conditions. You can match on HTTP method,
32982 query parameters, request body, headers and more. It can be used for unit
32983 tests or outside of a testing context.")
32984 (license license:expat)))
32985
32986 (define-public r-iotools
32987 (package
32988 (name "r-iotools")
32989 (version "0.3-2")
32990 (source
32991 (origin
32992 (method url-fetch)
32993 (uri (cran-uri "iotools" version))
32994 (sha256
32995 (base32 "07q0z0kszm1xx5hfhisfliyrcsxd8dc5mx0a2bwwnv5l1xzmix17"))))
32996 (properties `((upstream-name . "iotools")))
32997 (build-system r-build-system)
32998 (home-page "https://www.rforge.net/iotools")
32999 (synopsis "I/O tools for streaming")
33000 (description "This package provides basic I/O tools for streaming and data
33001 parsing.")
33002 ;; GPL 2 or GPL 3.
33003 (license license:gpl3)))
33004
33005 (define-public r-wordspace
33006 (package
33007 (name "r-wordspace")
33008 (version "0.2-7")
33009 (source
33010 (origin
33011 (method url-fetch)
33012 (uri (cran-uri "wordspace" version))
33013 (sha256
33014 (base32 "0hrjv5mag7gwl4wj7np248sdyns5i623wl37b11hlgalhbmlypyf"))))
33015 (properties `((upstream-name . "wordspace")))
33016 (build-system r-build-system)
33017 (propagated-inputs
33018 (list r-cluster r-iotools r-mass r-matrix r-rcpp r-sparsesvd))
33019 (native-inputs (list r-knitr))
33020 (home-page "https://wordspace.r-forge.r-project.org/")
33021 (synopsis "Distributional semantic models in R")
33022 (description
33023 "The wordspace package turns R into an interactive laboratory for
33024 empirical research on @dfn{distributional semantic models} (DSM). It consists
33025 of a small set of carefully designed functions, most of which
33026
33027 @itemize
33028 @item encapsulate non-trivial R operations in a user-friendly manner or
33029 @item provide efficient and memory-lean C implementations of key operations.
33030 @end itemize
33031 ")
33032 (license license:gpl3)))
33033
33034 (define-public r-maxlik
33035 (package
33036 (name "r-maxlik")
33037 (version "1.5-2")
33038 (source
33039 (origin
33040 (method url-fetch)
33041 (uri (cran-uri "maxLik" version))
33042 (sha256
33043 (base32 "0pdigfpyiqacj2ydhpn5w1h89dz1ydk0syzs25lsgdi40sz0bvkw"))))
33044 (properties `((upstream-name . "maxLik")))
33045 (build-system r-build-system)
33046 (propagated-inputs (list r-generics r-misctools r-sandwich))
33047 (home-page "https://cran.r-project.org/package=maxLik")
33048 (synopsis "Maximum Likelihood Estimation and related tools")
33049 (description
33050 "This package provides functions for @dfn{Maximum Likelihood} (ML) estimation,
33051 non-linear optimization, and related tools. It includes a unified way to call
33052 different optimizers, and classes and methods to handle the results from the
33053 Maximum Likelihood viewpoint. It also includes a number of convenience tools
33054 for testing and developing your own models.")
33055 (license license:gpl2+)))
33056
33057 (define-public r-misctools
33058 (package
33059 (name "r-misctools")
33060 (version "0.6-26")
33061 (source
33062 (origin
33063 (method url-fetch)
33064 (uri (cran-uri "miscTools" version))
33065 (sha256
33066 (base32 "16pwfxpyl0zv3hjxx2kjchkg7p6kbj0s2rrpskj7rkhjr9imlg5y"))))
33067 (properties `((upstream-name . "miscTools")))
33068 (build-system r-build-system)
33069 (propagated-inputs (list r-digest))
33070 (home-page "http://www.micEcon.org")
33071 (synopsis "Miscellaneous tools and utilities")
33072 (description
33073 "This package provides miscellaneous small tools and utilities. Many of
33074 them facilitate the work with matrices, e.g. inserting rows or columns,
33075 creating symmetric matrices, or checking for semidefiniteness. Other tools
33076 facilitate the work with regression models, e.g. extracting the standard
33077 errors, obtaining the number of (estimated) parameters, or calculating
33078 R-squared values.")
33079 (license license:gpl2+)))
33080
33081 (define-public r-mockery
33082 (package
33083 (name "r-mockery")
33084 (version "0.4.3")
33085 (source
33086 (origin
33087 (method url-fetch)
33088 (uri (cran-uri "mockery" version))
33089 (sha256
33090 (base32
33091 "0sj77m9vgn4bzb8c8nq93xb9lm8ih8rcb7sfccripraibibg3jcz"))))
33092 (properties `((upstream-name . "mockery")))
33093 (build-system r-build-system)
33094 (propagated-inputs
33095 (list r-testthat))
33096 (native-inputs
33097 (list r-knitr))
33098 (home-page "https://github.com/jfiksel/mockery")
33099 (synopsis "Mocking library for R")
33100 (description
33101 "The two main functionalities of this package are creating mock
33102 objects (functions) and selectively intercepting calls to a given function
33103 that originate in some other function. It can be used with any testing
33104 framework available for R. Mock objects can be injected with either this
33105 package's own @code{stub} function or a similar @code{with_mock} facility
33106 present in the @code{testthat} package.")
33107 (license license:expat)))
33108
33109 (define-public r-zoltr
33110 (package
33111 (name "r-zoltr")
33112 (version "0.5.1")
33113 (source
33114 (origin
33115 (method url-fetch)
33116 (uri (cran-uri "zoltr" version))
33117 (sha256
33118 (base32
33119 "12zh7y3pwidclscgvd0b0iaqq9j5y8mc8xd6pz4vs0jy5qs3ahar"))))
33120 (properties `((upstream-name . "zoltr")))
33121 (build-system r-build-system)
33122 (propagated-inputs
33123 (list r-base64url
33124 r-dplyr
33125 r-httr
33126 r-jsonlite
33127 r-magrittr
33128 r-mmwrweek
33129 r-mockery
33130 r-readr
33131 r-rlang
33132 r-webmockr))
33133 (native-inputs (list r-knitr))
33134 (home-page "https://github.com/reichlab/zoltr")
33135 (synopsis "Interface to the Zoltar forecast repository API")
33136 (description
33137 "Zoltar is a website that provides a repository of model forecast results
33138 in a standardized format and a central location. It supports storing,
33139 retrieving, comparing, and analyzing time series forecasts for prediction
33140 challenges of interest to the modeling community. This package provides
33141 functions for working with the Zoltar API, including connecting and
33142 authenticating, getting information about projects, models, and forecasts,
33143 deleting and uploading forecast data, and downloading scores.")
33144 (license license:gpl3)))
33145
33146 (define-public r-zoib
33147 (package
33148 (name "r-zoib")
33149 (version "1.5.5")
33150 (source
33151 (origin
33152 (method url-fetch)
33153 (uri (cran-uri "zoib" version))
33154 (sha256
33155 (base32
33156 "0inm7f2pc68ksqxvq12xp9jc99vj7ydylvs24ip12nksbj5k1n8f"))))
33157 (properties `((upstream-name . "zoib")))
33158 (build-system r-build-system)
33159 (propagated-inputs
33160 (list r-abind r-coda r-formula r-rjags))
33161 (home-page "https://www.r-project.org")
33162 (synopsis "Bayesian inference for beta regression")
33163 (description
33164 "This package lets you fit beta regression and zero-or-one inflated beta
33165 regression and obtain Bayesian inference of the model via the Markov Chain
33166 Monte Carlo approach implemented in JAGS.")
33167 (license license:gpl3+)))
33168
33169 (define-public r-logger
33170 (package
33171 (name "r-logger")
33172 (version "0.2.2")
33173 (source
33174 (origin
33175 (method url-fetch)
33176 (uri (cran-uri "logger" version))
33177 (sha256
33178 (base32 "08kym5i5fvbf5xhh9qdszp4jdgyc7j7zpnwzy68wabqz73aff6sg"))))
33179 (properties `((upstream-name . "logger")))
33180 (build-system r-build-system)
33181 (native-inputs (list r-knitr))
33182 (home-page "https://daroczig.github.io/logger/")
33183 (synopsis "Lightweight and flexible logging utility")
33184 (description
33185 "Inspired by the the @code{futile.logger} R package and @code{logging}
33186 Python module, this utility provides a flexible and extensible way of
33187 formatting and delivering log messages with low overhead.")
33188 (license license:agpl3+)))
33189
33190 (define-public r-fasterize
33191 (package
33192 (name "r-fasterize")
33193 (version "1.0.3")
33194 (source
33195 (origin
33196 (method url-fetch)
33197 (uri (cran-uri "fasterize" version))
33198 (sha256
33199 (base32 "10bzl77c1b9jhcn1xp467qzp2n8c7s3wpxn53qjh1nwvbri5kd32"))))
33200 (properties `((upstream-name . "fasterize")))
33201 (build-system r-build-system)
33202 (propagated-inputs
33203 (list r-raster r-rcpp r-rcpparmadillo r-sp))
33204 (native-inputs (list r-knitr))
33205 (home-page "https://github.com/ecohealthalliance/fasterize")
33206 (synopsis "Fast Polygon to Raster Conversion")
33207 (description
33208 "This package provides a drop-in replacement for @code{rasterize} from
33209 the @code{raster} package that takes sf-type objects, and is much faster.
33210 There is support for the main options provided by the @code{rasterize}
33211 function, including setting the field used and background value, and
33212 options for aggregating multi-layer rasters.")
33213 (license license:expat)))
33214
33215 (define-public r-bien
33216 (package
33217 (name "r-bien")
33218 (version "1.2.5")
33219 (source
33220 (origin
33221 (method url-fetch)
33222 (uri (cran-uri "BIEN" version))
33223 (sha256
33224 (base32 "0s98n6zbf48vssd3h63k6kashcxv1kawcb026n0ngsfpc5dv6i48"))))
33225 (properties `((upstream-name . "BIEN")))
33226 (build-system r-build-system)
33227 (native-inputs
33228 (list r-knitr))
33229 (propagated-inputs
33230 (list r-ape
33231 r-dbi
33232 r-doparallel
33233 r-fasterize
33234 r-foreach
33235 r-raster
33236 r-rgdal
33237 r-rgeos
33238 r-rpostgresql
33239 r-sf
33240 r-sp))
33241 (home-page "https://cran.r-project.org/package=BIEN")
33242 (synopsis "Tools for accessing the BIEN database")
33243 (description
33244 "This package provides tools for accessing the Botanical Information and
33245 Ecology Network (BIEN) database. The BIEN database contains cleaned and
33246 standardized botanical data including occurrence, trait, plot and taxonomic
33247 data. This package provides functions that query the BIEN database by
33248 constructing and executing optimized SQL queries.")
33249 (license license:expat)))
33250
33251 (define-public r-varhandle
33252 (package
33253 (name "r-varhandle")
33254 (version "2.0.5")
33255 (source
33256 (origin
33257 (method url-fetch)
33258 (uri (cran-uri "varhandle" version))
33259 (sha256
33260 (base32 "1l42d0s6fbjjc9l28a2m3myxkrx2c0p0b9yj8wjjjgilw19yc3lv"))))
33261 (properties `((upstream-name . "varhandle")))
33262 (build-system r-build-system)
33263 (home-page "https://bitbucket.org/mehrad_mahmoudian/varhandle")
33264 (synopsis "Functions for robust variable handling")
33265 (description
33266 "This package contains some functions to help users (especially data
33267 explorers) to make more sense of their variables and take the most out of
33268 variables and hardware resources. Functions in this package are supposed to
33269 be efficient and easy to use.")
33270 (license license:gpl2+)))
33271
33272 (define-public r-ggh4x
33273 (package
33274 (name "r-ggh4x")
33275 (version "0.2.1")
33276 (source
33277 (origin
33278 (method url-fetch)
33279 (uri (cran-uri "ggh4x" version))
33280 (sha256
33281 (base32
33282 "1r49yfm5fqv5s7jb92ad6rf8hd9plcry6f500czjhnhhrp16cqfp"))))
33283 (properties `((upstream-name . "ggh4x")))
33284 (build-system r-build-system)
33285 (propagated-inputs
33286 (list r-ggplot2 r-gtable r-rlang r-scales r-vctrs))
33287 (native-inputs
33288 (list r-knitr))
33289 (home-page "https://github.com/teunbrand/ggh4x")
33290 (synopsis "Extension for ggplot2")
33291 (description "This package is a @code{ggplot2} extension. It provides some
33292 utility functions that do not entirely fit within the grammar of graphics
33293 concept. The package extends @code{ggpplots} facets through customisation, by
33294 setting individual scales per panel, resizing panels and providing nested
33295 facets. It also allows multiple colour, fill scales per plot and hosts a
33296 smaller collection of stats, geoms and axis guides.")
33297 (license license:expat)))
33298
33299 (define-public r-zoeppritz
33300 (package
33301 (name "r-zoeppritz")
33302 (version "1.0-8")
33303 (source (origin
33304 (method url-fetch)
33305 (uri (cran-uri "zoeppritz" version))
33306 (sha256
33307 (base32
33308 "1711szx9zz17q6pfinyzlyrw7m9772c8ywlixqar2l165bkjalgm"))))
33309 (properties `((upstream-name . "zoeppritz")))
33310 (build-system r-build-system)
33311 (home-page "https://cran.r-project.org/package=zoeppritz")
33312 (synopsis "Seismic reflection and scattering coefficients for waves")
33313 (description
33314 "The @code{r-zoeppritz} package calculates and plots scattering matrix
33315 coefficients or scattering amplitudes, for seismological P and S-waves at an
33316 interface.")
33317 (license license:gpl2+)))