gnu: r-mlr3learners: Update to 0.5.3.
[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-emdist
351 (package
352 (name "r-emdist")
353 (version "0.3-2")
354 (source
355 (origin
356 (method url-fetch)
357 (uri (cran-uri "emdist" version))
358 (sha256
359 (base32
360 "05mv6xhm15b0mq9kzyiblkb14bdqmjrwl64ghdk66il0w8i7p6nh"))))
361 (properties `((upstream-name . "emdist")))
362 (build-system r-build-system)
363 (home-page "http://www.rforge.net/emd")
364 (synopsis "Earth mover's distance")
365 (description
366 "This package provides tools to calculate the Earth Mover's
367 Distance (EMD).")
368 (license license:expat)))
369
370 (define-public r-googledrive
371 (package
372 (name "r-googledrive")
373 (version "2.0.0")
374 (source
375 (origin
376 (method url-fetch)
377 (uri (cran-uri "googledrive" version))
378 (sha256
379 (base32
380 "09jsiknzyfgxd0nzdr3wrrjw24allch2x74h96qg8vh8dad4cp30"))))
381 (properties `((upstream-name . "googledrive")))
382 (build-system r-build-system)
383 (propagated-inputs
384 (list r-cli
385 r-gargle
386 r-glue
387 r-httr
388 r-jsonlite
389 r-lifecycle
390 r-magrittr
391 r-pillar
392 r-purrr
393 r-rlang
394 r-tibble
395 r-uuid
396 r-vctrs
397 r-withr))
398 (native-inputs
399 (list r-knitr))
400 (home-page "https://googledrive.tidyverse.org")
401 (synopsis "Interface to Google Drive")
402 (description "This package lets you manage Google Drive files from R.")
403 (license license:expat)))
404
405 (define-public r-guix-install
406 (package
407 (name "r-guix-install")
408 (version "1.0.0")
409 (source
410 (origin
411 (method url-fetch)
412 (uri (cran-uri "guix.install" version))
413 (sha256
414 (base32 "0s3wb5781yc43c9zwrn7i87zcbrlx7xr0ms0v9hvgs7qsv02id9j"))))
415 (properties `((upstream-name . "guix.install")))
416 (build-system r-build-system)
417 (propagated-inputs (list r-runit))
418 (home-page "https://github.com/BIMSBbioinfo/guix.install")
419 (synopsis "Install R packages with GNU Guix")
420 (description
421 "This R package provides a single procedure @code{guix.install()}, which
422 allows users to install R packages via Guix right from within their running R
423 session. If the requested R package does not exist in Guix at this time, the
424 package and all its missing dependencies will be imported recursively and the
425 generated package definitions will be written to @file{~/.Rguix/packages.scm}.
426 This record of imported packages can be used later to reproduce the
427 environment, and to add the packages in question to a proper Guix channel (or
428 Guix itself). @code{guix.install()} not only supports installing packages
429 from CRAN, but also from Bioconductor or even arbitrary git or mercurial
430 repositories, replacing the need for installation via @code{devtools}.")
431 (license license:gpl3+)))
432
433 (define-public r-ids
434 (package
435 (name "r-ids")
436 (version "1.0.1")
437 (source
438 (origin
439 (method url-fetch)
440 (uri (cran-uri "ids" version))
441 (sha256
442 (base32
443 "1s6ga94gds5ydr9f8qbjfgfpg2dvbnkcrlybqlb33hk3c0c2l8dn"))))
444 (properties `((upstream-name . "ids")))
445 (build-system r-build-system)
446 (propagated-inputs
447 (list r-openssl r-uuid))
448 (native-inputs (list r-knitr))
449 (home-page "https://github.com/richfitz/ids")
450 (synopsis "Generate random identifiers")
451 (description
452 "This package lets you generate random or human readable and
453 pronounceable identifiers.")
454 (license license:expat)))
455
456 (define-public r-googlesheets4
457 (package
458 (name "r-googlesheets4")
459 (version "1.0.0")
460 (source
461 (origin
462 (method url-fetch)
463 (uri (cran-uri "googlesheets4" version))
464 (sha256
465 (base32
466 "0yncqwv9l5knyrv88ys5gwcv44hl1j0mbklpins6v7f9m9v7s40a"))))
467 (properties `((upstream-name . "googlesheets4")))
468 (build-system r-build-system)
469 (propagated-inputs
470 (list r-cellranger
471 r-cli
472 r-curl
473 r-gargle
474 r-glue
475 r-googledrive
476 r-httr
477 r-ids
478 r-magrittr
479 r-purrr
480 r-rematch2
481 r-rlang
482 r-tibble
483 r-vctrs))
484 (home-page "https://github.com/tidyverse/googlesheets4")
485 (synopsis "Access Google Sheets using the Sheets API V4")
486 (description
487 "This package lets you interact with Google Sheets through the
488 @url{https://developers.google.com/sheets/api,Sheets API v4}. This package
489 can read and write both the metadata and the cell data in a Sheet.")
490 (license license:expat)))
491
492 (define-public r-waldo
493 (package
494 (name "r-waldo")
495 (version "0.4.0")
496 (source
497 (origin
498 (method url-fetch)
499 (uri (cran-uri "waldo" version))
500 (sha256
501 (base32
502 "1aky28rn70l24s0sygl36267cf7hjzhchagsz26abfxwr7p8kvjp"))))
503 (properties `((upstream-name . "waldo")))
504 (build-system r-build-system)
505 (propagated-inputs
506 (list r-cli
507 r-diffobj
508 r-fansi
509 r-glue
510 r-rematch2
511 r-rlang
512 r-tibble))
513 (home-page "https://github.com/r-lib/waldo")
514 (synopsis "Find differences between R objects")
515 (description
516 "Compare complex R objects and reveal the key differences. This package
517 was designed particularly for use in testing packages where being able to
518 quickly isolate key differences makes understanding test failures much
519 easier.")
520 (license license:expat)))
521
522 (define-public r-rticles
523 (package
524 (name "r-rticles")
525 (version "0.23")
526 (source
527 (origin
528 (method url-fetch)
529 (uri (cran-uri "rticles" version))
530 (sha256
531 (base32
532 "1ipblw3rmkma22jl2hf1pyfm6l8k31zcmm3swmwii6k0x7khiav1"))))
533 (properties `((upstream-name . "rticles")))
534 (build-system r-build-system)
535 (propagated-inputs
536 (list r-knitr r-rmarkdown r-tinytex r-xfun r-yaml))
537 (home-page "https://github.com/rstudio/rticles")
538 (synopsis "Article formats for R Markdown")
539 (description
540 "This package provides a suite of custom R Markdown formats and templates
541 for authoring journal articles and conference submissions.")
542 (license license:gpl3)))
543
544 (define-public r-babelwhale
545 (package
546 (name "r-babelwhale")
547 (version "1.0.3")
548 (source
549 (origin
550 (method url-fetch)
551 (uri (cran-uri "babelwhale" version))
552 (sha256
553 (base32 "0ph825dwvr48fhamy1l5564linz7cj7b9sj511as77f1yqycv4a2"))))
554 (properties `((upstream-name . "babelwhale")))
555 (build-system r-build-system)
556 (propagated-inputs
557 (list r-crayon r-dplyr r-dynutils r-processx r-purrr))
558 (home-page "https://github.com/dynverse/babelwhale")
559 (synopsis "Talking to Docker and Singularity containers")
560 (description
561 "This package provides a unified interface to interact with Docker and
562 Singularity containers. You can execute a command inside a container, mount a
563 volume or copy a file.")
564 (license license:expat)))
565
566 (define-public r-benchmarkmedata
567 (package
568 (name "r-benchmarkmedata")
569 (version "1.0.4")
570 (source (origin
571 (method url-fetch)
572 (uri (cran-uri "benchmarkmeData" version))
573 (sha256
574 (base32
575 "1n4vjkagqlm6kw2hilf4gjfcdjad0bcg652j9nl2ygbq3kdnh1vf"))))
576 (build-system r-build-system)
577 (propagated-inputs
578 (list r-dplyr r-tibble))
579 (home-page "https://github.com/csgillespie/benchmarkme-data")
580 (synopsis "Data set for the @code{benchmarkme} package")
581 (description "This package contains the data set for the crowd-sourced
582 benchmarks from running the @code{benchmarkme} package.")
583 (license license:gpl2+)))
584
585 (define-public r-benchmarkme
586 (package
587 (name "r-benchmarkme")
588 (version "1.0.7")
589 (source (origin
590 (method url-fetch)
591 (uri (cran-uri "benchmarkme" version))
592 (sha256
593 (base32
594 "0ymgsxzrvnpyvs0cff09d3lrkl12qyqx5bwammsc4vgl5ng9p69p"))))
595 (build-system r-build-system)
596 (native-inputs
597 (list r-knitr))
598 (propagated-inputs
599 (list r-benchmarkmedata
600 r-doparallel
601 r-dplyr
602 r-foreach
603 r-httr
604 r-matrix
605 r-tibble))
606 (home-page "https://csgillespie.github.io/benchmarkme/")
607 (synopsis "Crowd-sourced system benchmarks")
608 (description "This package provides functionality to benchmark your CPU
609 and compare against other CPUs. Also provides functions for obtaining system
610 specifications, such as RAM, CPU type, and R version.")
611 (license license:gpl2+)))
612
613 (define-public r-bezier
614 (package
615 (name "r-bezier")
616 (version "1.1.2")
617 (source (origin
618 (method url-fetch)
619 (uri (cran-uri "bezier" version))
620 (sha256
621 (base32
622 "1vw5128v8h973xwa1fdm9cw2jvrldj87nd55lddlp3qsz3ag4br6"))))
623 (build-system r-build-system)
624 (home-page "https://cran.r-project.org/web/packages/bezier/")
625 (synopsis "Bezier curve and spline toolkit")
626 (description
627 "This package is a toolkit for working with Bezier curves and splines.
628 The package provides functions for point generation, arc length estimation,
629 degree elevation and curve fitting.")
630 (license license:gpl2+)))
631
632 (define-public r-bwstest
633 (package
634 (name "r-bwstest")
635 (version "0.2.2")
636 (source
637 (origin
638 (method url-fetch)
639 (uri (cran-uri "BWStest" version))
640 (sha256
641 (base32 "02amzlfprmw5pyis0dg0kg0x8xqh50a4vfdcxxmklrzik3b1vzzs"))))
642 (properties `((upstream-name . "BWStest")))
643 (build-system r-build-system)
644 (propagated-inputs (list r-memoise r-rcpp))
645 (home-page "https://github.com/shabbychef/BWStest")
646 (synopsis "Baumgartner Weiss Schindler Test of equal distributions")
647 (description
648 "This package performs the Baumgartner-Weiss-Schindler two-sample test of
649 equal probability distributions (doi:10.2307/2533862). It also performs
650 similar rank-based tests for equal probability distributions due to Neuhauser
651 (doi:10.1080/10485250108832874) and Murakami
652 (doi:10.1080/00949655.2010.551516).")
653 (license license:lgpl3)))
654
655 (define-public r-v8
656 (package
657 (name "r-v8")
658 (version "4.2.0")
659 (source
660 (origin
661 (method url-fetch)
662 (uri (cran-uri "V8" version))
663 (sha256
664 (base32
665 "0hs7ajjw6y3q7mp7z00a9712y4cn6wgcnk5dbjbzlc6cfk4zsqkc"))))
666 (properties `((upstream-name . "V8")))
667 (build-system r-build-system)
668 (arguments
669 `(#:phases
670 (modify-phases %standard-phases
671 (add-after 'unpack 'find-v8
672 (lambda* (#:key inputs #:allow-other-keys)
673 (substitute* "configure"
674 (("^PKG_LIBS=.*")
675 (string-append "PKG_LIBS="
676 (assoc-ref inputs "libnode")
677 "/lib/libnode.so.64\n")))
678 (setenv "INCLUDE_DIR"
679 (string-append
680 (assoc-ref inputs "libnode")
681 "/include/node"))
682 (setenv "LIB_DIR"
683 (string-append
684 (assoc-ref inputs "libnode") "/lib")))))))
685 (inputs
686 (list libnode zlib))
687 (propagated-inputs
688 (list r-curl r-jsonlite r-rcpp))
689 (native-inputs
690 (list r-knitr))
691 (home-page "https://jeroen.cran.dev/V8")
692 (synopsis "Embedded JavaScript and WebAssembly engine for R")
693 (description
694 "This package provides an R interface to V8: Google's JavaScript and
695 WebAssembly engine.")
696 (license license:expat)))
697
698 (define-public r-dot
699 (package
700 (name "r-dot")
701 (version "0.1")
702 (source
703 (origin
704 (method url-fetch)
705 (uri (cran-uri "DOT" version))
706 (sha256
707 (base32
708 "0qh5n57cp9c2n5yn59q4wggz82943pwfanp3kx869aba2x3sj30i"))))
709 (properties `((upstream-name . "DOT")))
710 (build-system r-build-system)
711 (propagated-inputs
712 (list r-v8))
713 (home-page "http://haghish.com/dot")
714 (synopsis "Render and Export DOT Graphs in R")
715 (description
716 "This package provides tools to render DOT diagram markup language in R
717 and also provides the possibility to export the graphs in PostScript and
718 SVG (Scalable Vector Graphics) formats. In addition, it supports literate
719 programming packages such as @code{knitr} and @code{rmarkdown}.")
720 (license license:expat)))
721
722 (define-public r-carrier
723 (package
724 (name "r-carrier")
725 (version "0.1.0")
726 (source
727 (origin
728 (method url-fetch)
729 (uri (cran-uri "carrier" version))
730 (sha256
731 (base32 "0bqnwnnjqjk9q0lxq6kkz9s75ss10lfyyywyyi24m8wppxpw1vqc"))))
732 (properties `((upstream-name . "carrier")))
733 (build-system r-build-system)
734 (propagated-inputs
735 (list r-pryr r-rlang))
736 (home-page "https://github.com/r-lib/carrier")
737 (synopsis "Isolate functions for remote execution")
738 (description
739 "Sending functions to remote processes can be wasteful of resources
740 because they carry their environments with them. With this package, it is
741 easy to create functions that are isolated from their environment. These
742 isolated functions, also called crates, print to the console with their total
743 size and can be easily tested locally before being sent to a remote.")
744 (license license:gpl3)))
745
746 (define-public r-clipr
747 (package
748 (name "r-clipr")
749 (version "0.8.0")
750 (source
751 (origin
752 (method url-fetch)
753 (uri (cran-uri "clipr" version))
754 (sha256
755 (base32
756 "1s9vvv3cxnz8w11gsi8z9ddv9jzib5qf5qqxnwqrrv7vj8cr7hij"))))
757 (build-system r-build-system)
758 (native-inputs
759 (list r-knitr))
760 (home-page "https://github.com/mdlincoln/clipr")
761 (synopsis "Read and write from the system clipboard")
762 (description
763 "This package provides simple utility functions to read from and write to
764 the system clipboards.")
765 (license license:gpl3)))
766
767 (define-public r-dlm
768 (package
769 (name "r-dlm")
770 (version "1.1-5")
771 (source
772 (origin
773 (method url-fetch)
774 (uri (cran-uri "dlm" version))
775 (sha256
776 (base32 "1aksm66sfa7ipl5xgs4j5giac7q2m744wjl40mva56xn6i674h4r"))))
777 (properties `((upstream-name . "dlm")))
778 (build-system r-build-system)
779 (home-page "https://cran.r-project.org/package=dlm")
780 (synopsis "Bayesian and Likelihood Analysis of Dynamic Linear Models")
781 (description
782 "This package provides routines for Maximum likelihood, Kalman filtering
783 and smoothing, and Bayesian analysis of Normal linear State Space models, also
784 known as Dynamic Linear Models.")
785 (license license:gpl2+)))
786
787 (define-public r-zoo
788 (package
789 (name "r-zoo")
790 (version "1.8-10")
791 (source (origin
792 (method url-fetch)
793 (uri (cran-uri "zoo" version))
794 (sha256
795 (base32
796 "0izd66dywq6qd62hdp64apncainrrb9mgmm19wf6a8jc03c858n9"))))
797 (build-system r-build-system)
798 (propagated-inputs
799 (list r-lattice))
800 (home-page "http://zoo.R-Forge.R-project.org/")
801 (synopsis "S3 infrastructure for regular and irregular time series")
802 (description "This package contains an S3 class with methods for totally
803 ordered indexed observations. It is particularly aimed at irregular time
804 series of numeric vectors/matrices and factors.")
805 (license license:gpl2+)))
806
807 (define-public r-fontawesome
808 (package
809 (name "r-fontawesome")
810 (version "0.2.2")
811 (source
812 (origin
813 (method url-fetch)
814 (uri (cran-uri "fontawesome" version))
815 (sha256
816 (base32 "0r6zb5175cr4ybqj6bl0mbhadwv9xjxaf32yjc0y76rw3d6vcbap"))))
817 (properties `((upstream-name . "fontawesome")))
818 (build-system r-build-system)
819 (propagated-inputs
820 (list r-htmltools r-rlang))
821 (home-page "https://github.com/rstudio/fontawesome")
822 (synopsis "Easily work with Font Awesome icons")
823 (description
824 "Easily and flexibly insert Font Awesome icons into R Markdown documents
825 and Shiny apps. These icons can be inserted into HTML content through inline
826 SVG tags or @code{i} tags. There is also a utility function for exporting
827 Font Awesome icons as PNG images for those situations where raster graphics
828 are needed.")
829 (license license:expat)))
830
831 (define-public r-fingerprint
832 (package
833 (name "r-fingerprint")
834 (version "3.5.7")
835 (source
836 (origin
837 (method url-fetch)
838 (uri (cran-uri "fingerprint" version))
839 (sha256
840 (base32 "04jcwkydjrs31pia6kq8z2n9s54im950q08hs2ay15xjxxkmb8ic"))))
841 (properties `((upstream-name . "fingerprint")))
842 (build-system r-build-system)
843 (home-page "https://cran.r-project.org/package=fingerprint")
844 (synopsis "Functions to Operate on Binary Fingerprint Data")
845 (description
846 "This package provides functions to manipulate binary fingerprints of
847 arbitrary length. A fingerprint is represented by an object of S4 class
848 @code{fingerprint}. The bitwise logical functions in R are overridden so that
849 they can be used directly with @code{fingerprint} objects. A number of
850 distance metrics are also available. Fingerprints can be converted to
851 Euclidean vectors (i.e., points on the unit hypersphere) and can also be
852 folded. Arbitrary fingerprint formats can be handled via line handlers.
853 Currently handlers are provided for CDK, MOE and BCI fingerprint data.")
854 ;; Any version of the GPL
855 (license (list license:gpl2+ license:gpl3+))))
856
857 (define-public r-fpeek
858 (package
859 (name "r-fpeek")
860 (version "0.1.2")
861 (source
862 (origin
863 (method url-fetch)
864 (uri (cran-uri "fpeek" version))
865 (sha256
866 (base32 "0kv46g21ndxchg3q8ynq7hjjkh6i2zlc21axn5y1jjzigrw047ii"))))
867 (properties `((upstream-name . "fpeek")))
868 (build-system r-build-system)
869 (propagated-inputs (list r-rcpp))
870 (home-page "https://github.com/davidgohel/fpeek")
871 (synopsis "Check text files content at a glance")
872 (description
873 "This package provides tools to help working with text files. It can
874 return the number of lines; print the first and last lines; convert encoding.
875 Operations are made without reading the entire file before starting, resulting
876 in good performances with large files.")
877 (license license:expat)))
878
879 (define-public r-ggalluvial
880 (package
881 (name "r-ggalluvial")
882 (version "0.12.3")
883 (source (origin
884 (method url-fetch)
885 (uri (cran-uri "ggalluvial" version))
886 (sha256
887 (base32
888 "0mkan9gxg3yxjism22yxbhvlh2lh7wpbrqpb355za790prcmjbh3"))))
889 (properties `((upstream-name . "ggalluvial")))
890 (build-system r-build-system)
891 (propagated-inputs
892 (list r-dplyr
893 r-ggplot2
894 r-lazyeval
895 r-rlang
896 r-tidyr
897 r-tidyselect))
898 (native-inputs
899 (list r-knitr))
900 (home-page "http://corybrunson.github.io/ggalluvial/")
901 (synopsis "Alluvial plots for ggplot2")
902 (description "This package provides alluvial plots for @code{ggplot2}.
903 Alluvial plots use variable-width ribbons and stacked bar plots to represent
904 multi-dimensional or repeated-measures data with categorical or ordinal
905 variables.")
906 (license license:gpl3)))
907
908 (define-public r-ggpp
909 (package
910 (name "r-ggpp")
911 (version "0.4.4")
912 (source
913 (origin
914 (method url-fetch)
915 (uri (cran-uri "ggpp" version))
916 (sha256
917 (base32
918 "0wcaczxjav5yg8h2197cf288mqk13p3iq675q0x0di9g8lnblvk1"))))
919 (properties `((upstream-name . "ggpp")))
920 (build-system r-build-system)
921 (propagated-inputs
922 (list r-dplyr
923 r-ggplot2
924 r-glue
925 r-gridextra
926 r-lubridate
927 r-magrittr
928 r-mass
929 r-polynom
930 r-rlang
931 r-scales
932 r-stringr
933 r-tibble
934 r-xts
935 r-zoo))
936 (native-inputs
937 (list r-knitr))
938 (home-page "https://docs.r4photobiology.info/ggpp/")
939 (synopsis "Grammar extensions to ggplot2")
940 (description
941 "This package contains extensions to ggplot2.
942
943 @enumerate
944 @item Geomas: @code{geom_table}, @code{geom_plot} and @code{geom_grob} add
945 insets to plots using native data coordinates, while @code{geom_table_npc},
946 @code{geom_plot_npc} and @code{geom_grob_npc} do the same using @code{npc}
947 coordinates through new aesthetics @code{npcx} and @code{npcy}.
948 @item Statistics: select observations based on 2D density.
949 @item Positions: radial nudging away from a center point and nudging away from
950 a line or curve.
951 @end enumerate
952 ")
953 (license license:gpl2+)))
954
955 (define-public r-lmds
956 (package
957 (name "r-lmds")
958 (version "0.1.0")
959 (source
960 (origin
961 (method url-fetch)
962 (uri (cran-uri "lmds" version))
963 (sha256
964 (base32 "130azb0nc2wwxv0qi8v5s4rd02p9lc92zwn634pv7b8awbw81i65"))))
965 (properties `((upstream-name . "lmds")))
966 (build-system r-build-system)
967 (propagated-inputs
968 (list r-assertthat r-dynutils r-irlba r-matrix))
969 (home-page "https://github.com/dynverse/lmds")
970 (synopsis "Landmark multi-dimensional scaling")
971 (description
972 "This package provides a fast dimensionality reduction method scalable
973 to large numbers of samples. @dfn{Landmark Multi-Dimensional Scaling} (LMDS)
974 is an extension of classical Torgerson MDS, but rather than calculating a
975 complete distance matrix between all pairs of samples, only the distances
976 between a set of landmarks and the samples are calculated.")
977 (license license:gpl3)))
978
979 (define-public r-lmodel2
980 (package
981 (name "r-lmodel2")
982 (version "1.7-3")
983 (source
984 (origin
985 (method url-fetch)
986 (uri (cran-uri "lmodel2" version))
987 (sha256
988 (base32 "1fiin2nkffbihz1s8ixmw9lgf8mn3j9krr8iiflizk10mdv54hnb"))))
989 (properties `((upstream-name . "lmodel2")))
990 (build-system r-build-system)
991 (home-page "https://cran.r-project.org/package=lmodel2")
992 (synopsis "Model II regression")
993 (description
994 "This package computes model II simple linear regression using
995 @dfn{ordinary least squares} (OLS), @dfn{major axis} (MA), @dfn{standard major
996 axis} (SMA), and @dfn{ranged major axis} (RMA).")
997 (license license:gpl2)))
998
999 (define-public r-ggpmisc
1000 (package
1001 (name "r-ggpmisc")
1002 (version "0.4.6")
1003 (source (origin
1004 (method url-fetch)
1005 (uri (cran-uri "ggpmisc" version))
1006 (sha256
1007 (base32
1008 "1iq39rx4nj1lf37hnj4df0c7gbk9374d0mzcnhdr7aqpxaxgs3ys"))))
1009 (build-system r-build-system)
1010 (propagated-inputs
1011 (list r-dplyr
1012 r-generics
1013 r-ggplot2
1014 r-ggpp
1015 r-lmodel2
1016 r-lubridate
1017 r-mass
1018 r-plyr
1019 r-polynom
1020 r-quantreg
1021 r-rlang
1022 r-scales
1023 r-splus2r
1024 r-tibble))
1025 (native-inputs
1026 (list r-knitr))
1027 (home-page "https://www.r4photobiology.info/")
1028 (synopsis "Miscellaneous Extensions to @code{ggplot2}")
1029 (description "This package provides extensions to @code{ggplot2},
1030 respecting the grammar of its graphics paradigm.")
1031 (license license:gpl2+)))
1032
1033 (define-public r-ggside
1034 (package
1035 (name "r-ggside")
1036 (version "0.2.0")
1037 (source (origin
1038 (method url-fetch)
1039 (uri (cran-uri "ggside" version))
1040 (sha256
1041 (base32
1042 "1x505zizv7hf65pxp9j5v92c3bchhxh9dsrkk1m55kwqqnsl5nza"))))
1043 (properties `((upstream-name . "ggside")))
1044 (build-system r-build-system)
1045 (propagated-inputs (list r-ggplot2 r-glue r-gtable r-rlang r-scales))
1046 (native-inputs (list r-knitr))
1047 (home-page "https://cran.r-project.org/package=ggside")
1048 (synopsis "Side grammar graphics that extends @code{ggplot2}")
1049 (description
1050 "The grammar of graphics as shown in @code{ggplot2} has provided an
1051 expressive API for users to build plots. This package @{ggside} extends
1052 @code{ggplot2} by allowing users to add graphical information about one of the
1053 main panel's axis using a familiar @code{ggplot2} style API with tidy data.
1054 This package is particularly useful for visualizing metadata on a discrete
1055 axis, or summary graphics on a continuous axis such as a boxplot or a density
1056 distribution.")
1057 (license license:expat)))
1058
1059 (define-public r-gprofiler
1060 (package
1061 (name "r-gprofiler")
1062 (version "0.7.0")
1063 (source
1064 (origin
1065 (method url-fetch)
1066 (uri (cran-uri "gProfileR" version))
1067 (sha256
1068 (base32
1069 "1h1v0kgpsn04ald2izznh7fr2riwisj5hcgz4k7h3qc931rf0r4k"))))
1070 (properties `((upstream-name . "gProfileR")))
1071 (build-system r-build-system)
1072 (propagated-inputs
1073 (list r-plyr r-rcurl))
1074 (home-page "https://cran.r-project.org/web/packages/gProfileR/")
1075 (synopsis "Interface to the g:Profiler toolkit")
1076 (description
1077 "This package provides tools for functional enrichment analysis,
1078 gene identifier conversion and mapping homologous genes across related
1079 organisms via the @code{g:Profiler} toolkit.")
1080 (license license:gpl2+)))
1081
1082 (define-public r-gprofiler2
1083 (package
1084 (name "r-gprofiler2")
1085 (version "0.2.1")
1086 (source
1087 (origin
1088 (method url-fetch)
1089 (uri (cran-uri "gprofiler2" version))
1090 (sha256
1091 (base32
1092 "0r0h34b35xzgd9rh55yndn0anxy0z45zdlqa6qfmpn91b6v1bb1g"))))
1093 (properties `((upstream-name . "gprofiler2")))
1094 (build-system r-build-system)
1095 (propagated-inputs
1096 (list r-crosstalk
1097 r-dplyr
1098 r-ggplot2
1099 r-gridextra
1100 r-jsonlite
1101 r-plotly
1102 r-rcurl
1103 r-tidyr
1104 r-viridislite))
1105 (native-inputs (list r-knitr))
1106 (home-page "https://cran.r-project.org/web/packages/gprofiler2/")
1107 (synopsis "Interface to the g:Profiler toolset")
1108 (description
1109 "This package provides a toolset for functional enrichment analysis and
1110 visualization, gene/protein/SNP identifier conversion and mapping orthologous
1111 genes across species via @url{https://biit.cs.ut.ee/gprofiler,g:Profiler}.
1112 The main tools are:
1113
1114 @enumerate
1115 @item @code{g:GOSt}, functional enrichment analysis and visualization of gene
1116 lists;
1117 @item @code{g:Convert}, gene/protein/transcript identifier conversion across
1118 various namespaces;
1119 @item @code{g:Orth}, orthology search across species;
1120 @item @code{g:SNPense}, mapping SNP rs identifiers to chromosome positions,
1121 genes and variant effects.
1122 @end enumerate
1123
1124 This package is an R interface corresponding to the 2019 update of
1125 @code{g:Profiler} and provides access to versions @code{e94_eg41_p11} and
1126 higher.")
1127 (license license:gpl2+)))
1128
1129 (define-public r-oenb
1130 (package
1131 (name "r-oenb")
1132 (version "0.0.2")
1133 (source
1134 (origin
1135 (method url-fetch)
1136 (uri (cran-uri "oenb" version))
1137 (sha256
1138 (base32
1139 "1jgxw7ycx2lcdzglg9nix8k08fs4r6i5jdsjzrd6w1dg6smsinl5"))))
1140 (properties `((upstream-name . "oenb")))
1141 (build-system r-build-system)
1142 (propagated-inputs
1143 (list r-dplyr r-xml))
1144 (native-inputs (list r-knitr))
1145 (home-page "https://github.com/franzmohr/oenb")
1146 (synopsis "Tools for the OeNB Data Web Service")
1147 (description
1148 "Tools to access data from the data web service of the
1149 @acronym{OeNB, Oesterreichische Nationalbank},
1150 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
1151 (license license:gpl2+)))
1152
1153 (define-public r-orgmassspecr
1154 (package
1155 (name "r-orgmassspecr")
1156 (version "0.5-3")
1157 (source (origin
1158 (method url-fetch)
1159 (uri (cran-uri "OrgMassSpecR" version))
1160 (sha256
1161 (base32
1162 "1dx9d8rb1dfqyhyc26zhfnxiv3rz2ikvs2mwqnsrq3lsjs9dvyc8"))))
1163 (properties `((upstream-name . "OrgMassSpecR")))
1164 (build-system r-build-system)
1165 (native-inputs (list r-knitr))
1166 (home-page "http://OrgMassSpec.github.io/")
1167 (synopsis "Organic or biological mass spectrometry data analysis")
1168 (description
1169 "This package @code{OrgMassSpecR} is an extension of the @code{R}
1170 statistical computing language. It contains functions to assist with organic
1171 or biological mass spectrometry data analysis. Mass spectral libraries are
1172 available as companion packages.")
1173 (license license:bsd-2)))
1174
1175 (define-public r-scales
1176 (package
1177 (name "r-scales")
1178 (version "1.2.0")
1179 (source
1180 (origin
1181 (method url-fetch)
1182 (uri (cran-uri "scales" version))
1183 (sha256
1184 (base32 "1pq2rrix6a5gsi8xw38viiydp1bsxxmcmyy7dv9q8gkb1qj50p8q"))))
1185 (build-system r-build-system)
1186 (propagated-inputs
1187 (list r-farver
1188 r-labeling
1189 r-lifecycle
1190 r-munsell
1191 r-rcolorbrewer
1192 r-rlang
1193 r-r6
1194 r-viridislite))
1195 (home-page "https://github.com/hadley/scales")
1196 (synopsis "Scale functions for visualization")
1197 (description
1198 "This package provides graphical scales that map data to aesthetics, and
1199 provides methods for automatically determining breaks and labels for axes and
1200 legends.")
1201 (license license:expat)))
1202
1203 (define-public r-pacman
1204 (package
1205 (name "r-pacman")
1206 (version "0.5.1")
1207 (source (origin
1208 (method url-fetch)
1209 (uri (cran-uri "pacman" version))
1210 (sha256
1211 (base32
1212 "0z7gngd6h83cpjhq1vg75wvzhdjbgjh7gj5d4zvvi9gd2lmagjcy"))))
1213 (build-system r-build-system)
1214 (propagated-inputs
1215 (list r-remotes))
1216 (home-page "https://github.com/trinker/pacman")
1217 (synopsis "Package Management Tool")
1218 (description "This package provides tools to more conveniently perform
1219 tasks associated with add-on packages. @code{pacman} conveniently wraps
1220 library and package related functions and names them in an intuitive and
1221 consistent fashion. It seeks to combine functionality from lower level
1222 functions which can speed up workflow.")
1223 (license license:gpl2)))
1224
1225 (define-public r-paralleldist
1226 (package
1227 (name "r-paralleldist")
1228 (version "0.2.6")
1229 (source
1230 (origin
1231 (method url-fetch)
1232 (uri (cran-uri "parallelDist" version))
1233 (sha256
1234 (base32 "01ly4hxwa64a0ya5gla8rvv72s9mcknsfznivjkh937pbjwb7iih"))))
1235 (properties `((upstream-name . "parallelDist")))
1236 (build-system r-build-system)
1237 (propagated-inputs (list r-rcpp r-rcpparmadillo r-rcppparallel))
1238 (home-page "https://github.com/alexeckert/parallelDist")
1239 (synopsis "Parallel Distance Matrix Computation using multiple threads")
1240 (description
1241 "This package provides a fast parallelized alternative to R's native
1242 @code{dist} function to calculate distance matrices for continuous, binary,
1243 and multi-dimensional input matrices, which supports a broad variety of
1244 predefined distance functions from other R packages, as well as user- defined
1245 functions written in C++. For ease of use, the @code{parDist} function
1246 extends the signature of the @code{dist} function and uses the same parameter
1247 naming conventions as distance methods of existing R packages.")
1248 (license license:gpl2+)))
1249
1250 (define-public r-pheatmap
1251 (package
1252 (name "r-pheatmap")
1253 (version "1.0.12")
1254 (source
1255 (origin
1256 (method url-fetch)
1257 (uri (cran-uri "pheatmap" version))
1258 (sha256
1259 (base32
1260 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
1261 (build-system r-build-system)
1262 (propagated-inputs
1263 (list r-gtable r-rcolorbrewer r-scales))
1264 (home-page "https://cran.r-project.org/web/packages/pheatmap")
1265 (synopsis "Pretty heatmaps")
1266 (description
1267 "This package provides an implementation of heatmaps that offers more
1268 control over dimensions and appearance.")
1269 (license license:gpl2+)))
1270
1271 (define-public r-pnwcolors
1272 (package
1273 (name "r-pnwcolors")
1274 (version "0.1.0")
1275 (source
1276 (origin
1277 (method url-fetch)
1278 (uri (cran-uri "PNWColors" version))
1279 (sha256
1280 (base32
1281 "1phplnclkficfv8s6wsyrckk4ixzbayiy5iix6dddg40485l9nyj"))))
1282 (properties `((upstream-name . "PNWColors")))
1283 (build-system r-build-system)
1284 (home-page "https://github.com/jakelawlor/PNWColors")
1285 (synopsis "Color palettes for data visualizations")
1286 (description
1287 "This package provides color palettes. They are checked for colorblind
1288 accessibility from hue, saturation, and lightness value scaling using the
1289 Chroma.js Color Palette Helper. See @url{https://gka.github.io/palettes}.")
1290 (license license:cc0)))
1291
1292 (define-public r-plotfunctions
1293 (package
1294 (name "r-plotfunctions")
1295 (version "1.4")
1296 (source
1297 (origin
1298 (method url-fetch)
1299 (uri (cran-uri "plotfunctions" version))
1300 (sha256
1301 (base32 "0asmxw8283fpvl83h478j5nyg59xqifqaa8f2f6l199gvvswhhg2"))))
1302 (properties `((upstream-name . "plotfunctions")))
1303 (build-system r-build-system)
1304 (native-inputs (list r-knitr))
1305 (home-page "https://jacolienvanrij.com/tutorials.html")
1306 (synopsis "Various functions to facilitate visualization of data and analysis")
1307 (description
1308 "When analyzing data, plots are a helpful tool for visualizing data and
1309 interpreting statistical models. This package provides a set of simple tools
1310 for building plots incrementally, starting with an empty plot region, and
1311 adding bars, data points, regression lines, error bars, gradient legends,
1312 density distributions in the margins, and even pictures. The package builds
1313 further on R graphics by simply combining functions and settings in order to
1314 reduce the amount of code to produce for the user. As a result, the package
1315 does not use formula input or special syntax, but can be used in combination
1316 with default R plot functions.")
1317 (license license:gpl2+)))
1318
1319 (define-public r-polychrome
1320 (package
1321 (name "r-polychrome")
1322 (version "1.5.1")
1323 (source
1324 (origin
1325 (method url-fetch)
1326 (uri (cran-uri "Polychrome" version))
1327 (sha256
1328 (base32 "0hyi02m2jpdhk1ky6ihz6dv5pwqwjwk4csjim2qr8ywx8midmrvg"))))
1329 (properties `((upstream-name . "Polychrome")))
1330 (build-system r-build-system)
1331 (propagated-inputs
1332 (list r-colorspace r-scatterplot3d))
1333 (native-inputs
1334 (list r-knitr))
1335 (home-page "http://oompa.r-forge.r-project.org/")
1336 (synopsis "Qualitative palettes with many colors")
1337 (description
1338 "This package provides tools for creating, viewing, and assessing
1339 qualitative palettes with many (20-30 or more) colors. See Coombes and
1340 colleagues (2019) @url{https://doi:10.18637/jss.v090.c01}.")
1341 (license license:asl2.0)))
1342
1343 (define-public r-ecp
1344 (package
1345 (name "r-ecp")
1346 (version "3.1.3")
1347 (source (origin
1348 (method url-fetch)
1349 (uri (cran-uri "ecp" version))
1350 (sha256
1351 (base32
1352 "0n602jssl6rf596nwm6hbl7s9vdlqi20w8mrhxicj373mw5v22m8"))))
1353 (build-system r-build-system)
1354 (propagated-inputs
1355 (list r-rcpp))
1356 (home-page "https://cran.r-project.org/web/packages/ecp/")
1357 (synopsis "Multiple change-point analysis of multivariate data")
1358 (description
1359 "This package implements various procedures for finding multiple
1360 change-points. Two methods make use of dynamic programming and pruning, with
1361 no distributional assumptions other than the existence of certain absolute
1362 moments in one method. Hierarchical and exact search methods are included.
1363 All methods return the set of estimated change-points as well as other summary
1364 information.")
1365 (license license:gpl2+)))
1366
1367 (define-public r-ellipsis
1368 (package
1369 (name "r-ellipsis")
1370 (version "0.3.2")
1371 (source
1372 (origin
1373 (method url-fetch)
1374 (uri (cran-uri "ellipsis" version))
1375 (sha256
1376 (base32
1377 "0n0mm9jngklv7j9wa64jdji035z0smmnsp2dfwcz9isrxgjnc0m9"))))
1378 (build-system r-build-system)
1379 (propagated-inputs
1380 (list r-rlang))
1381 (home-page "https://github.com/hadley/ellipsis")
1382 (synopsis "Tools for working with additional arguments")
1383 (description
1384 "In S3 generics, it's useful to take @code{...} so that methods can have
1385 additional arguments. But this flexibility comes at a cost: misspelled
1386 arguments will be silently ignored. The @code{ellipsis} package is an
1387 experiment that allows a generic to warn if any arguments passed in @code{...}
1388 are not used.")
1389 (license license:gpl3)))
1390
1391 (define-public r-ga
1392 (package
1393 (name "r-ga")
1394 (version "3.2.2")
1395 (source
1396 (origin
1397 (method url-fetch)
1398 (uri (cran-uri "GA" version))
1399 (sha256
1400 (base32 "135z03lnbj44jihnk6dii5a684jmc666ncpdwyyi910vl4sccib2"))))
1401 (properties `((upstream-name . "GA")))
1402 (build-system r-build-system)
1403 (propagated-inputs
1404 (list r-cli
1405 r-crayon
1406 r-foreach
1407 r-iterators
1408 r-rcpp
1409 r-rcpparmadillo))
1410 (native-inputs
1411 (list r-knitr))
1412 (home-page "https://luca-scr.github.io/GA/")
1413 (synopsis "Genetic algorithms for stochastic optimisation")
1414 (description
1415 "Flexible general-purpose toolbox implementing genetic algorithms (GAs)
1416 for stochastic optimisation. Binary, real-valued, and permutation
1417 representations are available to optimize a fitness function, i.e., a function
1418 provided by users depending on their objective function. Several genetic
1419 operators are available and can be combined to explore the best settings for
1420 the current task. Furthermore, users can define new genetic operators and
1421 easily evaluate their performances. Local search using general-purpose
1422 optimisation algorithms can be applied stochastically to exploit interesting
1423 regions. GAs can be run sequentially or in parallel, using an explicit
1424 master-slave parallelisation or a coarse-grain islands approach.")
1425 (license license:gpl2+)))
1426
1427 (define-public r-grr
1428 (package
1429 (name "r-grr")
1430 (version "0.9.5")
1431 (source
1432 (origin
1433 (method url-fetch)
1434 (uri (cran-uri "grr" version))
1435 (sha256
1436 (base32
1437 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
1438 (build-system r-build-system)
1439 (home-page "https://cran.r-project.org/web/packages/grr")
1440 (synopsis "Alternative implementations of base R functions")
1441 (description
1442 "This package provides alternative implementations of some base R
1443 functions, including @code{sort}, @code{order}, and @code{match}. The
1444 functions are simplified but can be faster or have other advantages.")
1445 (license license:gpl3)))
1446
1447 (define-public r-matrix-utils
1448 (package
1449 (name "r-matrix-utils")
1450 (version "0.9.8")
1451 (source
1452 (origin
1453 (method url-fetch)
1454 (uri (cran-uri "Matrix.utils" version))
1455 (sha256
1456 (base32
1457 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
1458 (properties `((upstream-name . "Matrix.utils")))
1459 (build-system r-build-system)
1460 (propagated-inputs
1461 (list r-grr r-matrix))
1462 (home-page "https://github.com/cvarrichio/Matrix.utils")
1463 (synopsis
1464 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
1465 (description
1466 "This package implements data manipulation methods such as @code{cast},
1467 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
1468 objects.")
1469 (license license:gpl3)))
1470
1471 (define-public r-mboost
1472 (package
1473 (name "r-mboost")
1474 (version "2.9-7")
1475 (source (origin
1476 (method url-fetch)
1477 (uri (cran-uri "mboost" version))
1478 (sha256
1479 (base32
1480 "01ln0vxbbx1fq77q17sx61si82lhfibbchsnf2yw9032cn8wnhh2"))))
1481 (build-system r-build-system)
1482 (propagated-inputs
1483 (list r-lattice
1484 r-matrix
1485 r-nnls
1486 r-partykit
1487 r-quadprog
1488 r-stabs
1489 r-survival))
1490 (home-page "https://github.com/boost-R/mboost")
1491 (synopsis "Model-based boosting")
1492 (description
1493 "This package provides a functional gradient descent algorithm (boosting)
1494 for optimizing general risk functions utilizing component-wise (penalised)
1495 least squares estimates or regression trees as base-learners for fitting
1496 generalized linear, additive and interaction models to potentially
1497 high-dimensional data.")
1498 (license license:gpl2)))
1499
1500 (define-public r-shadowtext
1501 (package
1502 (name "r-shadowtext")
1503 (version "0.1.2")
1504 (source (origin
1505 (method url-fetch)
1506 (uri (cran-uri "shadowtext" version))
1507 (sha256
1508 (base32
1509 "0zdfidrcnmxmfhngv86ppxrjmpmz9kl78l4yfah2lc5vgmrlwg15"))))
1510 (properties `((upstream-name . "shadowtext")))
1511 (build-system r-build-system)
1512 (propagated-inputs
1513 (list r-ggplot2 r-scales))
1514 (native-inputs
1515 (list r-knitr))
1516 (home-page "https://github.com/GuangchuangYu/shadowtext/")
1517 (synopsis "Shadow text grob and layer")
1518 (description "This package implements @code{shadowtextGrob()} for
1519 @code{grid} and @code{geom_shadowtext()} layer for @code{ggplot2}.
1520 These functions draw text grob with background shadow.")
1521 (license license:artistic2.0)))
1522
1523 (define-public r-sys
1524 (package
1525 (name "r-sys")
1526 (version "3.4")
1527 (source
1528 (origin
1529 (method url-fetch)
1530 (uri (cran-uri "sys" version))
1531 (sha256
1532 (base32
1533 "11q4zmx62w44p1j34frwmrsp23mc7l4n354i0zyziw92yax8zy0p"))))
1534 (build-system r-build-system)
1535 (home-page "https://github.com/jeroen/sys")
1536 (synopsis "Powerful and reliable tools for running system commands in R")
1537 (description
1538 "This package provides drop-in replacements for the base @code{system2()}
1539 function with fine control and consistent behavior across platforms. It
1540 supports clean interruption, timeout, background tasks, and streaming STDIN /
1541 STDOUT / STDERR over binary or text connections. The package also provides
1542 functions for evaluating expressions inside a temporary fork. Such
1543 evaluations have no side effects on the main R process, and support reliable
1544 interrupts and timeouts. This provides the basis for a sandboxing
1545 mechanism.")
1546 (license license:expat)))
1547
1548 (define-public r-ashr
1549 (package
1550 (name "r-ashr")
1551 (version "2.2-54")
1552 (source (origin
1553 (method url-fetch)
1554 (uri (cran-uri "ashr" version))
1555 (sha256
1556 (base32
1557 "177xs3apnc6yy6737qqv4z8snf0hkpbghab63hrplbyb9wfssfga"))))
1558 (properties `((upstream-name . "ashr")))
1559 (build-system r-build-system)
1560 (propagated-inputs
1561 (list r-etrunct
1562 r-invgamma
1563 r-matrix
1564 r-mixsqp
1565 r-rcpp
1566 r-squarem
1567 r-truncnorm))
1568 (native-inputs
1569 (list r-knitr))
1570 (home-page "https://github.com/stephens999/ashr")
1571 (synopsis "Methods for adaptive shrinkage, using empirical bayes")
1572 (description "This package implements an empirical Bayes approach for
1573 large-scale hypothesis testing and false discovery rate estimation.")
1574 (license license:gpl3+)))
1575
1576 (define-public r-askpass
1577 (package
1578 (name "r-askpass")
1579 (version "1.1")
1580 (source
1581 (origin
1582 (method url-fetch)
1583 (uri (cran-uri "askpass" version))
1584 (sha256
1585 (base32
1586 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
1587 (build-system r-build-system)
1588 (propagated-inputs (list r-sys))
1589 (home-page "https://github.com/jeroen/askpass")
1590 (synopsis "Safe password entry for R")
1591 (description
1592 "This package provides cross-platform utilities for prompting the user
1593 for credentials or a passphrase, for example to authenticate with a server or
1594 read a protected key.")
1595 (license license:expat)))
1596
1597 (define-public r-astsa
1598 (package
1599 (name "r-astsa")
1600 (version "1.15")
1601 (source
1602 (origin
1603 (method url-fetch)
1604 (uri (cran-uri "astsa" version))
1605 (sha256
1606 (base32 "0mllsq0xdqkviyvs77lq565r1vznsj1qp9cnlj5p48k9v76d7arp"))))
1607 (properties `((upstream-name . "astsa")))
1608 (build-system r-build-system)
1609 (home-page "https://github.com/nickpoison/astsa/")
1610 (synopsis "Applied statistical time series analysis")
1611 (description
1612 "This package provides data sets and scripts to accompany Time Series
1613 Analysis and Its Applications: With R Examples (4th ed), by R.H. Shumway and
1614 D.S. Stoffer. Springer Texts in Statistics, 2017,
1615 @url{https://doi.org/10.1007/978-3-319-52452-8}, and Time Series: A Data
1616 Analysis Approach Using R. Chapman-Hall, 2019,
1617 @url{https://doi.org/10.1201/9780429273285}.")
1618 (license license:gpl3)))
1619
1620 (define-public r-vegan
1621 (package
1622 (name "r-vegan")
1623 (version "2.6-2")
1624 (source
1625 (origin
1626 (method url-fetch)
1627 (uri (cran-uri "vegan" version))
1628 (sha256
1629 (base32
1630 "0nf0ny6jzfy135xiygzzkr0y55y8g27hrbk8c869plarr48d2xxb"))))
1631 (build-system r-build-system)
1632 (native-inputs
1633 (list r-knitr ; needed for vignettes
1634 gfortran))
1635 (propagated-inputs
1636 (list r-cluster r-lattice r-mass r-mgcv r-permute))
1637 (home-page "https://cran.r-project.org/web/packages/vegan")
1638 (synopsis "Functions for community ecology")
1639 (description
1640 "The vegan package provides tools for descriptive community ecology. It
1641 has most basic functions of diversity analysis, community ordination and
1642 dissimilarity analysis. Most of its multivariate tools can be used for other
1643 data types as well.")
1644 (license license:gpl2+)))
1645
1646 (define-public r-tidyverse
1647 (package
1648 (name "r-tidyverse")
1649 (version "1.3.1")
1650 (source
1651 (origin
1652 (method url-fetch)
1653 (uri (cran-uri "tidyverse" version))
1654 (sha256
1655 (base32
1656 "0ck6xmsw5p168jmw2fqv79fzfnw5jckfra7mfii261j6kl89bkw3"))))
1657 (build-system r-build-system)
1658 (propagated-inputs
1659 (list r-broom
1660 r-cli
1661 r-crayon
1662 r-dbplyr
1663 r-dplyr
1664 r-dtplyr
1665 r-forcats
1666 r-ggplot2
1667 r-googledrive
1668 r-googlesheets4
1669 r-haven
1670 r-hms
1671 r-httr
1672 r-jsonlite
1673 r-lubridate
1674 r-magrittr
1675 r-modelr
1676 r-pillar
1677 r-purrr
1678 r-readr
1679 r-readxl
1680 r-reprex
1681 r-rlang
1682 r-rstudioapi
1683 r-rvest
1684 r-stringr
1685 r-tibble
1686 r-tidyr
1687 r-xml2))
1688 (native-inputs
1689 (list r-knitr))
1690 (home-page "https://tidyverse.tidyverse.org")
1691 (synopsis "Install and load packages from the \"Tidyverse\"")
1692 (description
1693 "The @code{tidyverse} is a set of packages that work in harmony because
1694 they share common data representations and API design. This package is
1695 designed to make it easy to install and load multiple tidyverse packages in a
1696 single step.")
1697 (license license:gpl3)))
1698
1699 (define-public r-rvest
1700 (package
1701 (name "r-rvest")
1702 (version "1.0.2")
1703 (source
1704 (origin
1705 (method url-fetch)
1706 (uri (cran-uri "rvest" version))
1707 (sha256
1708 (base32 "1905vxgnj3q09l1wf6rwxpbpydznp06nbkrclnc05j2415z4gfw9"))))
1709 (build-system r-build-system)
1710 (propagated-inputs
1711 (list r-httr
1712 r-lifecycle
1713 r-magrittr
1714 r-rlang
1715 r-selectr
1716 r-tibble
1717 r-xml2))
1718 (native-inputs
1719 (list r-knitr))
1720 (home-page "https://github.com/hadley/rvest")
1721 (synopsis "Simple web scraping for R")
1722 (description
1723 "@code{r-rvest} helps you scrape information from web pages. It is
1724 designed to work with @code{magrittr} to make it easy to express common web
1725 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
1726 (license license:gpl3)))
1727
1728 (define-public r-selectr
1729 (package
1730 (name "r-selectr")
1731 (version "0.4-2")
1732 (source
1733 (origin
1734 (method url-fetch)
1735 (uri (cran-uri "selectr" version))
1736 (sha256
1737 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
1738 (build-system r-build-system)
1739 (propagated-inputs
1740 (list r-stringr r-r6))
1741 (home-page "https://sjp.co.nz/projects/selectr/")
1742 (synopsis "Translate CSS selectors to XPath expressions")
1743 (description
1744 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
1745 expression. This allows you to use CSS selectors when working with the XML
1746 package as it can only evaluate XPath expressions. Also provided are
1747 convenience functions useful for using CSS selectors on XML nodes. This
1748 package is a port of the Python package @code{cssselect}.")
1749 (license license:bsd-3)))
1750
1751 (define-public r-reprex
1752 (package
1753 (name "r-reprex")
1754 (version "2.0.1")
1755 (source
1756 (origin
1757 (method url-fetch)
1758 (uri (cran-uri "reprex" version))
1759 (sha256
1760 (base32
1761 "09k4rasp7mz6n796dsklcbc5l7prljiznrm7fra16qybr9kqcv8f"))))
1762 (build-system r-build-system)
1763 (propagated-inputs
1764 (list r-callr
1765 r-cli
1766 r-clipr
1767 r-fs
1768 r-glue
1769 r-knitr
1770 r-rlang
1771 r-rmarkdown
1772 r-rstudioapi
1773 r-withr))
1774 (native-inputs
1775 (list r-knitr))
1776 (home-page "https://github.com/tidyverse/reprex")
1777 (synopsis "Prepare reproducible R code examples for sharing")
1778 (description
1779 "This package provides a convenience wrapper that uses the
1780 @code{rmarkdown} package to render small snippets of code to target formats
1781 that include both code and output. The goal is to encourage the sharing of
1782 small, reproducible, and runnable examples on code-oriented websites or email.
1783 @code{reprex} also extracts clean, runnable R code from various common formats,
1784 such as copy/paste from an R session.")
1785 (license license:expat)))
1786
1787 (define-public r-reordercluster
1788 (package
1789 (name "r-reordercluster")
1790 (version "1.0")
1791 (source (origin
1792 (method url-fetch)
1793 (uri (cran-uri "ReorderCluster" version))
1794 (sha256
1795 (base32
1796 "0ss750frzvj0bm1w7zblmcsjpszhnbffwlkaw31sm003lbx9hy58"))))
1797 (build-system r-build-system)
1798 (propagated-inputs
1799 (list r-gplots r-rcpp))
1800 (home-page "https://cran.r-project.org/web/packages/ReorderCluster")
1801 (synopsis "Reordering the dendrogram according to the class labels")
1802 (description "This package provides tools for performing the leaf reordering
1803 for the dendrogram that preserves the hierarchical clustering result and at the
1804 same time tries to group instances from the same class together.")
1805 (license license:gpl3+)))
1806
1807 (define-public r-callr
1808 (package
1809 (name "r-callr")
1810 (version "3.7.0")
1811 (source
1812 (origin
1813 (method url-fetch)
1814 (uri (cran-uri "callr" version))
1815 (sha256
1816 (base32
1817 "02inaf3c7b0hikii7p2zwaphrq5myv4in92d9jxd1ilmhla5awnn"))))
1818 (build-system r-build-system)
1819 (propagated-inputs
1820 (list r-r6 r-processx))
1821 (home-page "https://github.com/r-lib/callr#readme")
1822 (synopsis "Call R from R")
1823 (description
1824 "It is sometimes useful to perform a computation in a separate R process,
1825 without affecting the current R process at all. This package does exactly
1826 that.")
1827 (license license:expat)))
1828
1829 (define-public r-depmixs4
1830 (package
1831 (name "r-depmixs4")
1832 (version "1.5-0")
1833 (source (origin
1834 (method url-fetch)
1835 (uri (cran-uri "depmixS4" version))
1836 (sha256
1837 (base32
1838 "1pacvhw5m4fsk3ysbal50fdqbvlaz8ywyqp6bn1wh42wipqbb2i8"))))
1839 (propagated-inputs
1840 (list r-nnet r-nlme r-mass r-rsolnp))
1841 (build-system r-build-system)
1842 (home-page "https://cran.r-project.org/web/packages/depmixS4/")
1843 (synopsis "Dependent Mixture Models")
1844 (description "This package fits latent (hidden) Markov models on mixed
1845 categorical and continuous (time series) data, otherwise known as dependent
1846 mixture models.")
1847 (license license:gpl2+)))
1848
1849 (define-public r-readxl
1850 (package
1851 (name "r-readxl")
1852 (version "1.4.0")
1853 (source
1854 (origin
1855 (method url-fetch)
1856 (uri (cran-uri "readxl" version))
1857 (sha256
1858 (base32
1859 "1xwi4k5si48hwkgfc59icfmp9dzlvfri59k5fsgn96zp9713k4mb"))))
1860 (build-system r-build-system)
1861 (propagated-inputs
1862 (list r-cellranger r-cpp11 r-progress r-tibble))
1863 (native-inputs
1864 (list r-knitr))
1865 (home-page "https://readxl.tidyverse.org")
1866 (synopsis "Read Excel files")
1867 (description
1868 "This package lets you import Excel files into R. It supports
1869 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
1870 the embedded @code{RapidXML} C++ library.")
1871 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
1872 ;; 'rapidxml' which is Boost.
1873 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
1874
1875 (define-public r-model4you
1876 (package
1877 (name "r-model4you")
1878 (version "0.9-7")
1879 (source (origin
1880 (method url-fetch)
1881 (uri (cran-uri "model4you" version))
1882 (sha256
1883 (base32
1884 "0pni9v3nradvy8sp2m07903vc7z610xrh426lf19dxss12kgrfi8"))))
1885 (build-system r-build-system)
1886 (propagated-inputs
1887 (list r-formula
1888 r-ggplot2
1889 r-gridextra
1890 r-partykit
1891 r-sandwich
1892 r-survival))
1893 (home-page "https://cran.r-project.org/web/packages/model4you/")
1894 (synopsis "Stratified and personalised models based on trees and forests")
1895 (description
1896 "This package provides procedures for model-based trees for subgroup
1897 analyses in clinical trials and model-based forests for the estimation and
1898 prediction of personalised treatment effects. Currently partitioning of linear
1899 models, @code{lm()}, generalised linear models, @code{glm()}, and
1900 Weibull models, @code{survreg()}, are supported. Advanced plotting functionality is
1901 supported for the trees and a test for parameter heterogeneity is provided for
1902 the personalised models.")
1903 (license license:gpl2+)))
1904
1905 (define-public r-modelr
1906 (package
1907 (name "r-modelr")
1908 (version "0.1.8")
1909 (source
1910 (origin
1911 (method url-fetch)
1912 (uri (cran-uri "modelr" version))
1913 (sha256
1914 (base32
1915 "1i31nff7bqibk6r4hhd4j1vzwbyaf8493v0bjaagn36njmysfnw2"))))
1916 (build-system r-build-system)
1917 (propagated-inputs
1918 (list r-broom
1919 r-magrittr
1920 r-purrr
1921 r-rlang
1922 r-tibble
1923 r-tidyr
1924 r-tidyselect
1925 r-vctrs))
1926 (home-page "https://github.com/tidyverse/modelr")
1927 (synopsis "Helper functions for modelling in pipelines")
1928 (description
1929 "Functions for modelling that help you seamlessly integrate modelling
1930 into a pipeline of data manipulation and visualisation.")
1931 (license license:gpl3)))
1932
1933 (define-public r-hmm
1934 (package
1935 (name "r-hmm")
1936 (version "1.0.1")
1937 (source (origin
1938 (method url-fetch)
1939 (uri (cran-uri "HMM" version))
1940 (sha256
1941 (base32
1942 "03b548bnwqpnd7zypb4gvy9chyi5li2hp99a9vrh4qszxg2ihas7"))))
1943 (properties `((upstream-name . "HMM")))
1944 (build-system r-build-system)
1945 (home-page "https://cran.r-project.org/web/packages/HMM/")
1946 (synopsis "Hidden Markov Models")
1947 (description "This package provides an easy to use library to setup, apply
1948 and make inference with discrete time and discrete space hidden Markov
1949 models.")
1950 (license license:gpl2+)))
1951
1952 (define-public r-hiddenmarkov
1953 (package
1954 (name "r-hiddenmarkov")
1955 (version "1.8-13")
1956 (source (origin
1957 (method url-fetch)
1958 (uri (cran-uri "HiddenMarkov" version))
1959 (sha256
1960 (base32
1961 "05dm3nl0ffsz2ziw3bz5bivyxk7r5bxs8xhky3hz660qaqzd51ki"))))
1962 (build-system r-build-system)
1963 (native-inputs
1964 (list gfortran))
1965 (home-page "https://cran.r-project.org/web/packages/HiddenMarkov/")
1966 (synopsis "Hidden markov models for R")
1967 (description "This package contains functions for the analysis of Discrete
1968 Time Hidden Markov Models, Markov Modulated GLMs and the Markov Modulated
1969 Poisson Process. It includes functions for simulation, parameter estimation,
1970 and the Viterbi algorithm. The algorithms are based of those of Walter
1971 Zucchini.")
1972 (license license:gpl2+)))
1973
1974 (define-public r-httpuv
1975 (package
1976 (name "r-httpuv")
1977 (version "1.6.5")
1978 (source (origin
1979 (method url-fetch)
1980 (uri (cran-uri "httpuv" version))
1981 (sha256
1982 (base32
1983 "0mlilxh2mlrsbbrncla2rg02crr8nnajv649d8whx7ayr8lkdxpm"))
1984 ;; Unvendor bundled libraries. As of 1.5.4 the vendored libuv
1985 ;; only contains fixes for building on Solaris.
1986 (patches (search-patches "r-httpuv-1.5.5-unvendor-libuv.patch"))
1987 (modules '((guix build utils)))
1988 ;; Cannot unbundle http-parser, because it contains local
1989 ;; modifications.
1990 (snippet
1991 '(delete-file-recursively "src/libuv"))))
1992 (build-system r-build-system)
1993 (arguments
1994 `(#:phases
1995 (modify-phases %standard-phases
1996 (add-after 'unpack 'unbundle-libuv
1997 (lambda* (#:key outputs #:allow-other-keys)
1998 (substitute* (find-files "src" "\\.cpp$|\\.h$")
1999 (("\"libuv/include/uv\\.h\"")
2000 "<uv.h>"))
2001 ;; Fix https://github.com/rstudio/httpuv/issues/282
2002 (substitute* "src/http.cpp"
2003 (("uv_pipe_init\\(pLoop, &pSocket->handle\\.pipe, true\\);")
2004 "uv_pipe_init(pLoop, &pSocket->handle.pipe, 0);")))))))
2005 (inputs
2006 (list libuv zlib))
2007 (propagated-inputs
2008 (list r-later r-promises r-r6 r-rcpp))
2009 (home-page "https://github.com/rstudio/httpuv")
2010 (synopsis "HTTP and WebSocket server library for R")
2011 (description
2012 "The httpuv package provides low-level socket and protocol support for
2013 handling HTTP and WebSocket requests directly from within R. It is primarily
2014 intended as a building block for other packages, rather than making it
2015 particularly easy to create complete web applications using httpuv alone.")
2016 ;; This package includes third-party code that was originally released
2017 ;; under various non-copyleft licenses. Full licensing information can be
2018 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
2019 (license license:gpl3+)))
2020
2021 (define-public r-jsonlite
2022 (package
2023 (name "r-jsonlite")
2024 (version "1.8.0")
2025 (source (origin
2026 (method url-fetch)
2027 (uri (cran-uri "jsonlite" version))
2028 (sha256
2029 (base32
2030 "0k6dal7gmm19jl5sjsry5gwbnhsbrnn00q3iixig8k6bxgpr463v"))))
2031 (build-system r-build-system)
2032 (native-inputs
2033 (list r-knitr))
2034 (home-page "https://arxiv.org/abs/1403.2805")
2035 (synopsis "Robust, high performance JSON parser and generator for R")
2036 (description
2037 "The jsonlite package provides a fast JSON parser and generator optimized
2038 for statistical data and the web. It offers flexible, robust, high
2039 performance tools for working with JSON in R and is particularly powerful for
2040 building pipelines and interacting with a web API. In addition to converting
2041 JSON data from/to R objects, jsonlite contains functions to stream, validate,
2042 and prettify JSON data. The unit tests included with the package verify that
2043 all edge cases are encoded and decoded consistently for use with dynamic data
2044 in systems and applications.")
2045 (license license:expat)))
2046
2047 (define-public r-servr
2048 (package
2049 (name "r-servr")
2050 (version "0.24")
2051 (source (origin
2052 (method url-fetch)
2053 (uri (cran-uri "servr" version))
2054 (sha256
2055 (base32
2056 "11x0857m3xzdbzr4z0vx4fcdk36arfagyf2qgamvprich0qisknr"))))
2057 (build-system r-build-system)
2058 (propagated-inputs
2059 (list r-httpuv r-jsonlite r-mime r-xfun))
2060 (home-page "https://github.com/yihui/servr")
2061 (synopsis "Simple HTTP server to serve static files or dynamic documents")
2062 (description
2063 "Servr provides an HTTP server in R to serve static files, or dynamic
2064 documents that can be converted to HTML files (e.g., R Markdown) under a given
2065 directory.")
2066 (license license:expat)))
2067
2068 (define-public r-howmany
2069 (package
2070 (name "r-howmany")
2071 (version "0.3-1")
2072 (source (origin
2073 (method url-fetch)
2074 (uri (cran-uri "howmany" version))
2075 (sha256
2076 (base32
2077 "045ck8qahfg2swbgyf7dpl32ryq1m4sbalhr7m5qdgpm62vz8h7f"))))
2078 (build-system r-build-system)
2079 (home-page "https://cran.r-project.org/web/packages/howmany/")
2080 (synopsis "Lower bound for the number of correct rejections")
2081 (description "When testing multiple hypotheses simultaneously, this package
2082 provides functionality to calculate a lower bound for the number of correct
2083 rejections (as a function of the number of rejected hypotheses), which holds
2084 simultaneously -with high probability- for all possible number of rejections.
2085 As a special case, a lower bound for the total number of false null hypotheses
2086 can be inferred. Dependent test statistics can be handled for multiple tests
2087 of associations. For independent test statistics, it is sufficient to provide
2088 a list of p-values.")
2089 (license license:gpl2+)))
2090
2091 (define-public r-htmltools
2092 (package
2093 (name "r-htmltools")
2094 (version "0.5.2")
2095 (source (origin
2096 (method url-fetch)
2097 (uri (cran-uri "htmltools" version))
2098 (sha256
2099 (base32
2100 "1yv74ydyqm28gfhimmr7825sj1iaawpwsnzq05c2ma756q2dbivx"))))
2101 (build-system r-build-system)
2102 (propagated-inputs
2103 (list r-base64enc r-digest r-fastmap r-rlang))
2104 (home-page "https://cran.r-project.org/web/packages/htmltools")
2105 (synopsis "R tools for HTML")
2106 (description
2107 "This package provides tools for HTML generation and output in R.")
2108 (license license:expat)))
2109
2110 (define-public r-htmlwidgets
2111 (package
2112 (name "r-htmlwidgets")
2113 (version "1.5.4")
2114 (source (origin
2115 (method url-fetch)
2116 (uri (cran-uri "htmlwidgets" version))
2117 (sha256
2118 (base32
2119 "1hgz8sx8xrvfcdwa4q15k942w4qsqg8lyxbbf7qyfzbi807wcgqs"))))
2120 (build-system r-build-system)
2121 (propagated-inputs
2122 (list r-htmltools r-jsonlite r-yaml))
2123 (native-inputs
2124 (list r-knitr))
2125 (home-page "https://github.com/ramnathv/htmlwidgets")
2126 (synopsis "HTML Widgets for R")
2127 (description
2128 "HTML widgets is a framework for creating HTML widgets that render in
2129 various contexts including the R console, R Markdown documents, and Shiny web
2130 applications.")
2131 (license license:expat)))
2132
2133 (define-public r-htmltable
2134 (package
2135 (name "r-htmltable")
2136 (version "2.4.0")
2137 (source
2138 (origin
2139 (method url-fetch)
2140 (uri (cran-uri "htmlTable" version))
2141 (sha256
2142 (base32 "17csp0ry4iy4m5xy271dn5wd81v4p03l79swmvlfxkvpdmhvb8jc"))))
2143 (properties `((upstream-name . "htmlTable")))
2144 (build-system r-build-system)
2145 (propagated-inputs
2146 (list r-checkmate
2147 r-htmltools
2148 r-htmlwidgets
2149 r-knitr
2150 r-magrittr
2151 r-rstudioapi
2152 r-stringr))
2153 (native-inputs
2154 (list r-knitr))
2155 (home-page "http://gforge.se/packages/")
2156 (synopsis "Advanced tables for Markdown/HTML")
2157 (description
2158 "This package provides functions to build tables with advanced layout
2159 elements such as row spanners, column spanners, table spanners, zebra
2160 striping, and more. While allowing advanced layout, the underlying
2161 CSS-structure is simple in order to maximize compatibility with word
2162 processors such as LibreOffice. The package also contains a few text
2163 formatting functions that help outputting text compatible with HTML or
2164 LaTeX.")
2165 (license license:gpl3+)))
2166
2167 (define-public r-curl
2168 (package
2169 (name "r-curl")
2170 (version "4.3.2")
2171 (source (origin
2172 (method url-fetch)
2173 (uri (cran-uri "curl" version))
2174 (sha256
2175 (base32
2176 "0s55022hy8shjm1pzax1dqzrg20bv4nvlwnjnddk3dp89g5zmcch"))))
2177 (build-system r-build-system)
2178 (arguments
2179 `(#:phases
2180 (modify-phases %standard-phases
2181 ;; The environment variable CURL_CA_BUNDLE is only respected when
2182 ;; running Windows, so we disable the platform checks.
2183 ;; This can be removed once the libcurl has been patched.
2184 (add-after 'unpack 'allow-CURL_CA_BUNDLE
2185 (lambda _
2186 (substitute* "R/onload.R"
2187 (("if \\(!grepl\\(\"mingw\".*")
2188 "if (FALSE)\n"))
2189 (substitute* "src/handle.c"
2190 (("/\\* Only set" m)
2191 (string-append "\
2192 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
2193 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
2194 " m))))))))
2195 (inputs
2196 (list curl zlib))
2197 (native-inputs
2198 (list pkg-config r-knitr))
2199 (home-page "https://github.com/jeroenooms/curl")
2200 (synopsis "HTTP client for R")
2201 (description
2202 "The @code{curl()} and @code{curl_download()} functions provide highly
2203 configurable drop-in replacements for base @code{url()} and
2204 @code{download.file()} with better performance, support for encryption, gzip
2205 compression, authentication, and other @code{libcurl} goodies. The core of
2206 the package implements a framework for performing fully customized requests
2207 where data can be processed either in memory, on disk, or streaming via the
2208 callback or connection interfaces.")
2209 (license license:expat)))
2210
2211 (define-public r-hwriter
2212 (package
2213 (name "r-hwriter")
2214 (version "1.3.2.1")
2215 (source
2216 (origin
2217 (method url-fetch)
2218 (uri (cran-uri "hwriter" version))
2219 (sha256
2220 (base32
2221 "1wxnv8h9cs65m3z01dpnnkgn2cpwfsck70g1jz9nbkr7mdaa4bzd"))))
2222 (build-system r-build-system)
2223 (home-page "https://cran.r-project.org/web/packages/hwriter")
2224 (synopsis "Output R objects in HTML format")
2225 (description
2226 "This package provides easy-to-use and versatile functions to output R
2227 objects in HTML format.")
2228 (license license:lgpl2.1+)))
2229
2230 (define-public r-rjson
2231 (package
2232 (name "r-rjson")
2233 (version "0.2.21")
2234 (source
2235 (origin
2236 (method url-fetch)
2237 (uri (cran-uri "rjson" version))
2238 (sha256
2239 (base32
2240 "1qm27r1w677zg31gsiln60hcciszbymkw78cnaq7s36cbk9mcawq"))))
2241 (build-system r-build-system)
2242 (home-page "https://cran.r-project.org/web/packages/rjson")
2243 (synopsis "JSON library for R")
2244 (description
2245 "This package provides functions to convert R objects into JSON objects
2246 and vice-versa.")
2247 (license license:gpl2+)))
2248
2249 (define-public r-fastmap
2250 (package
2251 (name "r-fastmap")
2252 (version "1.1.0")
2253 (source
2254 (origin
2255 (method url-fetch)
2256 (uri (cran-uri "fastmap" version))
2257 (sha256
2258 (base32
2259 "0aw29hnq3ppn7bsnwg9d9sp84k1cvq30lrmfzqn315n0nhkfa4wi"))))
2260 (properties `((upstream-name . "fastmap")))
2261 (build-system r-build-system)
2262 (home-page "https://r-lib.github.io/fastmap/")
2263 (synopsis "Fast implementation of a key-value store")
2264 (description
2265 "This package provides a fast implementation of a key-value store.
2266 Environments are commonly used as key-value stores, but every time a new key
2267 is used, it is added to R's global symbol table, causing a small amount of
2268 memory leakage. This can be problematic in cases where many different keys
2269 are used. Fastmap avoids this memory leak issue by implementing the map using
2270 data structures in C++.")
2271 (license license:expat)))
2272
2273 (define-public r-fastghquad
2274 (package
2275 (name "r-fastghquad")
2276 (version "1.0.1")
2277 (source
2278 (origin
2279 (method url-fetch)
2280 (uri (cran-uri "fastGHQuad" version))
2281 (sha256
2282 (base32
2283 "1zj7nsbnx4g253m3dpz9vi3zk3jxwrixwjw1ks6n4shpb4dlkp2w"))))
2284 (properties `((upstream-name . "fastGHQuad")))
2285 (build-system r-build-system)
2286 (propagated-inputs
2287 (list r-rcpp))
2288 (home-page "https://github.com/awblocker/fastGHQuad")
2289 (synopsis "Fast Rcpp implementation of Gauss-Hermite Quadrature")
2290 (description
2291 "This package implements numerically-stable Gauss-Hermite quadrature
2292 rules and utility functions for adaptive GH quadrature.")
2293 (license license:expat)))
2294
2295 (define-public r-rstpm2
2296 (package
2297 (name "r-rstpm2")
2298 (version "1.5.6")
2299 (source
2300 (origin
2301 (method url-fetch)
2302 (uri (cran-uri "rstpm2" version))
2303 (sha256
2304 (base32
2305 "17mhzfxh761vl64ar6pynpj3k2jkhjgbacxsjhkrfkbmy3aiv0d1"))))
2306 (properties `((upstream-name . "rstpm2")))
2307 (build-system r-build-system)
2308 (propagated-inputs
2309 (list r-bbmle
2310 r-bh
2311 r-desolve
2312 r-fastghquad
2313 r-mgcv
2314 r-rcpp
2315 r-rcpparmadillo
2316 r-survival))
2317 (native-inputs
2318 (list gfortran))
2319 (home-page "https://github.com/mclements/rstpm2")
2320 (synopsis "Link-based survival models")
2321 (description
2322 "This package provides R implementations of @dfn{generalized survival
2323 models} (GSMs), smooth @dfn{accelerated failure time} (AFT) models and Markov
2324 multi-state models.")
2325 ;; One of these licenses
2326 (license (list license:gpl2 license:gpl3))))
2327
2328 ;; This package includes minified JavaScript files. When upgrading please
2329 ;; check that there are no new minified JavaScript files.
2330 (define-public r-jquerylib
2331 (package
2332 (name "r-jquerylib")
2333 (version "0.1.4")
2334 (source
2335 (origin
2336 (method url-fetch)
2337 (uri (cran-uri "jquerylib" version))
2338 (sha256
2339 (base32
2340 "04a40v4znpj98j7y6009d74a6g9dchj5rr3p08cgz9p3rlfw3g7h"))
2341 (snippet
2342 '(for-each delete-file
2343 '("inst/lib/1.12.4/jquery-1.12.4.min.js"
2344 "inst/lib/2.2.4/jquery-2.2.4.min.js"
2345 "inst/lib/3.6.0/jquery-3.6.0.min.js")))))
2346 (properties `((upstream-name . "jquerylib")))
2347 (build-system r-build-system)
2348 (arguments
2349 `(#:modules ((guix build utils)
2350 (guix build r-build-system)
2351 (srfi srfi-1))
2352 #:phases
2353 (modify-phases %standard-phases
2354 (add-after 'unpack 'process-javascript
2355 (lambda* (#:key inputs #:allow-other-keys)
2356 (with-directory-excursion "inst/lib/"
2357 (call-with-values
2358 (lambda ()
2359 (unzip2
2360 `(("1.12.4/jquery-1.12.4.js"
2361 "1.12.4/jquery-1.12.4.min.js")
2362 ("2.2.4/jquery-2.2.4.js"
2363 "2.2.4/jquery-2.2.4.min.js")
2364 ("3.6.0/jquery-3.6.0.js"
2365 "3.6.0/jquery-3.6.0.min.js"))))
2366 (lambda (sources targets)
2367 (for-each (lambda (source target)
2368 (format #t "Processing ~a --> ~a~%"
2369 source target)
2370 (invoke "esbuild" source "--minify"
2371 (string-append "--outfile=" target)))
2372 sources targets)))))))))
2373 (propagated-inputs
2374 (list r-htmltools))
2375 (native-inputs
2376 (list esbuild))
2377 (home-page "https://cran.r-project.org/package=jquerylib")
2378 (synopsis "Obtain jQuery as an HTML dependency object")
2379 (description
2380 "Obtain any major version of jQuery and use it in any webpage generated
2381 by htmltools (e.g. shiny, htmlwidgets, and rmarkdown). Most R users don't
2382 need to use this package directly, but other R packages (e.g. shiny,
2383 rmarkdown, etc.) depend on this package to avoid bundling redundant copies of
2384 jQuery.")
2385 (license license:expat)))
2386
2387 (define-public r-sass
2388 (package
2389 (name "r-sass")
2390 (version "0.4.1")
2391 (source
2392 (origin
2393 (method url-fetch)
2394 (uri (cran-uri "sass" version))
2395 (sha256
2396 (base32
2397 "1fq8wqnxmx10lg0dh4qzmxdkhd22fjh8vhassapxb1chsimwn3w5"))))
2398 (properties `((upstream-name . "sass")))
2399 (build-system r-build-system)
2400 (propagated-inputs
2401 (list r-fs r-htmltools r-r6 r-rappdirs r-rlang))
2402 (native-inputs (list r-knitr))
2403 (home-page "https://github.com/rstudio/sass")
2404 (synopsis "Syntactically Awesome Style Sheets (SASS)")
2405 (description
2406 "This package provides an SCSS compiler, powered by the libsass library.
2407 With this, R developers can use variables, inheritance, and functions to
2408 generate dynamic style sheets. The package uses the Sass CSS extension
2409 language, which is stable, powerful, and CSS compatible.")
2410 (license license:expat)))
2411
2412 (define-public r-saver
2413 (package
2414 (name "r-saver")
2415 (version "1.1.2")
2416 (source (origin
2417 (method url-fetch)
2418 (uri (cran-uri "SAVER" version))
2419 (sha256
2420 (base32
2421 "1s1kw8idkaj7j90fw4qn9k0wd4vz0sblsk06ry6lm4afcar0p158"))))
2422 (properties `((upstream-name . "SAVER")))
2423 (build-system r-build-system)
2424 (propagated-inputs
2425 (list r-doparallel
2426 r-foreach
2427 r-glmnet
2428 r-iterators
2429 r-matrix))
2430 (native-inputs (list r-knitr))
2431 (home-page "https://github.com/mohuangx/SAVER")
2432 (synopsis
2433 "Recovery of gene expression profile in noisy and sparse scRNA-seq data")
2434 (description
2435 "This package is an implementation of a regularized regression prediction
2436 and empirical Bayes method to recover the true gene expression profile in noisy
2437 and sparse single-cell RNA-seq data. In @dfn{single-cell RNA sequencing}
2438 (scRNA-seq) studies, only a small fraction of the transcripts present in each
2439 cell are sequenced. This leads to unreliable quantification of genes with low
2440 or moderate expression, which hinders downstream analysis. This package
2441 @dfn{single-cell analysis via expression recovery} (SAVER) implements an
2442 expression recovery method for unique molecule index (UMI)-based scRNA-seq
2443 data that borrows information across genes and cells to provide accurate
2444 expression estimates for all genes.")
2445 (license license:gpl2)))
2446
2447 ;; This package includes minified JavaScript files. When upgrading please
2448 ;; check that there are no new minified JavaScript files.
2449 (define-public r-bslib
2450 (package
2451 (name "r-bslib")
2452 (version "0.3.1")
2453 (source
2454 (origin
2455 (method url-fetch)
2456 (uri (cran-uri "bslib" version))
2457 (sha256
2458 (base32
2459 "0jcqklry1nkibz0sydsz5xdsnb4wnrrhvmyr9ji3k45bbipbap2z"))
2460 (snippet
2461 '(for-each delete-file
2462 '("inst/lib/bs-a11y-p/plugins/js/bootstrap-accessibility.min.js"
2463 "inst/lib/bs-colorpicker/js/bootstrap-colorpicker.min.js"
2464 "inst/lib/bs3/assets/javascripts/bootstrap.min.js"
2465 "inst/lib/bs4/dist/js/bootstrap.bundle.min.js"
2466 "inst/lib/bs5/dist/js/bootstrap.bundle.min.js")))))
2467 (properties `((upstream-name . "bslib")))
2468 (build-system r-build-system)
2469 (arguments
2470 `(#:modules ((guix build utils)
2471 (guix build r-build-system)
2472 (srfi srfi-1))
2473 #:phases
2474 (modify-phases %standard-phases
2475 (add-after 'unpack 'process-javascript
2476 (lambda* (#:key inputs #:allow-other-keys)
2477 (with-directory-excursion "inst/lib/"
2478 (call-with-values
2479 (lambda ()
2480 (unzip2
2481 `(("bs-a11y-p/plugins/js/bootstrap-accessibility.js"
2482 "bs-a11y-p/plugins/js/bootstrap-accessibility.min.js")
2483 ("bs-colorpicker/js/bootstrap-colorpicker.js"
2484 "bs-colorpicker/js/bootstrap-colorpicker.min.js")
2485 ("bs3/assets/javascripts/bootstrap.js"
2486 "bs3/assets/javascripts/bootstrap.min.js")
2487 (,(assoc-ref inputs "js-bootstrap4-bundle")
2488 "bs4/dist/js/bootstrap.bundle.min.js")
2489 (,(assoc-ref inputs "js-bootstrap5-bundle")
2490 "bs5/dist/js/bootstrap.bundle.min.js"))))
2491 (lambda (sources targets)
2492 (for-each (lambda (source target)
2493 (format #t "Processing ~a --> ~a~%"
2494 source target)
2495 (invoke "esbuild" source "--minify"
2496 (string-append "--outfile=" target)))
2497 sources targets)))))))))
2498 (propagated-inputs
2499 (list r-htmltools r-jquerylib r-jsonlite r-rlang r-sass))
2500 (native-inputs
2501 `(("esbuild" ,esbuild)
2502 ("js-bootstrap4-bundle"
2503 ,(origin
2504 (method url-fetch)
2505 (uri "https://raw.githubusercontent.com/twbs/bootstrap/v4.6.0/dist/js/bootstrap.bundle.js")
2506 (sha256
2507 (base32
2508 "04abvgp923w36qfqkkl2syim3bl119nwxbgials90z1jyb8jgss1"))))
2509 ("js-bootstrap5-bundle"
2510 ,(origin
2511 (method url-fetch)
2512 (uri "https://raw.githubusercontent.com/twbs/bootstrap/v5.0.2/dist/js/bootstrap.bundle.js")
2513 (sha256
2514 (base32
2515 "06vin94nqw1vzs4zrqcms8z9js9fckbj8gwyx07awm8jkjhnqfhl"))))))
2516 (home-page "https://rstudio.github.io/bslib/")
2517 (synopsis "Custom Bootstrap Sass themes for shiny and rmarkdown")
2518 (description
2519 "This package simplifies custom CSS styling of both shiny and rmarkdown
2520 via Bootstrap Sass. It supports both Bootstrap 3 and 4 as well as their
2521 various Bootswatch themes. An interactive widget is also provided for
2522 previewing themes in real time.")
2523 (license license:expat)))
2524
2525 ;; This package includes minified JavaScript files. When upgrading please
2526 ;; check that there are no new minified JavaScript files.
2527 (define-public r-shiny
2528 (package
2529 (name "r-shiny")
2530 (version "1.7.1")
2531 (source
2532 (origin
2533 (method git-fetch)
2534 (uri (git-reference
2535 (url "https://github.com/rstudio/shiny")
2536 (commit (string-append "v" version))))
2537 (file-name (git-file-name name version))
2538 (sha256
2539 (base32
2540 "0wvc6jlgs41p05wbk8gahnl7sfnc4hpliyh9dbi5w52ngsg6wcr7"))
2541 (snippet
2542 '(for-each delete-file
2543 '("inst/www/shared/bootstrap/js/bootstrap.min.js"
2544 "inst/www/shared/bootstrap/accessibility/js/bootstrap-accessibility.min.js" ; TODO
2545 "inst/www/shared/datatables/js/jquery.dataTables.min.js"
2546 "inst/www/shared/datepicker/js/bootstrap-datepicker.min.js"
2547 "inst/www/shared/highlight/highlight.pack.js"
2548 "inst/www/shared/ionrangeslider/js/ion.rangeSlider.min.js"
2549 "inst/www/shared/jquery.min.js"
2550 "inst/www/shared/jqueryui/jquery-ui.min.js"
2551 "inst/www/shared/legacy/jquery.min.js"
2552 "inst/www/shared/selectize/accessibility/js/selectize-plugin-a11y.min.js"
2553 "inst/www/shared/selectize/js/selectize.min.js"
2554 "inst/www/shared/shiny.min.js"
2555 "inst/www/shared/showdown/compressed/showdown.js"
2556 "inst/www/shared/strftime/strftime-min.js")))))
2557 (build-system r-build-system)
2558 (arguments
2559 `(#:modules ((guix build r-build-system)
2560 (guix build minify-build-system)
2561 (guix build utils)
2562 (ice-9 match))
2563 #:imported-modules (,@%r-build-system-modules
2564 (guix build minify-build-system))
2565 #:phases
2566 (modify-phases (@ (guix build r-build-system) %standard-phases)
2567 (add-after 'unpack 'replace-bundled-minified-JavaScript
2568 (lambda* (#:key inputs #:allow-other-keys)
2569 (let ((replace-file (lambda (old new)
2570 (format #t "replacing ~a with ~a\n" old new)
2571 (symlink new old))))
2572 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
2573 ;; contain just data. They are not minified code, so we don't
2574 ;; replace them.
2575 (with-directory-excursion "inst/www/shared"
2576 (replace-file "strftime/strftime-min.js"
2577 (search-input-file inputs
2578 "/share/javascript/strftime.min.js"))
2579 (replace-file "highlight/highlight.pack.js"
2580 (search-input-file inputs
2581 "/share/javascript/highlight.min.js"))
2582 (replace-file "datatables/js/jquery.dataTables.min.js"
2583 (search-input-file inputs
2584 "/share/javascript/jquery.dataTables.min.js"))
2585 (replace-file "selectize/js/selectize.min.js"
2586 (search-input-file inputs
2587 "/share/javascript/selectize.min.js"))
2588 (for-each (match-lambda
2589 ((source . target)
2590 (minify source #:target target)))
2591 `(("jqueryui/jquery-ui.js" .
2592 "jqueryui/jquery-ui.min.js")
2593 ("datepicker/js/bootstrap-datepicker.js" .
2594 "datepicker/js/bootstrap-datepicker.min.js")
2595 ("ionrangeslider/js/ion.rangeSlider.js" .
2596 "ionrangeslider/js/ion.rangeSlider.min.js")
2597 ("bootstrap/js/bootstrap.js" .
2598 "bootstrap/js/bootstrap.min.js")
2599 (,(assoc-ref inputs "js-bootstrap-accessibility") .
2600 "bootstrap/accessibility/js/bootstrap-accessibility.min.js")
2601 ("shiny.js" .
2602 "shiny.min.js")
2603 ("jquery.js" .
2604 "jquery.min.js")
2605 ("legacy/jquery.js" .
2606 "legacy/jquery.min.js")
2607 ("selectize/accessibility/js/selectize-plugin-a11y.js" .
2608 "selectize/accessibility/js/selectize-plugin-a11y.min.js")
2609 ("showdown/src/showdown.js" .
2610 "showdown/compressed/showdown.js"))))))))))
2611 (propagated-inputs
2612 (list r-bslib
2613 r-cachem
2614 r-commonmark
2615 r-crayon
2616 r-ellipsis
2617 r-fastmap
2618 r-fontawesome
2619 r-glue
2620 r-htmltools
2621 r-httpuv
2622 r-jsonlite
2623 r-later
2624 r-lifecycle
2625 r-mime
2626 r-promises
2627 r-r6
2628 r-rlang
2629 r-sourcetools
2630 r-withr
2631 r-xtable))
2632 (inputs
2633 (list js-datatables js-selectize js-strftime js-highlight))
2634 (native-inputs
2635 `(("uglifyjs" ,node-uglify-js)
2636 ("gfortran" ,gfortran)
2637 ("js-bootstrap-accessibility"
2638 ,(origin
2639 (method url-fetch)
2640 (uri "https://raw.githubusercontent.com/paypal/bootstrap-accessibility-plugin/\
2641 v1.0.7/_site/plugins/js/bootstrap-accessibility.js")
2642 (sha256
2643 (base32
2644 "1489wyzwrpf86y7vhc13n4v3mszmsfybhd3f75jkpnbvyp5sncm8"))))))
2645 (home-page "https://shiny.rstudio.com")
2646 (synopsis "Easy interactive web applications with R")
2647 (description
2648 "Makes it incredibly easy to build interactive web applications
2649 with R. Automatic \"reactive\" binding between inputs and outputs and
2650 extensive prebuilt widgets make it possible to build beautiful,
2651 responsive, and powerful applications with minimal effort.")
2652 (license license:artistic2.0)))
2653
2654 (define-public r-shinyhelper
2655 (package
2656 (name "r-shinyhelper")
2657 (version "0.3.2")
2658 (source
2659 (origin
2660 (method url-fetch)
2661 (uri (cran-uri "shinyhelper" version))
2662 (sha256
2663 (base32 "1c4hvf19j3yyh8r12nx85ldkxs89g98q74csnqs5ml5l79a65vgp"))))
2664 (properties `((upstream-name . "shinyhelper")))
2665 (build-system r-build-system)
2666 (propagated-inputs (list r-markdown r-shiny))
2667 (home-page "https://cran.r-project.org/package=shinyhelper")
2668 (synopsis "Easily add Markdown help files to shiny app elements")
2669 (description
2670 "This package creates a lightweight way to add markdown helpfiles to
2671 Shiny apps, using modal dialog boxes, with no need to observe each help button
2672 separately.")
2673 (license license:gpl3)))
2674
2675 ;; This package includes minified JavaScript files. When upgrading please
2676 ;; check that there are no new minified JavaScript files.
2677 (define-public r-shinytree
2678 (package
2679 (name "r-shinytree")
2680 (version "0.2.7")
2681 (source
2682 (origin
2683 (method url-fetch)
2684 (uri (cran-uri "shinyTree" version))
2685 (sha256
2686 (base32
2687 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
2688 (modules '((guix build utils)))
2689 (snippet
2690 '(begin
2691 ;; Delete minified JavaScript
2692 (for-each delete-file
2693 '("inst/www/jsTree-3.3.7/libs/require.js"
2694 "inst/www/jsTree-3.3.7/libs/jquery.js"
2695 "inst/www/jsTree-3.3.7/jstree.min.js"))
2696 #t))))
2697 (properties `((upstream-name . "shinyTree")))
2698 (build-system r-build-system)
2699 (arguments
2700 `(#:modules ((guix build utils)
2701 (guix build r-build-system)
2702 (srfi srfi-1)
2703 (ice-9 popen))
2704 #:phases
2705 (modify-phases %standard-phases
2706 (add-after 'unpack 'replace-minified-javascript
2707 (lambda* (#:key inputs #:allow-other-keys)
2708 (with-directory-excursion "inst/www/jsTree-3.3.7/"
2709 (symlink (search-input-file inputs
2710 "/share/javascript/require.min.js")
2711 "libs/require.js")
2712 (call-with-values
2713 (lambda ()
2714 (unzip2
2715 `((,(assoc-ref inputs "js-jquery")
2716 "libs/jquery.js")
2717 ("jstree.js"
2718 "jstree.min.js"))))
2719 (lambda (sources targets)
2720 (for-each (lambda (source target)
2721 (format #t "Processing ~a --> ~a~%"
2722 source target)
2723 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
2724 (call-with-output-file target
2725 (lambda (port)
2726 (dump-port minified port)))))
2727 sources targets))))
2728 #t)))))
2729 (propagated-inputs
2730 (list r-htmlwidgets r-jsonlite r-promises r-shiny r-stringr))
2731 (inputs
2732 (list js-requirejs))
2733 (native-inputs
2734 `(("uglifyjs" ,node-uglify-js)
2735 ("js-jquery"
2736 ,(origin
2737 (method url-fetch)
2738 (uri "https://code.jquery.com/jquery-3.3.1.js")
2739 (sha256
2740 (base32
2741 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
2742 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
2743 (synopsis "jsTree bindings for Shiny")
2744 (description
2745 "This package exposes R bindings to jsTree, a JavaScript library that
2746 supports interactive trees, to enable rich, editable trees in Shiny.")
2747 (license license:expat)))
2748
2749 (define-public r-shinydashboard
2750 (package
2751 (name "r-shinydashboard")
2752 (version "0.7.2")
2753 (source (origin
2754 (method url-fetch)
2755 (uri (cran-uri "shinydashboard" version))
2756 (sha256
2757 (base32
2758 "0hrqkwlpb8rnmp5j74p134g4c4cl16icmwc2ip6k1634fa2y8vm5"))))
2759 (build-system r-build-system)
2760 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
2761 ;; Regenerate it from the included sources.
2762 (arguments
2763 `(#:phases
2764 (modify-phases %standard-phases
2765 (add-after 'unpack 'generate-minified-javascript
2766 (lambda _
2767 (with-directory-excursion "inst/AdminLTE"
2768 (let ((target "app.min.js")
2769 (source "app.js"))
2770 (format #t "Processing ~a --> ~a~%"
2771 source target)
2772 (delete-file target)
2773 (invoke "esbuild" source "--minify"
2774 (string-append "--outfile=" target)))))))))
2775 (propagated-inputs
2776 (list r-htmltools r-promises r-shiny))
2777 (native-inputs
2778 (list esbuild))
2779 (home-page "https://rstudio.github.io/shinydashboard/")
2780 (synopsis "Create dashboards with shiny")
2781 (description "This package provides an extension to the Shiny web
2782 application framework for R, making it easy to create attractive dashboards.")
2783 ;; This package includes software that was released under the Expat
2784 ;; license, but the whole package is released under GPL version 2 or
2785 ;; later.
2786 (license license:gpl2+)))
2787
2788 (define-public r-shinyfiles
2789 (package
2790 (name "r-shinyfiles")
2791 (version "0.9.2")
2792 (source
2793 (origin
2794 (method url-fetch)
2795 (uri (cran-uri "shinyFiles" version))
2796 (sha256
2797 (base32 "1l4a4v9ivxkj2vx6xw4z3pk7a8px23icppcgvgpybibq2j74pglg"))))
2798 (properties `((upstream-name . "shinyFiles")))
2799 (build-system r-build-system)
2800 (propagated-inputs
2801 (list r-fs r-htmltools r-jsonlite r-shiny r-tibble))
2802 (home-page "https://github.com/thomasp85/shinyFiles")
2803 (synopsis "Server-side file system viewer for Shiny")
2804 (description
2805 "This package provides functionality for client-side navigation of the
2806 server side file system in shiny apps. In case the app is running locally
2807 this gives the user direct access to the file system without the need to
2808 \"download\" files to a temporary location. Both file and folder selection as
2809 well as file saving is available.")
2810 (license license:gpl2+)))
2811
2812 (define-public r-shinythemes
2813 (package
2814 (name "r-shinythemes")
2815 (version "1.2.0")
2816 (source
2817 (origin
2818 (method url-fetch)
2819 (uri (cran-uri "shinythemes" version))
2820 (sha256
2821 (base32
2822 "0qr9bfxw8afxns44i2j4msignf6g5qb2nzpay2lpv343rrlqbmip"))))
2823 (properties `((upstream-name . "shinythemes")))
2824 (build-system r-build-system)
2825 (propagated-inputs (list r-shiny))
2826 (home-page "https://rstudio.github.io/shinythemes/")
2827 (synopsis "Themes for Shiny")
2828 (description
2829 "This package provides themes for use with Shiny. It includes several
2830 Bootstrap themes, which are packaged for use with Shiny applications.")
2831 ;; The package is released under version 3 of the GPL, but it includes
2832 ;; source files that are covered by the Expat license. It also includes
2833 ;; fonts under SIL or the ASL.
2834 (license (list license:gpl3 license:expat
2835 license:silofl1.1 license:asl2.0))))
2836
2837 ;; The package sources include minified variants of d3.js and non-minified
2838 ;; source code of d3-jetpack.
2839 (define-public r-d3r
2840 (package
2841 (name "r-d3r")
2842 (version "1.0.0")
2843 (source
2844 (origin
2845 (method url-fetch)
2846 (uri (cran-uri "d3r" version))
2847 (sha256
2848 (base32
2849 "1qijkllfaaw0lb29j8mappm8jz9kg8gkihxq5wqhb4gabsazdwva"))))
2850 (build-system r-build-system)
2851 (arguments
2852 `(#:modules ((guix build utils)
2853 (guix build r-build-system)
2854 (srfi srfi-1))
2855 #:phases
2856 (modify-phases %standard-phases
2857 (add-after 'unpack 'process-javascript
2858 (lambda* (#:key inputs #:allow-other-keys)
2859 (with-directory-excursion "inst/www/d3/"
2860 (call-with-values
2861 (lambda ()
2862 (unzip2
2863 `((,(assoc-ref inputs "d3.v3.js")
2864 "v3/dist/d3.min.js")
2865 (,(assoc-ref inputs "d3.v4.js")
2866 "v4/dist/d3.min.js")
2867 (,(assoc-ref inputs "d3.v5.js")
2868 "v5/dist/d3.min.js")
2869 (,(assoc-ref inputs "d3.v6.js")
2870 "v6/dist/d3.min.js")
2871 (,(assoc-ref inputs "d3.v7.js")
2872 "v7/dist/d3.min.js"))))
2873 (lambda (sources targets)
2874 (for-each (lambda (source target)
2875 (format #t "Processing ~a --> ~a~%"
2876 source target)
2877 (delete-file target)
2878 (invoke "esbuild" source "--minify"
2879 (string-append "--outfile=" target)))
2880 sources targets)))))))))
2881 (propagated-inputs
2882 (list r-dplyr r-htmltools r-rlang r-tidyr))
2883 (native-inputs
2884 `(("esbuild" ,esbuild)
2885 ("d3.v3.js"
2886 ,(origin
2887 (method url-fetch)
2888 (uri "https://d3js.org/d3.v3.js")
2889 (sha256
2890 (base32
2891 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
2892 ("d3.v4.js"
2893 ,(origin
2894 (method url-fetch)
2895 (uri "https://d3js.org/d3.v4.js")
2896 (sha256
2897 (base32
2898 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
2899 ("d3.v5.js"
2900 ,(origin
2901 (method url-fetch)
2902 (uri "https://d3js.org/d3.v5.js")
2903 (sha256
2904 (base32
2905 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))
2906 ("d3.v6.js"
2907 ,(origin
2908 (method url-fetch)
2909 (uri "https://d3js.org/d3.v6.js")
2910 (sha256
2911 (base32
2912 "1x6432ca7p1pfxhz3airzw943fincn9izzxkclc1wmphcvv2n2p9"))))
2913 ("d3.v7.js"
2914 ,(origin
2915 (method url-fetch)
2916 (uri "https://d3js.org/d3.v7.js")
2917 (sha256
2918 (base32
2919 "0sd6vavxs8mx5xyb8xahlqghdiczqd284a7d5wravhqnrj0bw097"))))))
2920 (home-page "https://github.com/timelyportfolio/d3r")
2921 (synopsis "d3.js utilities for R")
2922 (description
2923 "This package provides a suite of functions to help ease the use of the
2924 d3.js visualization library in R. These helpers include
2925 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
2926 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
2927 R objects into the JSON format that the d3.js library expects.")
2928 (license license:bsd-3)))
2929
2930 ;; We use the latest commit here because the last release was in 2016 while
2931 ;; the latest commit was in 2018.
2932 (define-public r-sankeyd3
2933 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
2934 (revision "1"))
2935 (package
2936 (name "r-sankeyd3")
2937 (version (git-version "0.3.2" revision commit))
2938 (source
2939 (origin
2940 (method git-fetch)
2941 (uri (git-reference
2942 (url "https://github.com/fbreitwieser/sankeyD3")
2943 (commit commit)))
2944 (file-name (git-file-name name version))
2945 (sha256
2946 (base32
2947 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
2948 (build-system r-build-system)
2949 (propagated-inputs
2950 (list r-d3r r-htmlwidgets r-shiny r-magrittr))
2951 (home-page "https://github.com/fbreitwieser/sankeyD3")
2952 (synopsis "Sankey network graphs from R")
2953 (description
2954 "This package provides an R library to generate Sankey network graphs
2955 in R and Shiny via the D3 visualization library.")
2956 ;; The R code is licensed under GPLv3+. It includes the non-minified
2957 ;; JavaScript source code of d3-sankey, which is released under the
2958 ;; 3-clause BSD license.
2959 (license (list license:gpl3+ license:bsd-3)))))
2960
2961 (define-public r-wesanderson
2962 (package
2963 (name "r-wesanderson")
2964 (version "0.3.6")
2965 (source
2966 (origin
2967 (method url-fetch)
2968 (uri (cran-uri "wesanderson" version))
2969 (sha256
2970 (base32
2971 "09mr6p2jmqdjq27cz974w5hyxgn929zp9z3inhxqmmh1582fmdi2"))))
2972 (properties `((upstream-name . "wesanderson")))
2973 (build-system r-build-system)
2974 (home-page "https://github.com/karthik/wesanderson")
2975 (synopsis "Wes Anderson color palette generator")
2976 (description
2977 "This package provides color palettes that have been generated mostly
2978 from Wes Anderson movies.")
2979 (license license:expat)))
2980
2981 (define-public r-gg-gap
2982 (package
2983 (name "r-gg-gap")
2984 (version "1.3")
2985 (source
2986 (origin
2987 (method url-fetch)
2988 (uri (cran-uri "gg.gap" version))
2989 (sha256
2990 (base32
2991 "0m66050ryn31xmsmmikjsssllasvjdmp9yjbwfdwfpwdv106zn9h"))))
2992 (properties `((upstream-name . "gg.gap")))
2993 (build-system r-build-system)
2994 (propagated-inputs
2995 (list r-cowplot r-ggplot2))
2996 (home-page "https://github.com/ChrisLou-bioinfo/gg.gap")
2997 (synopsis "Define segments on the y-axis for ggplot2")
2998 (description
2999 "The @code{gg.gap} function enables you to define segments for the y-axis
3000 in a ggplot2 plot.")
3001 (license license:gpl3)))
3002
3003 (define-public r-mbess
3004 (package
3005 (name "r-mbess")
3006 (version "4.9.0")
3007 (source
3008 (origin
3009 (method url-fetch)
3010 (uri (cran-uri "MBESS" version))
3011 (sha256
3012 (base32 "0qmyvjx2zn5hlzdbz8c94g8l4707swhn7sq9mxkdqiydmflzv0b5"))))
3013 (properties `((upstream-name . "MBESS")))
3014 (build-system r-build-system)
3015 (propagated-inputs
3016 (list r-boot r-lavaan r-mass r-mnormt r-nlme r-openmx r-sem r-semtools))
3017 (home-page "https://www3.nd.edu/~kkelley/site/MBESS.html")
3018 (synopsis "Methods for designing research studies")
3019 (description
3020 "This package implements methods that are useful in designing research
3021 studies and analyzing data, with particular emphasis on methods that are
3022 developed for or used within the behavioral, educational, and social
3023 sciences (broadly defined). That being said, many of the methods implemented
3024 within MBESS are applicable to a wide variety of disciplines. MBESS has a
3025 suite of functions for a variety of related topics, such as effect sizes,
3026 confidence intervals for effect sizes (including standardized effect sizes and
3027 noncentral effect sizes), sample size planning (from the @dfn{accuracy in
3028 parameter estimation} (AIPE), power analytic, equivalence, and minimum-risk
3029 point estimation perspectives), mediation analysis, various properties of
3030 distributions, and a variety of utility functions.")
3031 ;; Either version of the GPL.
3032 (license (list license:gpl2 license:gpl3))))
3033
3034 (define-public r-homologene
3035 (package
3036 (name "r-homologene")
3037 (version "1.4.68.19.3.27")
3038 (source
3039 (origin
3040 (method url-fetch)
3041 (uri (cran-uri "homologene" version))
3042 (sha256
3043 (base32 "0d7wxisk0vqk1n165v1i19bc02zv78h5r5d3jqai5y6nkmwn01sh"))))
3044 (properties `((upstream-name . "homologene")))
3045 (build-system r-build-system)
3046 (propagated-inputs
3047 (list r-dplyr r-magrittr r-purrr r-r-utils r-readr))
3048 (home-page "https://github.com/oganm/homologene")
3049 (synopsis "Quick access to homologene and gene annotation updates")
3050 (description
3051 "This package provides a wrapper for the homologene database by the
3052 National Center for Biotechnology Information (NCBI). It allows searching for
3053 gene homologs across species. The package also includes an updated version of
3054 the homologene database where gene identifiers and symbols are replaced with
3055 their latest (at the time of submission) version and functions to fetch latest
3056 annotation data to keep updated.")
3057 (license license:expat)))
3058
3059 (define-public r-ggtern
3060 (package
3061 (name "r-ggtern")
3062 (version "3.3.5")
3063 (source
3064 (origin
3065 (method url-fetch)
3066 (uri (cran-uri "ggtern" version))
3067 (sha256
3068 (base32 "15hhn8msy0l8zbq8ms0zvg1iajn1c28gd77v3hp6dvwwsla8zzbd"))))
3069 (properties `((upstream-name . "ggtern")))
3070 (build-system r-build-system)
3071 (propagated-inputs
3072 (list r-compositions
3073 r-ggplot2
3074 r-gridextra
3075 r-gtable
3076 r-hexbin
3077 r-latex2exp
3078 r-lattice
3079 r-mass
3080 r-plyr
3081 r-proto
3082 r-scales))
3083 (home-page "http://www.ggtern.com")
3084 (synopsis "Extension to ggplot2 for ternary diagrams")
3085 (description
3086 "This package extends the functionality of ggplot2, providing the
3087 capability to plot ternary diagrams for (a subset of) the ggplot2 geometries.
3088 Additionally, ggtern has implemented several new geometries which are
3089 unavailable to the standard ggplot2 release.")
3090 (license license:gpl2)))
3091
3092 (define-public r-tablerdash
3093 (package
3094 (name "r-tablerdash")
3095 (version "0.1.0")
3096 (source
3097 (origin
3098 (method url-fetch)
3099 (uri (cran-uri "tablerDash" version))
3100 (sha256
3101 (base32
3102 "1mnp6lxa7d669r325aynq1n3f35r9sy4v1fvdh4cymbf33s8mkmm"))
3103 (snippet
3104 '(begin
3105 ;; Delete minified JavaScript
3106 (for-each delete-file
3107 '("inst/tablerDash-0.1.0/require.min.js"
3108 "inst/bootstrap-4.0.0/bootstrap.bundle.min.js"))
3109 #true))))
3110 (properties `((upstream-name . "tablerDash")))
3111 (build-system r-build-system)
3112 (arguments
3113 `(#:modules ((guix build utils)
3114 (guix build r-build-system)
3115 (srfi srfi-1))
3116 #:phases
3117 (modify-phases %standard-phases
3118 (add-after 'unpack 'process-javascript
3119 (lambda* (#:key inputs #:allow-other-keys)
3120 (with-directory-excursion "inst"
3121 (call-with-values
3122 (lambda ()
3123 (unzip2
3124 `((,(assoc-ref inputs "js-requirejs")
3125 "tablerDash-0.1.0/require.min.js")
3126 (,(assoc-ref inputs "js-bootstrap")
3127 "bootstrap-4.0.0/bootstrap.bundle.min.js"))))
3128 (lambda (sources targets)
3129 (for-each (lambda (source target)
3130 (format #t "Processing ~a --> ~a~%"
3131 source target)
3132 (invoke "esbuild" source "--minify"
3133 (string-append "--outfile=" target)))
3134 sources targets))))
3135 #t)))))
3136 (propagated-inputs
3137 (list r-htmltools r-knitr r-shiny))
3138 (native-inputs
3139 `(("esbuild" ,esbuild)
3140 ("js-requirejs"
3141 ,(origin
3142 (method url-fetch)
3143 (uri "https://raw.githubusercontent.com/requirejs/requirejs/2.3.5/require.js")
3144 (sha256
3145 (base32
3146 "06w32mwqii9cx409ivda88z58qbkcdb4p6hf6jawchsgagaziyds"))))
3147 ("js-bootstrap"
3148 ,(origin
3149 (method url-fetch)
3150 (uri "https://raw.githubusercontent.com/twbs/bootstrap/\
3151 v4.0.0/dist/js/bootstrap.bundle.js")
3152 (sha256
3153 (base32
3154 "0cvfqffn45vfbj3fk6wmrhkyndhk4id89vgydssbbzxjkfwprfrj"))))))
3155 (home-page "https://rinterface.github.io/tablerDash/")
3156 (synopsis "Tabler API for Shiny")
3157 (description
3158 "This package provides an R interface to the
3159 @url{https://tabler.io,Tabler} HTML template. tablerDash is a light Bootstrap
3160 4 dashboard template. There are different layouts available such as a one
3161 page dashboard or a multi-page template, where the navigation menu is
3162 contained in the navigation bar.")
3163 (license license:gpl2+)))
3164
3165 (define-public r-spelling
3166 (package
3167 (name "r-spelling")
3168 (version "2.2")
3169 (source
3170 (origin
3171 (method url-fetch)
3172 (uri (cran-uri "spelling" version))
3173 (sha256
3174 (base32
3175 "179nj9w1v27qq9q5240ddvggp0795998sxyqjvbqjvq9dmach3bl"))))
3176 (properties `((upstream-name . "spelling")))
3177 (build-system r-build-system)
3178 (propagated-inputs
3179 (list r-commonmark r-hunspell r-knitr r-xml2))
3180 (home-page "https://docs.ropensci.org/spelling/")
3181 (synopsis "Tools for spell checking in R")
3182 (description
3183 "This is an R package for spell checking common document formats
3184 including LaTeX, markdown, manual pages, and DESCRIPTION files. It includes
3185 utilities to automate checking of documentation and vignettes as a unit test
3186 during @code{R CMD check}. Both British and American English are supported
3187 out of the box and other languages can be added. In addition, packages may
3188 define a wordlist to allow custom terminology without having to abuse
3189 punctuation.")
3190 (license license:expat)))
3191
3192 (define-public r-crosstalk
3193 (package
3194 (name "r-crosstalk")
3195 (version "1.2.0")
3196 (source
3197 (origin
3198 (method url-fetch)
3199 (uri (cran-uri "crosstalk" version))
3200 (sha256
3201 (base32
3202 "180y7mhpj17axpadwhh7s0qvrpdnag7g977vk256l96d6nmvlds2"))))
3203 (build-system r-build-system)
3204 (propagated-inputs
3205 (list r-htmltools r-jsonlite r-lazyeval r-r6))
3206 (home-page "https://rstudio.github.io/crosstalk/")
3207 (synopsis "Inter-widget interactivity for HTML widgets")
3208 (description
3209 "This package provides building blocks for allowing HTML widgets to
3210 communicate with each other, with Shiny or without (i.e. static @code{.html}
3211 files). It currently supports linked brushing and filtering.")
3212 (license license:expat)))
3213
3214 (define-public r-rook
3215 (package
3216 (name "r-rook")
3217 (version "1.1-1")
3218 (source
3219 (origin
3220 (method url-fetch)
3221 (uri (cran-uri "Rook" version))
3222 (sha256
3223 (base32
3224 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
3225 (properties `((upstream-name . "Rook")))
3226 (build-system r-build-system)
3227 (propagated-inputs (list r-brew))
3228 (home-page "https://cran.r-project.org/web/packages/Rook")
3229 (synopsis "Web server interface for R")
3230 (description
3231 "This package contains the Rook specification and convenience software
3232 for building and running Rook applications. A Rook application is an R
3233 reference class object that implements a @code{call} method or an R closure
3234 that takes exactly one argument, an environment, and returns a list with three
3235 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
3236 (license license:gpl2)))
3237
3238 (define-public r-miniui
3239 (package
3240 (name "r-miniui")
3241 (version "0.1.1.1")
3242 (source
3243 (origin
3244 (method url-fetch)
3245 (uri (cran-uri "miniUI" version))
3246 (sha256
3247 (base32
3248 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
3249 (properties `((upstream-name . "miniUI")))
3250 (build-system r-build-system)
3251 (propagated-inputs
3252 (list r-htmltools r-shiny))
3253 (home-page "https://cran.r-project.org/web/packages/miniUI/")
3254 (synopsis "Shiny UI widgets for small screens")
3255 (description
3256 "This package provides UI widget and layout functions for writing Shiny apps that
3257 work well on small screens.")
3258 (license license:gpl3)))
3259
3260 (define-public r-feather
3261 (package
3262 (name "r-feather")
3263 (version "0.3.5")
3264 (source
3265 (origin
3266 (method url-fetch)
3267 (uri (cran-uri "feather" version))
3268 (sha256
3269 (base32
3270 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
3271 (build-system r-build-system)
3272 (propagated-inputs
3273 (list r-hms r-rcpp r-tibble))
3274 (home-page "https://github.com/wesm/feather")
3275 (synopsis "R Bindings to the Feather API")
3276 (description "Read and write feather files, a lightweight binary columnar
3277 data store designed for maximum speed.")
3278 (license license:asl2.0)))
3279
3280 (define-public r-maps
3281 (package
3282 (name "r-maps")
3283 (version "3.4.0")
3284 (source
3285 (origin
3286 (method url-fetch)
3287 (uri (cran-uri "maps" version))
3288 (sha256
3289 (base32
3290 "0ispkx1szgwxhr0zzhdzgqqwcgc6psg7vry4sj4rb89w76rcq63r"))))
3291 (build-system r-build-system)
3292 (home-page "https://cran.r-project.org/web/packages/maps")
3293 (synopsis "Draw geographical maps")
3294 (description "This package provides an R module for display of maps.
3295 Projection code and larger maps are in separate packages (@code{mapproj} and
3296 @code{mapdata}).")
3297 (license license:gpl2)))
3298
3299 (define-public r-mapproj
3300 (package
3301 (name "r-mapproj")
3302 (version "1.2.8")
3303 (source
3304 (origin
3305 (method url-fetch)
3306 (uri (cran-uri "mapproj" version))
3307 (sha256
3308 (base32
3309 "10bpib827011fpgvzsmlv4j3i41s0r3cv1hvawwdlk753s7i0pw6"))))
3310 (build-system r-build-system)
3311 (propagated-inputs (list r-maps))
3312 (home-page "https://cran.r-project.org/web/packages/mapproj")
3313 (synopsis "Map projection in R")
3314 (description "This package converts latitude/longitude into projected
3315 coordinates.")
3316 (license (list license:gpl2 ; The R interface
3317 (license:non-copyleft ; The C code
3318 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
3319 "Lucent Public License Version 1.02")))))
3320
3321 (define-public r-rgooglemaps
3322 (package
3323 (name "r-rgooglemaps")
3324 (version "1.4.5.3")
3325 (source
3326 (origin
3327 (method url-fetch)
3328 (uri (cran-uri "RgoogleMaps" version))
3329 (sha256
3330 (base32
3331 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
3332 (properties `((upstream-name . "RgoogleMaps")))
3333 (build-system r-build-system)
3334 (propagated-inputs
3335 (list r-png r-sp))
3336 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
3337 (synopsis "Use Google Maps in R")
3338 (description "This package serves two purposes:
3339 @enumerate
3340 @item Provide a comfortable R interface to query the Google server for static
3341 maps, and
3342 @item Use the map as a background image to overlay plots within R. This
3343 requires proper coordinate scaling.
3344 @end enumerate\n")
3345 (license license:gpl2+)))
3346
3347 (define-public r-geosphere
3348 (package
3349 (name "r-geosphere")
3350 (version "1.5-14")
3351 (source
3352 (origin
3353 (method url-fetch)
3354 (uri (cran-uri "geosphere" version))
3355 (sha256
3356 (base32
3357 "0bg4vfmrw140j2ax0p6bflvb77w03ir39wa87l96rj473jpa9hzj"))))
3358 (build-system r-build-system)
3359 (propagated-inputs (list r-sp))
3360 (home-page "https://cran.r-project.org/web/packages/geosphere")
3361 (synopsis "Spherical trigonometry")
3362 (description "This package computes spherical trigonometry for geographic
3363 applications. That is, compute distances and related measures for angular
3364 (longitude/latitude) locations.")
3365 (license license:gpl3+)))
3366
3367 (define-public r-jpeg
3368 (package
3369 (name "r-jpeg")
3370 (version "0.1-9")
3371 (source
3372 (origin
3373 (method url-fetch)
3374 (uri (cran-uri "jpeg" version))
3375 (sha256
3376 (base32
3377 "0wihj538wdnr71wdldym83qadb4kh68a6rkallwbh2f25r27b881"))))
3378 (build-system r-build-system)
3379 (inputs (list libjpeg-turbo))
3380 (home-page "https://www.rforge.net/jpeg/")
3381 (synopsis "Read and write JPEG images with R")
3382 (description "This package provides a way to read, write and display
3383 bitmap images stored in the JPEG format with R. It can read and write both
3384 files and in-memory raw vectors.")
3385 (license license:gpl2+)))
3386
3387 (define-public r-ggmap
3388 (package
3389 (name "r-ggmap")
3390 (version "3.0.0")
3391 (source
3392 (origin
3393 (method url-fetch)
3394 (uri (cran-uri "ggmap" version))
3395 (sha256
3396 (base32
3397 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
3398 (build-system r-build-system)
3399 (propagated-inputs
3400 (list r-bitops
3401 r-digest
3402 r-dplyr
3403 r-ggplot2
3404 r-glue
3405 r-httr
3406 r-jpeg
3407 r-magrittr
3408 r-plyr
3409 r-png
3410 r-purrr
3411 r-rgooglemaps
3412 r-rjson
3413 r-scales
3414 r-stringr
3415 r-tibble
3416 r-tidyr))
3417 (home-page "https://github.com/dkahle/ggmap")
3418 (synopsis "Spatial visualization with ggplot2")
3419 (description "This package provides a collection of functions to visualize
3420 spatial data and models on top of static maps from various online sources (e.g
3421 Google Maps and Stamen Maps). It includes tools common to those tasks,
3422 including functions for geolocation and routing.")
3423 (license license:gpl2)))
3424
3425 (define-public r-haven
3426 (package
3427 (name "r-haven")
3428 (version "2.5.0")
3429 (source
3430 (origin
3431 (method url-fetch)
3432 (uri (cran-uri "haven" version))
3433 (sha256
3434 (base32
3435 "1x5g6kjrzcyarbjz91f4aaspx7rb50qs6a9y29mzr3mjq4dk305m"))
3436 (modules '((guix build utils)))
3437 (snippet
3438 ;; unvendor readstat
3439 '(delete-file-recursively "src/readstat"))))
3440 (build-system r-build-system)
3441 (arguments
3442 '(#:phases
3443 (modify-phases %standard-phases
3444 (add-after 'unpack 'unbundle-readstat
3445 (lambda _
3446 ;; Not required, since we’re not building readstat.
3447 (substitute* "src/Makevars"
3448 (("-lz") "-lreadstat")))))))
3449 (inputs
3450 (list readstat))
3451 (native-inputs
3452 (list r-knitr))
3453 (propagated-inputs
3454 (list r-cli
3455 r-cpp11
3456 r-forcats
3457 r-hms
3458 r-lifecycle
3459 r-rlang
3460 r-readr
3461 r-tibble
3462 r-tidyselect
3463 r-vctrs))
3464 (home-page "https://haven.tidyverse.org")
3465 (synopsis "Import and export SPSS, Stata and SAS files")
3466 (description
3467 "This package lets you import foreign statistical formats into R via the
3468 @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
3469 (license license:expat)))
3470
3471 (define-public r-amap
3472 (package
3473 (name "r-amap")
3474 (version "0.8-18")
3475 (source (origin
3476 (method url-fetch)
3477 (uri (cran-uri "amap" version))
3478 (sha256
3479 (base32
3480 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
3481 (build-system r-build-system)
3482 (native-inputs
3483 (list gfortran))
3484 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
3485 (synopsis "Another multidimensional analysis package")
3486 (description "This package provides tools for clustering and principal
3487 component analysis (with robust methods, and parallelized functions).")
3488 (license license:gpl2+)))
3489
3490 (define-public r-ape
3491 (package
3492 (name "r-ape")
3493 (version "5.6-2")
3494 (source
3495 (origin
3496 (method url-fetch)
3497 (uri (cran-uri "ape" version))
3498 (sha256
3499 (base32
3500 "0mqjsh7maczd02iwa4fb896q3kgd9jnlilq7y1yz18ch0c54aqlv"))))
3501 (build-system r-build-system)
3502 (propagated-inputs
3503 (list r-lattice r-nlme r-rcpp))
3504 (home-page "http://ape-package.ird.fr/")
3505 (synopsis "Analyses of phylogenetics and evolution")
3506 (description
3507 "This package provides functions for reading, writing, plotting, and
3508 manipulating phylogenetic trees, analyses of comparative data in a
3509 phylogenetic framework, ancestral character analyses, analyses of
3510 diversification and macroevolution, computing distances from DNA sequences,
3511 and several other tools.")
3512 (license license:gpl2+)))
3513
3514 (define-public r-abbyyr
3515 (package
3516 (name "r-abbyyr")
3517 (version "0.5.5")
3518 (source
3519 (origin
3520 (method url-fetch)
3521 (uri (cran-uri "abbyyR" version))
3522 (sha256
3523 (base32
3524 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
3525 (properties `((upstream-name . "abbyyR")))
3526 (build-system r-build-system)
3527 (propagated-inputs
3528 (list r-curl
3529 r-httr
3530 r-plyr
3531 r-progress
3532 r-readr
3533 r-xml))
3534 (home-page "https://github.com/soodoku/abbyyR")
3535 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
3536 (description
3537 "This package provides tools to get text from images of text using Abbyy
3538 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
3539 OCR images, barcodes, forms, documents with machine readable zones, e.g.
3540 passports and get the results in a variety of formats including plain text and
3541 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
3542 (license license:expat)))
3543
3544 (define-public r-colorspace
3545 (package
3546 (name "r-colorspace")
3547 (version "2.0-3")
3548 (source
3549 (origin
3550 (method url-fetch)
3551 (uri (cran-uri "colorspace" version))
3552 (sha256
3553 (base32 "0zw52s8g2gxp8i1ax96azxmxqrbhb7aad5px0c1vgr6n9p682mp7"))))
3554 (build-system r-build-system)
3555 (native-inputs
3556 (list r-knitr))
3557 (home-page "https://cran.r-project.org/web/packages/colorspace")
3558 (synopsis "Color space manipulation")
3559 (description
3560 "This package carries out a mapping between assorted color spaces
3561 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
3562 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
3563 colors are provided.")
3564 (license license:bsd-3)))
3565
3566 (define-public r-glue
3567 (package
3568 (name "r-glue")
3569 (version "1.6.2")
3570 (source
3571 (origin
3572 (method url-fetch)
3573 (uri (cran-uri "glue" version))
3574 (sha256
3575 (base32
3576 "1gzxk5jgdh2xq9r7z09xs306ygzf27vhg3pyfl7ck1755gqii9cx"))))
3577 (build-system r-build-system)
3578 ;; knitr depends on glue, so we can't add knitr here to build the
3579 ;; vignettes.
3580 #;
3581 (native-inputs
3582 `(("r-knitr" ,r-knitr)))
3583 (home-page "https://github.com/tidyverse/glue")
3584 (synopsis "Interpreted string literals")
3585 (description
3586 "This package provides an implementation of interpreted string literals,
3587 inspired by Python's Literal String Interpolation (PEP-0498) and
3588 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
3589 (license license:expat)))
3590
3591 (define-public r-palmerpenguins
3592 (package
3593 (name "r-palmerpenguins")
3594 (version "0.1.0")
3595 (source
3596 (origin
3597 (method url-fetch)
3598 (uri (cran-uri "palmerpenguins" version))
3599 (sha256
3600 (base32
3601 "0q1k3cdkliq7kwrg1n0vs9b6cjwyfarhlgdijhp9c6riy6y5ik7x"))))
3602 (properties
3603 `((upstream-name . "palmerpenguins")))
3604 (build-system r-build-system)
3605 (home-page "https://allisonhorst.github.io/palmerpenguins/")
3606 (synopsis "Palmer Archipelago (Antarctica) penguin data")
3607 (description
3608 "This package includes size measurements, clutch observations, and blood
3609 isotope ratios for adult foraging Adélie, Chinstrap, and Gentoo penguins
3610 observed on islands in the Palmer Archipelago near Palmer Station, Antarctica.
3611 Data were collected and made available by Dr. Kristen Gorman and the Palmer
3612 Station Long Term Ecological Research (LTER) Program.")
3613 (license license:cc0)))
3614
3615 (define-public r-pastecs
3616 (package
3617 (name "r-pastecs")
3618 (version "1.3.21")
3619 (source (origin
3620 (method url-fetch)
3621 (uri (cran-uri "pastecs" version))
3622 (sha256
3623 (base32
3624 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
3625 (build-system r-build-system)
3626 (propagated-inputs
3627 (list r-boot))
3628 (home-page "https://github.com/phgrosjean/pastecs")
3629 (synopsis "Analysis of space-time ecological series")
3630 (description
3631 "This package provides functions for regulation, decomposition and analysis
3632 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
3633 initiative to bring PASSTEC 2000 functionalities to R.")
3634 (license license:gpl2+)))
3635
3636 (define-public r-partykit
3637 (package
3638 (name "r-partykit")
3639 (version "1.2-15")
3640 (source (origin
3641 (method url-fetch)
3642 (uri (cran-uri "partykit" version))
3643 (sha256
3644 (base32
3645 "1b73s5l19yicwginqsg5xr7fzb005x372n0wb34kk6jb5x5lbsdj"))))
3646 (build-system r-build-system)
3647 (propagated-inputs
3648 (list r-formula
3649 r-inum
3650 r-libcoin
3651 r-mvtnorm
3652 r-rpart
3653 r-survival))
3654 (home-page "http://partykit.R-Forge.R-project.org/partykit")
3655 (synopsis "Toolkit for recursive partytioning")
3656 (description
3657 "This package provides a toolkit with infrastructure for representing,
3658 summarizing, and visualizing tree-structured regression and classification
3659 models.")
3660 (license license:gpl2+)))
3661
3662 (define-public r-plogr
3663 (package
3664 (name "r-plogr")
3665 (version "0.2.0")
3666 (source
3667 (origin
3668 (method url-fetch)
3669 (uri (cran-uri "plogr" version))
3670 (sha256
3671 (base32
3672 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
3673 (build-system r-build-system)
3674 (home-page "https://github.com/krlmlr/plogr")
3675 (synopsis "R bindings for the plog C++ logging library")
3676 (description
3677 "This package provides the header files for a stripped-down version of
3678 the plog header-only C++ logging library, and a method to log to R's standard
3679 error stream.")
3680 (license license:expat)))
3681
3682 (define-public r-pls
3683 (package
3684 (name "r-pls")
3685 (version "2.8-0")
3686 (source
3687 (origin
3688 (method url-fetch)
3689 (uri (cran-uri "pls" version))
3690 (sha256
3691 (base32 "1gqq8rcq6p0hs2gfzwfj690rz3pwywmnv8qzcv0wsd6aaqkskwzg"))))
3692 (build-system r-build-system)
3693 (home-page "https://mevik.net/work/software/pls.html")
3694 (synopsis "Partial Least Squares and Principal Component Regression")
3695 (description
3696 "The pls package implements multivariate regression methods: Partial Least
3697 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
3698 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
3699
3700 @itemize
3701 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
3702 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
3703 @item multi-response models (or @dfn{PLS2})
3704 @item flexible cross-validation
3705 @item Jackknife variance estimates of regression coefficients
3706 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
3707 (R)MSEP, R², and correlation loadings
3708 @item formula interface, modelled after @code{lm()}, with methods for predict,
3709 print, summary, plot, update, etc.
3710 @item extraction functions for coefficients, scores, and loadings
3711 @item MSEP, RMSEP, and R² estimates
3712 @item multiplicative scatter correction (@dfn{MSC})
3713 @end itemize\n")
3714 (license license:gpl2)))
3715
3716 (define-public r-ps
3717 (package
3718 (name "r-ps")
3719 (version "1.7.0")
3720 (source
3721 (origin
3722 (method url-fetch)
3723 (uri (cran-uri "ps" version))
3724 (sha256
3725 (base32 "1qaj9gyz7q09aadlnj5al53k2pa4axmzjsbndf5r0b51qqrcy842"))))
3726 (build-system r-build-system)
3727 (home-page "https://ps.r-lib.org")
3728 (synopsis "List, query, and manipulate system processes")
3729 (description
3730 "The ps package implements an API to list, query, and manipulate system
3731 processes. Most of its code is based on the @code{psutil} Python package.")
3732 (license license:bsd-3)))
3733
3734 (define-public r-pkgbuild
3735 (package
3736 (name "r-pkgbuild")
3737 (version "1.3.1")
3738 (source
3739 (origin
3740 (method url-fetch)
3741 (uri (cran-uri "pkgbuild" version))
3742 (sha256
3743 (base32 "0j6v5nbp8kg1m3j999gd1qsbdmqcqm1mf28ngmm177miwv8q4skw"))))
3744 (build-system r-build-system)
3745 (propagated-inputs
3746 (list r-callr
3747 r-cli
3748 r-crayon
3749 r-desc
3750 r-prettyunits
3751 r-r6
3752 r-rprojroot
3753 r-withr))
3754 (home-page "https://github.com/r-pkgs/pkgbuild")
3755 (synopsis "Find tools needed to build R packages")
3756 (description
3757 "This package provides functions used to build R packages. It locates
3758 compilers needed to build R packages on various platforms and ensures the PATH
3759 is configured appropriately so R can use them.")
3760 (license license:gpl3)))
3761
3762 (define-public r-pkgload
3763 (package
3764 (name "r-pkgload")
3765 (version "1.2.4")
3766 (source
3767 (origin
3768 (method url-fetch)
3769 (uri (cran-uri "pkgload" version))
3770 (sha256
3771 (base32
3772 "03yr9mswx9nij27bp21q6c533zx310xwzhwm52dwr7554k42p4fn"))))
3773 (build-system r-build-system)
3774 (propagated-inputs
3775 (list r-cli
3776 r-crayon
3777 r-desc
3778 r-rlang
3779 r-rprojroot
3780 r-rstudioapi
3781 r-withr))
3782 (home-page "https://github.com/r-lib/pkgload")
3783 (synopsis "Simulate package installation and attach")
3784 (description
3785 "This package simulates the process of installing a package and then
3786 attaching it. This is a key part of the @code{devtools} package as it allows
3787 you to rapidly iterate while developing a package.")
3788 (license license:gpl3)))
3789
3790 (define-public r-pvclust
3791 (package
3792 (name "r-pvclust")
3793 (version "2.2-0")
3794 (source (origin
3795 (method url-fetch)
3796 (uri (cran-uri "pvclust" version))
3797 (sha256
3798 (base32
3799 "0082icm54k2yq60k06qpr92a626k39j2jr0046lva4ylmhxqb4kq"))))
3800 (build-system r-build-system)
3801 (home-page "https://github.com/shimo-lab/pvclust")
3802 (synopsis
3803 "Hierarchical clustering with P-values via multiscale bootstrap resampling")
3804 (description "This package provides an implementation of multiscale bootstrap
3805 resampling for assessing the uncertainty in hierarchical cluster analysis. It
3806 provides an AU (approximately unbiased) P-value as well as a BP (bootstrap probability)
3807 value for each cluster in a dendrogram.")
3808 (license license:gpl2+)))
3809
3810 (define-public r-rcpp
3811 (package
3812 (name "r-rcpp")
3813 (version "1.0.8.3")
3814 (source
3815 (origin
3816 (method url-fetch)
3817 (uri (cran-uri "Rcpp" version))
3818 (sha256
3819 (base32 "1gzqfn1xjawzig30ama3rldykqpcn6bd8sg684mrfvpmv96bi9cx"))))
3820 (build-system r-build-system)
3821 (home-page "http://www.rcpp.org")
3822 (synopsis "Seamless R and C++ integration")
3823 (description
3824 "The Rcpp package provides R functions as well as C++ classes which offer
3825 a seamless integration of R and C++. Many R data types and objects can be
3826 mapped back and forth to C++ equivalents which facilitates both writing of new
3827 code as well as easier integration of third-party libraries. Documentation
3828 about Rcpp is provided by several vignettes included in this package, via the
3829 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
3830 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
3831 @code{citation(\"Rcpp\")} for details on these last two.")
3832 (license license:gpl2+)))
3833
3834 (define-public r-rcppthread
3835 (package
3836 (name "r-rcppthread")
3837 (version "2.1.3")
3838 (source
3839 (origin
3840 (method url-fetch)
3841 (uri (cran-uri "RcppThread" version))
3842 (sha256
3843 (base32
3844 "0iprpidf7q1wlrgr9dwiikb6apqk80pyjcyni56k64nl7lrkszhj"))))
3845 (properties `((upstream-name . "RcppThread")))
3846 (build-system r-build-system)
3847 (home-page
3848 "https://github.com/tnagler/RcppThread")
3849 (synopsis "R threading in C++")
3850 (description
3851 "This package provides a C++11-style thread class and thread pool that can
3852 safely be interrupted from R.")
3853 (license license:expat)))
3854
3855 (define-public r-rcppnumerical
3856 (package
3857 (name "r-rcppnumerical")
3858 (version "0.4-0")
3859 (source (origin
3860 (method url-fetch)
3861 (uri (cran-uri "RcppNumerical" version))
3862 (sha256
3863 (base32
3864 "1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
3865 (build-system r-build-system)
3866 (propagated-inputs
3867 (list r-rcpp r-rcppeigen))
3868 (home-page "https://github.com/yixuan/RcppNumerical")
3869 (synopsis"Numerical computing libraries integration with @code{Rcpp}")
3870 (description "This package provides a collection of libraries for numerical
3871 computing (numerical integration, optimization, etc.) and their integration
3872 with @code{Rcpp}.")
3873 (license license:gpl2+)))
3874
3875 (define-public r-rcppxptrutils
3876 (package
3877 (name "r-rcppxptrutils")
3878 (version "0.1.2")
3879 (source
3880 (origin
3881 (method url-fetch)
3882 (uri (cran-uri "RcppXPtrUtils" version))
3883 (sha256
3884 (base32 "0hm57nf4dzgsmg4hjj6wikwjx93fgfwkmybw6ly4b58wi6qwml1l"))))
3885 (properties `((upstream-name . "RcppXPtrUtils")))
3886 (build-system r-build-system)
3887 (propagated-inputs (list r-rcpp))
3888 (home-page "https://github.com/Enchufa2/RcppXPtrUtils")
3889 (synopsis "XPtr add-ons for Rcpp")
3890 (description
3891 "This package provides the means to compile user-supplied C++ functions
3892 with Rcpp and retrieve an @code{XPtr} that can be passed to other C++
3893 components.")
3894 (license license:expat)))
3895
3896 (define-public r-bindr
3897 (package
3898 (name "r-bindr")
3899 (version "0.1.1")
3900 (source
3901 (origin
3902 (method url-fetch)
3903 (uri (cran-uri "bindr" version))
3904 (sha256
3905 (base32
3906 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
3907 (build-system r-build-system)
3908 (home-page "https://github.com/krlmlr/bindr")
3909 (synopsis "Parametrized active bindings")
3910 (description
3911 "This package provides a simple interface for creating active bindings
3912 where the bound function accepts additional arguments.")
3913 (license license:expat)))
3914
3915 (define-public r-bindrcpp
3916 (package
3917 (name "r-bindrcpp")
3918 (version "0.2.2")
3919 (source
3920 (origin
3921 (method url-fetch)
3922 (uri (cran-uri "bindrcpp" version))
3923 (sha256
3924 (base32
3925 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
3926 (build-system r-build-system)
3927 (propagated-inputs
3928 (list r-bindr r-plogr r-rcpp))
3929 (home-page "https://github.com/krlmlr/bindrcpp")
3930 (synopsis "Rcpp interface to active bindings")
3931 (description
3932 "This package provides an easy way to fill an environment with active
3933 bindings that call a C++ function.")
3934 (license license:expat)))
3935
3936 (define-public r-auc
3937 (package
3938 (name "r-auc")
3939 (version "0.3.2")
3940 (source
3941 (origin
3942 (method url-fetch)
3943 (uri (cran-uri "AUC" version))
3944 (sha256
3945 (base32
3946 "07xf47kypqbsg2mixmq6mnh4s89aqan9bgl6kfv6lbx8ajv2asw3"))))
3947 (properties `((upstream-name . "AUC")))
3948 (build-system r-build-system)
3949 (home-page "https://cran.r-project.org/web/packages/AUC")
3950 (synopsis "Compute the area under the curve of selected measures")
3951 (description
3952 "This package includes functions to compute the area under the curve of
3953 selected measures: the area under the sensitivity curve (AUSEC), the area
3954 under the specificity curve (AUSPC), the area under the accuracy
3955 curve (AUACC), and the area under the receiver operating characteristic
3956 curve (AUROC). The curves can also be visualized. Support for partial areas
3957 is provided.")
3958 (license license:gpl2+)))
3959
3960 (define-public r-calibrate
3961 (package
3962 (name "r-calibrate")
3963 (version "1.7.7")
3964 (source
3965 (origin
3966 (method url-fetch)
3967 (uri (cran-uri "calibrate" version))
3968 (sha256
3969 (base32 "19kgrnsyq67iqv1biyssqi30a6v2836ql20nabpy2m692ns0jfvi"))))
3970 (build-system r-build-system)
3971 (propagated-inputs
3972 (list r-mass))
3973 (home-page "https://cran.r-project.org/web/packages/calibrate")
3974 (synopsis "Calibration of scatterplot and biplot axes")
3975 (description
3976 "This is a package for drawing calibrated scales with tick marks
3977 on (non-orthogonal) variable vectors in scatterplots and biplots.")
3978 (license license:gpl2)))
3979
3980 (define-public r-shape
3981 (package
3982 (name "r-shape")
3983 (version "1.4.6")
3984 (source
3985 (origin
3986 (method url-fetch)
3987 (uri (cran-uri "shape" version))
3988 (sha256
3989 (base32
3990 "0yqbrrx2ywmfl99s6d1n6jblc63k1mxbiqyv8y0kq8jws1g3w45r"))))
3991 (build-system r-build-system)
3992 (home-page "https://cran.r-project.org/web/packages/shape")
3993 (synopsis "Functions for plotting graphical shapes")
3994 (description
3995 "This package provides functions for plotting graphical shapes such as
3996 ellipses, circles, cylinders, arrows, ...")
3997 (license license:gpl3+)))
3998
3999 (define-public r-globaloptions
4000 (package
4001 (name "r-globaloptions")
4002 (version "0.1.2")
4003 (source
4004 (origin
4005 (method url-fetch)
4006 (uri (cran-uri "GlobalOptions" version))
4007 (sha256
4008 (base32 "0gkm77w6db9ajyncy1xdcivplap06a51zi99m009kylccschd2a7"))))
4009 (properties `((upstream-name . "GlobalOptions")))
4010 (build-system r-build-system)
4011 (native-inputs
4012 (list r-knitr))
4013 (home-page "https://github.com/jokergoo/GlobalOptions")
4014 (synopsis "Generate functions to get or set global options")
4015 (description
4016 "This package provides more controls on the option values such as
4017 validation and filtering on the values, making options invisible or private.")
4018 (license license:gpl2+)))
4019
4020 (define-public r-circlize
4021 (package
4022 (name "r-circlize")
4023 (version "0.4.15")
4024 (source
4025 (origin
4026 (method url-fetch)
4027 (uri (cran-uri "circlize" version))
4028 (sha256
4029 (base32
4030 "1iswb7dy08as3pbzxvhx5qlsbnwvp79nwg8m158nfz7y2d9xa0nn"))))
4031 (build-system r-build-system)
4032 (propagated-inputs
4033 (list r-colorspace r-globaloptions r-shape))
4034 (native-inputs
4035 (list r-knitr))
4036 (home-page "https://github.com/jokergoo/circlize")
4037 (synopsis "Circular visualization")
4038 (description
4039 "Circular layout is an efficient way to visualise huge amounts of
4040 information. This package provides an implementation of circular layout
4041 generation in R as well as an enhancement of available software. Its
4042 flexibility is based on the usage of low-level graphics functions such that
4043 self-defined high-level graphics can be easily implemented by users for
4044 specific purposes. Together with the seamless connection between the powerful
4045 computational and visual environment in R, it gives users more convenience and
4046 freedom to design figures for better understanding complex patterns behind
4047 multi-dimensional data.")
4048 (license license:gpl2+)))
4049
4050 (define-public r-powerlaw
4051 (package
4052 (name "r-powerlaw")
4053 (version "0.70.6")
4054 (source
4055 (origin
4056 (method url-fetch)
4057 (uri (cran-uri "poweRlaw" version))
4058 (sha256
4059 (base32 "14d1myxllvm1grnfiszzzxaiqpb2jpmsi19wq70r8r2wki293h7g"))))
4060 (properties `((upstream-name . "poweRlaw")))
4061 (build-system r-build-system)
4062 (propagated-inputs
4063 (list r-pracma))
4064 (native-inputs
4065 (list r-knitr))
4066 (home-page "https://github.com/csgillespie/poweRlaw")
4067 (synopsis "Tools for the analysis of heavy tailed distributions")
4068 (description
4069 "This package provides an implementation of maximum likelihood estimators
4070 for a variety of heavy tailed distributions, including both the discrete and
4071 continuous power law distributions. Additionally, a goodness-of-fit based
4072 approach is used to estimate the lower cut-off for the scaling region.")
4073 ;; Any of these GPL versions.
4074 (license (list license:gpl2 license:gpl3))))
4075
4076 (define-public r-compare
4077 (package
4078 (name "r-compare")
4079 (version "0.2-6")
4080 (source
4081 (origin
4082 (method url-fetch)
4083 (uri (cran-uri "compare" version))
4084 (sha256
4085 (base32
4086 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
4087 (build-system r-build-system)
4088 (home-page "https://cran.r-project.org/web/packages/compare")
4089 (synopsis "Comparing objects for differences")
4090 (description
4091 "This package provides functions to compare a model object to a
4092 comparison object. If the objects are not identical, the functions can be
4093 instructed to explore various modifications of the objects (e.g., sorting
4094 rows, dropping names) to see if the modified versions are identical.")
4095 (license license:gpl2+)))
4096
4097 (define-public r-dendextend
4098 (package
4099 (name "r-dendextend")
4100 (version "1.15.2")
4101 (source
4102 (origin
4103 (method url-fetch)
4104 (uri (cran-uri "dendextend" version))
4105 (sha256
4106 (base32
4107 "06wjs8451hmnimzgngpzbai3yrgy33133vzzapa8jib9crdqi8sb"))))
4108 (build-system r-build-system)
4109 (propagated-inputs
4110 (list r-ggplot2 r-magrittr r-viridis))
4111 (native-inputs
4112 (list r-knitr))
4113 (home-page "https://cran.r-project.org/web/packages/dendextend")
4114 (synopsis "Extending 'dendrogram' functionality in R")
4115 (description
4116 "This package offers a set of functions for extending @code{dendrogram}
4117 objects in R, letting you visualize and compare trees of hierarchical
4118 clusterings. You can adjust a tree's graphical parameters (the color, size,
4119 type, etc of its branches, nodes and labels) and visually and statistically
4120 compare different dendrograms to one another.")
4121 ;; Any of these versions
4122 (license (list license:gpl2 license:gpl3))))
4123
4124 (define-public r-getoptlong
4125 (package
4126 (name "r-getoptlong")
4127 (version "1.0.5")
4128 (source
4129 (origin
4130 (method url-fetch)
4131 (uri (cran-uri "GetoptLong" version))
4132 (sha256
4133 (base32
4134 "00fpm6nd3kqa2ikasxa62jzywi46fvvmx1mdavcp5yrxxn37j8wc"))))
4135 (properties `((upstream-name . "GetoptLong")))
4136 (build-system r-build-system)
4137 (inputs
4138 (list perl))
4139 (propagated-inputs
4140 (list r-crayon r-globaloptions r-rjson))
4141 (native-inputs
4142 (list r-knitr))
4143 (home-page "https://github.com/jokergoo/GetoptLong")
4144 (synopsis "Parsing command-line arguments and variable interpolation")
4145 (description
4146 "This is yet another command-line argument parser which wraps the
4147 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
4148 use in R. It also provides a simple way for variable interpolation in R.")
4149 (license license:gpl2+)))
4150
4151 (define-public r-fastmatch
4152 (package
4153 (name "r-fastmatch")
4154 (version "1.1-3")
4155 (source
4156 (origin
4157 (method url-fetch)
4158 (uri (cran-uri "fastmatch" version))
4159 (sha256
4160 (base32
4161 "0qcq1gwl9pijgp34giyq5y9rk0ly3d7xza2b7r68xx63ifqa1vqx"))))
4162 (build-system r-build-system)
4163 (home-page "https://www.rforge.net/fastmatch")
4164 (synopsis "Fast match function")
4165 (description
4166 "This package provides a fast @code{match} replacement for cases that
4167 require repeated look-ups. It is slightly faster that R's built-in
4168 @code{match} function on first match against a table, but extremely fast on
4169 any subsequent lookup as it keeps the hash table in memory.")
4170 (license license:gpl2)))
4171
4172 (define-public r-ff
4173 (package
4174 (name "r-ff")
4175 (version "4.0.7")
4176 (source
4177 (origin
4178 (method url-fetch)
4179 (uri (cran-uri "ff" version))
4180 (sha256
4181 (base32
4182 "1yl3ipzz9bjkfy9bbna7xz5n7iz4lchnw5l7agww7by764yk6iqa"))))
4183 (build-system r-build-system)
4184 (propagated-inputs (list r-bit))
4185 (home-page "http://ff.r-forge.r-project.org/")
4186 (synopsis "Memory-efficient storage of large data on disk and access functions")
4187 (description
4188 "This package provides data structures that are stored on disk but
4189 behave (almost) as if they were in RAM by transparently mapping only a section
4190 in main memory.")
4191 ;; error Architecture not supported.
4192 (supported-systems (delete "aarch64-linux" %supported-systems))
4193 (license license:gpl2)))
4194
4195 (define-public r-ffbase
4196 (package
4197 (name "r-ffbase")
4198 (version "0.13.3")
4199 (source
4200 (origin
4201 (method url-fetch)
4202 (uri (cran-uri "ffbase" version))
4203 (sha256
4204 (base32
4205 "1dp6lblfq2j7r1b4b8ls47jlx8j27n88d5vp8w116lb8pa01zxmk"))))
4206 (build-system r-build-system)
4207 (propagated-inputs
4208 (list r-bit r-fastmatch r-ff))
4209 (home-page "https://github.com/edwindj/ffbase")
4210 (synopsis "Basic statistical functions for package 'ff'")
4211 (description
4212 "This package extends the out of memory vectors of @code{ff} with
4213 statistical functions and other utilities to ease their usage.")
4214 (license license:gpl3)))
4215
4216 (define-public r-prettyunits
4217 (package
4218 (name "r-prettyunits")
4219 (version "1.1.1")
4220 (source
4221 (origin
4222 (method url-fetch)
4223 (uri (cran-uri "prettyunits" version))
4224 (sha256
4225 (base32
4226 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
4227 (build-system r-build-system)
4228 (home-page "https://github.com/gaborcsardi/prettyunits")
4229 (synopsis "Pretty, human readable formatting of quantities")
4230 (description
4231 "This package provides tools for pretty, human readable formatting of
4232 quantities.")
4233 (license license:expat)))
4234
4235 (define-public r-princurve
4236 (package
4237 (name "r-princurve")
4238 (version "2.1.6")
4239 (source (origin
4240 (method url-fetch)
4241 (uri (cran-uri "princurve" version))
4242 (sha256
4243 (base32
4244 "0wzk329bxljkzz57y220lsfckpsn45w348m6dcxh29zbj0ik65h2"))))
4245 (build-system r-build-system)
4246 (propagated-inputs
4247 (list r-rcpp))
4248 (home-page "https://github.com/rcannood/princurve")
4249 (synopsis "Fit a principal curve in arbitrary dimension")
4250 (description "This package provides procedures for fitting a principal
4251 curve to a data matrix in arbitrary dimensions.")
4252 (license license:gpl2)))
4253
4254 (define-public r-reshape
4255 (package
4256 (name "r-reshape")
4257 (version "0.8.9")
4258 (source
4259 (origin
4260 (method url-fetch)
4261 (uri (cran-uri "reshape" version))
4262 (sha256
4263 (base32
4264 "0j203qmc076x5lp6q2xi4dq4xdb73jmsa42rpxp1c37knnrph4br"))))
4265 (build-system r-build-system)
4266 (propagated-inputs
4267 (list r-plyr))
4268 (home-page "http://had.co.nz/reshape")
4269 (synopsis "Flexibly reshape data")
4270 (description
4271 "Flexibly restructure and aggregate data using just two functions:
4272 @code{melt} and @code{cast}. This package provides them.")
4273 (license license:expat)))
4274
4275 (define-public r-restrserve
4276 (package
4277 (name "r-restrserve")
4278 (version "1.1.1")
4279 (source
4280 (origin
4281 (method url-fetch)
4282 (uri (cran-uri "RestRserve" version))
4283 (sha256
4284 (base32 "1ydsdgy6mxl0zqk7xqf4v6if5nf2qv7k48q340fhaqyjk2gd60p7"))))
4285 (build-system r-build-system)
4286 (propagated-inputs
4287 (list r-checkmate
4288 r-digest
4289 r-jsonlite
4290 r-mime
4291 r-r6
4292 r-rcpp
4293 r-rserve
4294 r-uuid))
4295 (native-inputs
4296 (list r-knitr))
4297 (home-page "https://restrserve.org")
4298 (synopsis "R web API framework")
4299 (description
4300 "RestRserve is an R web API framework for building high-performance AND
4301 robust microservices and app backends. With Rserve backend on UNIX-like
4302 systems it is parallel by design. It will handle incoming requests in
4303 parallel - each request in a separate fork.")
4304 (license license:gpl2+)))
4305
4306 (define-public r-progress
4307 (package
4308 (name "r-progress")
4309 (version "1.2.2")
4310 (source
4311 (origin
4312 (method url-fetch)
4313 (uri (cran-uri "progress" version))
4314 (sha256
4315 (base32
4316 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
4317 (build-system r-build-system)
4318 (propagated-inputs
4319 (list r-crayon r-hms r-prettyunits r-r6))
4320 (home-page "https://github.com/gaborcsardi/progress")
4321 (synopsis "Terminal progress bars")
4322 (description
4323 "This package provides configurable progress bars. They may include
4324 percentage, elapsed time, and/or the estimated completion time. They work in
4325 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
4326 package also provides a C++ API, that works with or without Rcpp.")
4327 (license license:expat)))
4328
4329 (define-public r-ggally
4330 (package
4331 (name "r-ggally")
4332 (version "2.1.2")
4333 (source
4334 (origin
4335 (method url-fetch)
4336 (uri (cran-uri "GGally" version))
4337 (sha256
4338 (base32
4339 "1r98zgh2grn8330cf26r1c20gl131zm778szvn5wj6q6pwv2yd9h"))))
4340 (properties `((upstream-name . "GGally")))
4341 (build-system r-build-system)
4342 (inputs
4343 (list openssl))
4344 (propagated-inputs
4345 (list r-dplyr
4346 r-forcats
4347 r-ggplot2
4348 r-gtable
4349 r-lifecycle
4350 r-plyr
4351 r-progress
4352 r-rcolorbrewer
4353 r-reshape
4354 r-rlang
4355 r-scales
4356 r-tidyr))
4357 (home-page "https://ggobi.github.io/ggally")
4358 (synopsis "Extension to ggplot2")
4359 (description
4360 "The R package ggplot2 is a plotting system based on the grammar of
4361 graphics. GGally extends ggplot2 by adding several functions to reduce the
4362 complexity of combining geometric objects with transformed data. Some of
4363 these functions include a pairwise plot matrix, a two group pairwise plot
4364 matrix, a parallel coordinates plot, a survival plot, and several functions to
4365 plot networks.")
4366 (license license:gpl2+)))
4367
4368 (define-public r-proxy
4369 (package
4370 (name "r-proxy")
4371 (version "0.4-26")
4372 (source
4373 (origin
4374 (method url-fetch)
4375 (uri (cran-uri "proxy" version))
4376 (sha256
4377 (base32
4378 "0k8sr24mjfvxp12sf1j9228ah3ngy15nqmm0jw14x5s32f1assv7"))))
4379 (build-system r-build-system)
4380 (home-page "https://cran.r-project.org/web/packages/proxy")
4381 (synopsis "Distance and similarity measures")
4382 (description
4383 "This package provides an extensible framework for the efficient
4384 calculation of auto- and cross-proximities, along with implementations of the
4385 most popular ones.")
4386 (license license:gpl2)))
4387
4388 (define-public r-sp
4389 (package
4390 (name "r-sp")
4391 (version "1.4-7")
4392 (source
4393 (origin
4394 (method url-fetch)
4395 (uri (cran-uri "sp" version))
4396 (sha256
4397 (base32 "1bdi06n5zkjnnyh0rallf04s0vlcx9rg9p5q7s6vfqvkf19nk501"))))
4398 (build-system r-build-system)
4399 (propagated-inputs
4400 (list r-lattice))
4401 (native-inputs
4402 (list r-knitr))
4403 (home-page "https://cran.r-project.org/web/packages/sp")
4404 (synopsis "Classes and methods for spatial data")
4405 (description
4406 "This package provides classes and methods for spatial data; the classes
4407 document where the spatial location information resides, for 2D or 3D data.
4408 Utility functions are provided, e.g. for plotting data as maps, spatial
4409 selection, as well as methods for retrieving coordinates, for subsetting,
4410 print, summary, etc.")
4411 (license license:gpl2+)))
4412
4413 (define-public r-laplacesdemon
4414 (package
4415 (name "r-laplacesdemon")
4416 (version "16.1.6")
4417 (source
4418 (origin
4419 (method url-fetch)
4420 (uri (cran-uri "LaplacesDemon" version))
4421 (sha256
4422 (base32 "1dsfp65cg06f25zjzd5ib4qyn1alfhbhpgyvpcw5n6bszn13idap"))))
4423 (properties `((upstream-name . "LaplacesDemon")))
4424 (build-system r-build-system)
4425 (home-page "https://github.com/LaplacesDemonR/LaplacesDemon")
4426 (synopsis "Complete environment for Bayesian inference")
4427 (description
4428 "This package provides a complete environment for Bayesian inference using
4429 a variety of different samplers.")
4430 (license license:expat)))
4431
4432 (define-public r-rmtstat
4433 (package
4434 (name "r-rmtstat")
4435 (version "0.3.1")
4436 (source
4437 (origin
4438 (method url-fetch)
4439 (uri (cran-uri "RMTstat" version))
4440 (sha256
4441 (base32
4442 "1r1a2sdqv64m9cpm2pz6r8abf7l810126ayd8iq3gx86c7bjfj5v"))))
4443 (properties `((upstream-name . "RMTstat")))
4444 (build-system r-build-system)
4445 (home-page "https://cran.r-project.org/web/packages/RMTstat")
4446 (synopsis "Distributions, statistics and tests derived from random matrix theory")
4447 (description
4448 "This package provides functions for working with the Tracy-Widom laws
4449 and other distributions related to the eigenvalues of large Wishart
4450 matrices.")
4451 (license license:bsd-3)))
4452
4453 (define-public r-rmpi
4454 (package
4455 (name "r-rmpi")
4456 (version "0.6-9.2")
4457 (source (origin
4458 (method url-fetch)
4459 (uri (cran-uri "Rmpi" version))
4460 (sha256
4461 (base32
4462 "06mxqgrimhfsag5giv810c7ycdbaycqs4qcj41pnfbj0jypw32im"))))
4463 (properties `((upstream-name . "Rmpi")))
4464 (build-system r-build-system)
4465 (arguments
4466 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
4467 #:phases (modify-phases %standard-phases
4468 (add-before 'install 'mpi-setup
4469 ,%openmpi-setup))))
4470 (inputs
4471 (list openmpi))
4472 (native-inputs
4473 (list pkg-config))
4474 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
4475 (synopsis "R interface to message-passing interface (MPI)")
4476 (description
4477 "This package provides an interface (wrapper) to MPI APIs. It also
4478 provides an interactive R manager and worker environment.")
4479 (license license:gpl2+)))
4480
4481 (define-public r-lmoments
4482 (package
4483 (name "r-lmoments")
4484 (version "1.3-1")
4485 (source
4486 (origin
4487 (method url-fetch)
4488 (uri (cran-uri "Lmoments" version))
4489 (sha256
4490 (base32
4491 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
4492 (properties `((upstream-name . "Lmoments")))
4493 (build-system r-build-system)
4494 (propagated-inputs
4495 (list r-rcpp r-rcpparmadillo))
4496 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
4497 (synopsis "L-moments and quantile mixtures")
4498 (description
4499 "This package contains functions to estimate L-moments and trimmed
4500 L-moments from the data. It also contains functions to estimate the
4501 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
4502 quantile mixture from L-moments and trimmed L-moments.")
4503 (license license:gpl2)))
4504
4505 (define-public r-distillery
4506 (package
4507 (name "r-distillery")
4508 (version "1.2-1")
4509 (source
4510 (origin
4511 (method url-fetch)
4512 (uri (cran-uri "distillery" version))
4513 (sha256
4514 (base32
4515 "1ymmxyamkq0zbz2m4gllln1ihks2hcib6gs0mls92as79srz122b"))))
4516 (build-system r-build-system)
4517 (home-page "https://ral.ucar.edu/staff/ericg/")
4518 (synopsis "Functions for confidence intervals and object information")
4519 (description
4520 "This package provides some very simple method functions for confidence
4521 interval calculation and to distill pertinent information from a potentially
4522 complex object; primarily used in common with the packages extRemes and
4523 SpatialVx.")
4524 (license license:gpl2+)))
4525
4526 (define-public r-etrunct
4527 (package
4528 (name "r-etrunct")
4529 (version "0.1")
4530 (source (origin
4531 (method url-fetch)
4532 (uri (cran-uri "etrunct" version))
4533 (sha256
4534 (base32
4535 "0ayazgyqlc8jcqr03cwfmfhm4pck6xri1r6vkgqy4arqkrrnrcqr"))))
4536 (properties `((upstream-name . "etrunct")))
4537 (build-system r-build-system)
4538 (home-page "https://cran.r-project.org/web/packages/etrunct")
4539 (synopsis "Computes moments of univariate truncated T distribution")
4540 (description "This package computes moments of univariate truncated
4541 T distribution. There is only one exported function, @code{e_trunct},
4542 which should be seen for details.")
4543 (license license:expat)))
4544
4545 (define-public r-excelr
4546 (package
4547 (name "r-excelr")
4548 (version "0.4.0")
4549 (source
4550 (origin
4551 (method url-fetch)
4552 (uri (cran-uri "excelR" version))
4553 (sha256
4554 (base32 "1pb4sy54zjv5vrh7gjjv7qlpab74km6mfsmfyl0yhmr0jx01hrw0"))
4555 (snippet
4556 '(delete-file "inst/htmlwidgets/lib/jexcel/js/jexcel.min.js"))))
4557 (properties `((upstream-name . "excelR")))
4558 (build-system r-build-system)
4559 (arguments
4560 `(#:phases
4561 (modify-phases %standard-phases
4562 (add-after 'unpack 'process-javascript
4563 (lambda* (#:key inputs #:allow-other-keys)
4564 (with-directory-excursion "inst/htmlwidgets/lib/jexcel/js/"
4565 (let ((source (assoc-ref inputs "js-jexcel"))
4566 (target "jexcel.min.js"))
4567 (format #true "Processing ~a --> ~a~%"
4568 source target)
4569 (invoke "esbuild" source "--minify"
4570 (string-append "--outfile=" target)))))))))
4571 (native-inputs
4572 `(("esbuild" ,esbuild)
4573 ;; There is no tag for this particular commit, but comparison of the
4574 ;; contents of the JavaScript files point to this commit as the most
4575 ;; likely source.
4576 ("js-jexcel"
4577 ,(origin
4578 (method url-fetch)
4579 (uri (string-append "https://raw.githubusercontent.com/jspreadsheet/ce/"
4580 "8af1960f76e6803bebc5750013d2ebe95354e88a/dist/jexcel.js"))
4581 (sha256
4582 (base32
4583 "0y88hsr9d8cpnvdmbm17m328pc4kc5wbcv02kzmhm0bryzhviw7h"))))))
4584 (propagated-inputs (list r-htmlwidgets r-jsonlite))
4585 (home-page "https://github.com/Swechhya/excelR")
4586 (synopsis "Wrapper of the JavaScript library jExcel")
4587 (description
4588 "This package provides an R interface to the jExcel library to
4589 create web-based interactive tables and spreadsheets compatible with
4590 spreadsheet software.")
4591 (license license:expat)))
4592
4593 (define-public r-extremes
4594 (package
4595 (name "r-extremes")
4596 (version "2.1-2")
4597 (source
4598 (origin
4599 (method url-fetch)
4600 (uri (cran-uri "extRemes" version))
4601 (sha256
4602 (base32
4603 "19q560prq02h3bwk01jb68693qb5bhsv8wiqhia7v5knm34qv8x7"))))
4604 (properties `((upstream-name . "extRemes")))
4605 (build-system r-build-system)
4606 (propagated-inputs
4607 (list r-distillery r-lmoments))
4608 (home-page "https://www.assessment.ucar.edu/toolkit/")
4609 (synopsis "Extreme value analysis")
4610 (description
4611 "ExtRemes is a suite of functions for carrying out analyses on the
4612 extreme values of a process of interest; be they block maxima over long blocks
4613 or excesses over a high threshold.")
4614 (license license:gpl2+)))
4615
4616 (define-public r-lmtest
4617 (package
4618 (name "r-lmtest")
4619 (version "0.9-40")
4620 (source
4621 (origin
4622 (method url-fetch)
4623 (uri (cran-uri "lmtest" version))
4624 (sha256
4625 (base32
4626 "15yr2kx08wy085bnziqmj1p6hf9mg3qp2a8465jk2df6di6hsh34"))))
4627 (build-system r-build-system)
4628 (propagated-inputs
4629 (list r-zoo))
4630 (native-inputs
4631 (list gfortran))
4632 (home-page "https://cran.r-project.org/web/packages/lmtest")
4633 (synopsis "Testing linear regression models")
4634 (description
4635 "This package provides a collection of tests, data sets, and examples for
4636 diagnostic checking in linear regression models. Furthermore, some generic
4637 tools for inference in parametric models are provided.")
4638 ;; Either version is okay
4639 (license (list license:gpl2 license:gpl3))))
4640
4641 (define-public r-idr
4642 (package
4643 (name "r-idr")
4644 (version "1.2")
4645 (source (origin
4646 (method url-fetch)
4647 (uri (cran-uri "idr" version))
4648 (sha256
4649 (base32
4650 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
4651 (build-system r-build-system)
4652 (home-page "https://cran.r-project.org/web/packages/idr/")
4653 (synopsis "Irreproducible discovery rate")
4654 (description
4655 "This is a package for estimating the copula mixture model and plotting
4656 correspondence curves in \"Measuring reproducibility of high-throughput
4657 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
4658 by Li, Brown, Huang, and Bickel")
4659 (license license:gpl2+)))
4660
4661 (define-public r-inline
4662 (package
4663 (name "r-inline")
4664 (version "0.3.19")
4665 (source (origin
4666 (method url-fetch)
4667 (uri (cran-uri "inline" version))
4668 (sha256
4669 (base32
4670 "1mcr9hgq6kkq03n7pkcccxa7vg8jma0q7lfxc5vvkc6snydk1s8f"))))
4671 (build-system r-build-system)
4672 (home-page "https://cran.r-project.org/web/packages/inline")
4673 (synopsis "Functions to inline C, C++, Fortran function calls from R")
4674 (description
4675 "This package provides functionality to dynamically define R functions
4676 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
4677 @code{.Call} calling conventions.")
4678 ;; Any version of the LGPL.
4679 (license license:lgpl3+)))
4680
4681 (define-public r-inum
4682 (package
4683 (name "r-inum")
4684 (version "1.0-4")
4685 (source (origin
4686 (method url-fetch)
4687 (uri (cran-uri "inum" version))
4688 (sha256
4689 (base32
4690 "1khkzja8lwn9075864vbyajqina9m588ahf1fsrrajrsqilyzssz"))))
4691 (build-system r-build-system)
4692 (propagated-inputs
4693 (list r-libcoin))
4694 (home-page "https://cran.r-project.org/web/packages/inum/")
4695 (synopsis "Interval and enum-type representation of vectors")
4696 (description
4697 "This package provides an enum-type representation of vectors and
4698 representation of intervals, including a method of coercing variables
4699 in data frames.")
4700 (license license:gpl2)))
4701 (define-public r-invgamma
4702 (package
4703 (name "r-invgamma")
4704 (version "1.1")
4705 (source (origin
4706 (method url-fetch)
4707 (uri (cran-uri "invgamma" version))
4708 (sha256
4709 (base32
4710 "12ga2y4wc9bc5zz6vimvxwgjpsx3ys3209nq63gscbw559ydxa5a"))))
4711 (properties `((upstream-name . "invgamma")))
4712 (build-system r-build-system)
4713 (home-page "https://github.com/dkahle/invgamma")
4714 (synopsis "Inverse gamma distribution")
4715 (description "This package provides a light weight implementation of the
4716 standard distribution functions for the inverse gamma distribution, wrapping
4717 those for the gamma distribution in the @code{stats} package.")
4718 (license license:gpl2)))
4719
4720 (define-public r-bdsmatrix
4721 (package
4722 (name "r-bdsmatrix")
4723 (version "1.3-4")
4724 (source
4725 (origin
4726 (method url-fetch)
4727 (uri (cran-uri "bdsmatrix" version))
4728 (sha256
4729 (base32
4730 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
4731 (properties `((upstream-name . "bdsmatrix")))
4732 (build-system r-build-system)
4733 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
4734 (synopsis "Routines for block diagonal symmetric matrices")
4735 (description
4736 "This package provides procedures to work with block diagonal symmetric
4737 matrices, a special case of sparse matrices.")
4738 (license license:lgpl2.0)))
4739
4740 (define-public r-bbmle
4741 (package
4742 (name "r-bbmle")
4743 (version "1.0.25")
4744 (source
4745 (origin
4746 (method url-fetch)
4747 (uri (cran-uri "bbmle" version))
4748 (sha256
4749 (base32
4750 "0mdj21q7k0fp4cj7la14vmcjmp49zqm57g7r6zrwmxpv0acwda46"))))
4751 (build-system r-build-system)
4752 (propagated-inputs
4753 (list r-bdsmatrix
4754 r-lattice
4755 r-mass
4756 r-matrix
4757 r-mvtnorm
4758 r-numderiv))
4759 (native-inputs
4760 (list r-knitr))
4761 (home-page "https://cran.r-project.org/web/packages/bbmle")
4762 (synopsis "Tools for General Maximum Likelihood Estimation")
4763 (description
4764 "This package provides methods and functions for fitting maximum
4765 likelihood models in R. This package modifies and extends the @code{mle}
4766 classes in the @code{stats4} package.")
4767 ;; Any version of the GPL
4768 (license license:gpl2+)))
4769
4770 (define-public r-emdbook
4771 (package
4772 (name "r-emdbook")
4773 (version "1.3.12")
4774 (source
4775 (origin
4776 (method url-fetch)
4777 (uri (cran-uri "emdbook" version))
4778 (sha256
4779 (base32
4780 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
4781 (build-system r-build-system)
4782 (propagated-inputs
4783 (list r-bbmle r-coda r-lattice r-mass r-plyr))
4784 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
4785 (synopsis "Support functions and data for \"Ecological Models and Data\"")
4786 (description
4787 "This package provides auxiliary functions and data sets for \"Ecological
4788 Models and Data\", a book presenting maximum likelihood estimation and related
4789 topics for ecologists (ISBN 978-0-691-12522-0).")
4790 ;; Any GPL version
4791 (license (list license:gpl2 license:gpl3))))
4792
4793 (define-public r-lpsolve
4794 (package
4795 (name "r-lpsolve")
4796 (version "5.6.15")
4797 (source
4798 (origin
4799 (method url-fetch)
4800 (uri (cran-uri "lpSolve" version))
4801 (sha256
4802 (base32
4803 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
4804 (properties `((upstream-name . "lpSolve")))
4805 (build-system r-build-system)
4806 (home-page "https://cran.r-project.org/web/packages/lpSolve")
4807 (synopsis "R interface to Lp_solve to solve linear/integer programs")
4808 (description
4809 "Lp_solve is software for solving linear, integer and mixed integer
4810 programs. This implementation supplies a \"wrapper\" function in C and some R
4811 functions that solve general linear/integer problems, assignment problems, and
4812 transportation problems.")
4813 (license license:lgpl2.0)))
4814
4815 (define-public r-limsolve
4816 (package
4817 (name "r-limsolve")
4818 (version "1.5.6")
4819 (source
4820 (origin
4821 (method url-fetch)
4822 (uri (cran-uri "limSolve" version))
4823 (sha256
4824 (base32
4825 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
4826 (properties `((upstream-name . "limSolve")))
4827 (build-system r-build-system)
4828 (propagated-inputs
4829 (list r-lpsolve r-mass r-quadprog))
4830 (native-inputs (list gfortran))
4831 (home-page "https://cran.r-project.org/web/packages/limSolve")
4832 (synopsis "Solving linear inverse models")
4833 (description
4834 "This package provides functions that:
4835
4836 @enumerate
4837 @item find the minimum/maximum of a linear or quadratic function,
4838 @item sample an underdetermined or overdetermined system,
4839 @item solve a linear system Ax=B for the unknown x.
4840 @end enumerate
4841
4842 It includes banded and tridiagonal linear systems. The package calls Fortran
4843 functions from LINPACK.")
4844 ;; Any GPL version.
4845 (license (list license:gpl2+ license:gpl3+))))
4846
4847 (define-public r-fitdistrplus
4848 (package
4849 (name "r-fitdistrplus")
4850 (version "1.1-8")
4851 (source
4852 (origin
4853 (method url-fetch)
4854 (uri (cran-uri "fitdistrplus" version))
4855 (sha256
4856 (base32
4857 "0nhgjvwya95v6b9khbsgp44lw10xg35w61lmka1v6wq7yh827izk"))))
4858 (build-system r-build-system)
4859 (propagated-inputs
4860 (list r-mass r-survival))
4861 (native-inputs
4862 (list r-knitr))
4863 (home-page "http://riskassessment.r-forge.r-project.org")
4864 (synopsis "Fitting a parametric distribution from data")
4865 (description
4866 "This package extends the @code{fitdistr} function of the MASS package
4867 with several functions to help the fit of a parametric distribution to
4868 non-censored or censored data. Censored data may contain left-censored,
4869 right-censored and interval-censored values, with several lower and upper
4870 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
4871 provides moment matching (MME), quantile matching (QME) and maximum
4872 goodness-of-fit estimation (MGE) methods (available only for non-censored
4873 data). Weighted versions of MLE, MME and QME are available.")
4874 (license license:gpl2+)))
4875
4876 (define-public r-energy
4877 (package
4878 (name "r-energy")
4879 (version "1.7-10")
4880 (source
4881 (origin
4882 (method url-fetch)
4883 (uri (cran-uri "energy" version))
4884 (sha256
4885 (base32
4886 "19xyw5bkyzfk22gly2ca2nsznqnrhaq4a77727kr1k26bj3y8gal"))))
4887 (build-system r-build-system)
4888 (propagated-inputs
4889 (list r-boot r-gsl r-rcpp))
4890 (home-page "https://cran.r-project.org/web/packages/energy")
4891 (synopsis "Multivariate inference via the energy of data")
4892 (description
4893 "This package provides e-statistics (energy) tests and statistics for
4894 multivariate and univariate inference, including distance correlation,
4895 one-sample, two-sample, and multi-sample tests for comparing multivariate
4896 distributions, are implemented. Measuring and testing multivariate
4897 independence based on distance correlation, partial distance correlation,
4898 multivariate goodness-of-fit tests, clustering based on energy distance,
4899 testing for multivariate normality, distance components (disco) for
4900 non-parametric analysis of structured data, and other energy
4901 statistics/methods are implemented.")
4902 (license license:gpl2+)))
4903
4904 (define-public r-suppdists
4905 (package
4906 (name "r-suppdists")
4907 (version "1.1-9.7")
4908 (source
4909 (origin
4910 (method url-fetch)
4911 (uri (cran-uri "SuppDists" version))
4912 (sha256
4913 (base32
4914 "025b9nlxz62wk84295csyzbncpn80i3iby3sxdigf3swcgi2fmbb"))))
4915 (properties `((upstream-name . "SuppDists")))
4916 (build-system r-build-system)
4917 (home-page "https://cran.r-project.org/web/packages/SuppDists")
4918 (synopsis "Supplementary distributions")
4919 (description
4920 "This package provides ten distributions supplementing those built into
4921 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
4922 Spearman's rho, maximum F ratio, the Pearson product moment correlation
4923 coefficient, Johnson distributions, normal scores and generalized
4924 hypergeometric distributions. In addition two random number generators of
4925 George Marsaglia are included.")
4926 (license license:gpl2+)))
4927
4928 (define-public r-ksamples
4929 (package
4930 (name "r-ksamples")
4931 (version "1.2-9")
4932 (source
4933 (origin
4934 (method url-fetch)
4935 (uri (cran-uri "kSamples" version))
4936 (sha256
4937 (base32
4938 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
4939 (properties `((upstream-name . "kSamples")))
4940 (build-system r-build-system)
4941 (propagated-inputs
4942 (list r-suppdists))
4943 (home-page "https://cran.r-project.org/web/packages/kSamples")
4944 (synopsis "K-Sample rank tests and their combinations")
4945 (description
4946 "This package provides tools to compares k samples using the
4947 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
4948 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
4949 test. It computes asymptotic, simulated or (limited) exact P-values, all
4950 valid under randomization, with or without ties, or conditionally under random
4951 sampling from populations, given the observed tie pattern. Except for Steel's
4952 test and the JT test it also combines these tests across several blocks of
4953 samples.")
4954 (license license:gpl2+)))
4955
4956 (define-public r-cvst
4957 (package
4958 (name "r-cvst")
4959 (version "0.2-3")
4960 (source
4961 (origin
4962 (method url-fetch)
4963 (uri (cran-uri "CVST" version))
4964 (sha256
4965 (base32
4966 "0bgk0d6w3dyhb5s30idnp6jpb3m8wf3b79wqlg127wwm0cird8pg"))))
4967 (properties `((upstream-name . "CVST")))
4968 (build-system r-build-system)
4969 (propagated-inputs
4970 (list r-kernlab r-matrix))
4971 (home-page "https://cran.r-project.org/web/packages/CVST")
4972 (synopsis "Fast cross-validation via sequential testing")
4973 (description
4974 "This package implements the fast cross-validation via sequential
4975 testing (CVST) procedure. CVST is an improved cross-validation procedure
4976 which uses non-parametric testing coupled with sequential analysis to
4977 determine the best parameter set on linearly increasing subsets of the data.
4978 Additionally to the CVST the package contains an implementation of the
4979 ordinary k-fold cross-validation with a flexible and powerful set of helper
4980 objects and methods to handle the overall model selection process. The
4981 implementations of the Cochran's Q test with permutations and the sequential
4982 testing framework of Wald are generic and can therefore also be used in other
4983 contexts.")
4984 (license license:gpl2+)))
4985
4986 (define-public r-squarem
4987 (package
4988 (name "r-squarem")
4989 (version "2021.1")
4990 (source
4991 (origin
4992 (method url-fetch)
4993 (uri (cran-uri "SQUAREM" version))
4994 (sha256
4995 (base32
4996 "0n1s32l9p4vdm3h5q6g43s0qbpzry08difsh0yay80wrla6f3rb6"))))
4997 (properties `((upstream-name . "SQUAREM")))
4998 (build-system r-build-system)
4999 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
5000 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
5001 (description
5002 "This package provides algorithms for accelerating the convergence of
5003 slow, monotone sequences from smooth, contraction mapping such as the EM
5004 algorithm. It can be used to accelerate any smooth, linearly convergent
5005 acceleration scheme. A tutorial style introduction to this package is
5006 available in a vignette.")
5007 (license license:gpl2+)))
5008
5009 (define-public r-progressr
5010 (package
5011 (name "r-progressr")
5012 (version "0.10.0")
5013 (source
5014 (origin
5015 (method url-fetch)
5016 (uri (cran-uri "progressr" version))
5017 (sha256
5018 (base32 "1p5s35rzh28n2id2lipgyqmh3wzib66m7x0pz9028y8cql8xr5ac"))))
5019 (properties `((upstream-name . "progressr")))
5020 (build-system r-build-system)
5021 (propagated-inputs
5022 (list r-digest))
5023 (home-page "https://progressr.futureverse.org")
5024 (synopsis "Inclusive, unifying API for progress updates")
5025 (description
5026 "This package provides a minimal, unifying API for scripts and packages
5027 to report progress updates from anywhere including when using parallel
5028 processing. The package is designed such that the developer can to focus on
5029 what progress should be reported on without having to worry about how to
5030 present it. The end user has full control of how, where, and when to render
5031 these progress updates.")
5032 (license license:gpl3+)))
5033
5034 (define-public r-lava
5035 (package
5036 (name "r-lava")
5037 (version "1.6.10")
5038 (source
5039 (origin
5040 (method url-fetch)
5041 (uri (cran-uri "lava" version))
5042 (sha256
5043 (base32
5044 "0bi3c1aqwlq7jbz4raz6vga4r264w7lldi0i62xjlbl7hnlgi23s"))))
5045 (build-system r-build-system)
5046 (propagated-inputs
5047 (list r-future-apply r-numderiv r-progressr r-squarem r-survival))
5048 (native-inputs
5049 (list r-knitr))
5050 (home-page "https://github.com/kkholst/lava")
5051 (synopsis "Latent variable models")
5052 (description
5053 "This package provides tools for the estimation and simulation of latent
5054 variable models.")
5055 (license license:gpl3)))
5056
5057 (define-public r-drr
5058 (package
5059 (name "r-drr")
5060 (version "0.0.4")
5061 (source
5062 (origin
5063 (method url-fetch)
5064 (uri (cran-uri "DRR" version))
5065 (sha256
5066 (base32
5067 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
5068 (properties `((upstream-name . "DRR")))
5069 (build-system r-build-system)
5070 (propagated-inputs
5071 (list r-cvst r-kernlab r-matrix))
5072 (home-page "https://cran.r-project.org/web/packages/DRR")
5073 (synopsis "Dimensionality reduction via regression")
5074 (description
5075 "This package provides an implementation of dimensionality reduction via
5076 regression using Kernel Ridge Regression.")
5077 (license license:gpl3)))
5078
5079 (define-public r-prodlim
5080 (package
5081 (name "r-prodlim")
5082 (version "2019.11.13")
5083 (source
5084 (origin
5085 (method url-fetch)
5086 (uri (cran-uri "prodlim" version))
5087 (sha256
5088 (base32
5089 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
5090 (build-system r-build-system)
5091 (propagated-inputs
5092 (list r-kernsmooth r-lava r-rcpp r-survival))
5093 (home-page "https://cran.r-project.org/web/packages/prodlim")
5094 (synopsis "Product-limit estimation for censored event history analysis")
5095 (description
5096 "This package provides a fast and user-friendly implementation of
5097 nonparametric estimators for censored event history (survival) analysis with
5098 the Kaplan-Meier and Aalen-Johansen methods.")
5099 (license license:gpl2+)))
5100
5101 (define-public r-dimred
5102 (package
5103 (name "r-dimred")
5104 (version "0.2.5")
5105 (source
5106 (origin
5107 (method url-fetch)
5108 (uri (cran-uri "dimRed" version))
5109 (sha256
5110 (base32
5111 "1z8fqdc8mslvfix8ngxs1y2yrvlanp5581hwp2nzldj6mk5kn15b"))))
5112 (properties `((upstream-name . "dimRed")))
5113 (build-system r-build-system)
5114 (propagated-inputs
5115 (list r-drr r-magrittr))
5116 (native-inputs
5117 (list r-knitr))
5118 (home-page "https://github.com/gdkrmr/dimRed")
5119 (synopsis "Framework for dimensionality reduction")
5120 (description
5121 "This package provides a collection of dimensionality reduction
5122 techniques from R packages and provides a common interface for calling the
5123 methods.")
5124 (license license:gpl3)))
5125
5126 (define-public r-timedate
5127 (package
5128 (name "r-timedate")
5129 (version "3043.102")
5130 (source
5131 (origin
5132 (method url-fetch)
5133 (uri (cran-uri "timeDate" version))
5134 (sha256
5135 (base32
5136 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
5137 (properties `((upstream-name . "timeDate")))
5138 (build-system r-build-system)
5139 (home-page "https://www.rmetrics.org")
5140 (synopsis "Chronological and calendar objects")
5141 (description
5142 "This package provides an environment for teaching \"Financial
5143 Engineering and Computational Finance\" and for managing chronological and
5144 calendar objects.")
5145 (license license:gpl2+)))
5146
5147 (define-public r-magic
5148 (package
5149 (name "r-magic")
5150 (version "1.6-0")
5151 (source
5152 (origin
5153 (method url-fetch)
5154 (uri (cran-uri "magic" version))
5155 (sha256
5156 (base32
5157 "1gybia2aq80ldk1d845y5srncfzbbmpqhgl7vfaz7qqqjs6d85j5"))))
5158 (build-system r-build-system)
5159 (propagated-inputs
5160 (list r-abind))
5161 (home-page "https://github.com/RobinHankin/magic.git")
5162 (synopsis "Create and investigate magic squares")
5163 (description
5164 "This package provides a collection of efficient, vectorized algorithms
5165 for the creation and investigation of magic squares and hypercubes, including
5166 a variety of functions for the manipulation and analysis of arbitrarily
5167 dimensioned arrays.")
5168 (license license:gpl2)))
5169
5170 (define-public r-rmysql
5171 (package
5172 (name "r-rmysql")
5173 (version "0.10.23")
5174 (source
5175 (origin
5176 (method url-fetch)
5177 (uri (cran-uri "RMySQL" version))
5178 (sha256
5179 (base32
5180 "05aavyggyjv46awa7ggbxlfcy9707vak5kh7kj0ljdx8zga7xb7l"))))
5181 (properties `((upstream-name . "RMySQL")))
5182 (build-system r-build-system)
5183 (inputs
5184 (list `(,mariadb "dev") zlib))
5185 (propagated-inputs
5186 (list r-dbi))
5187 (home-page "https://github.com/r-dbi/RMySQL")
5188 (synopsis "Database interface and MySQL driver for R")
5189 (description
5190 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
5191 package contains an old implementation based on legacy code from S-PLUS which
5192 is being phased out. A modern MySQL client based on Rcpp is available from
5193 the RMariaDB package.")
5194 (license license:gpl2)))
5195
5196 (define-public r-rpostgresql
5197 (package
5198 (name "r-rpostgresql")
5199 (version "0.7-3")
5200 (source
5201 (origin
5202 (method url-fetch)
5203 (uri (cran-uri "RPostgreSQL" version))
5204 (sha256
5205 (base32
5206 "1fbixmnjp1kh6yiv8zhg8zi5ryvdf5j2jxv4agq5gcxf541s3g5x"))))
5207 (properties `((upstream-name . "RPostgreSQL")))
5208 (build-system r-build-system)
5209 (inputs
5210 (list postgresql))
5211 (propagated-inputs
5212 (list r-dbi))
5213 (home-page "https://github.com/tomoakin/RPostgreSQL")
5214 (synopsis "R interface to the PostgreSQL database system")
5215 (description
5216 "This package provides a Database Interface (DBI) compliant driver for R
5217 to access PostgreSQL database systems.")
5218 ;; The whole package is released under GPL version 2. It includes code
5219 ;; under the PostgreSQL license.
5220 (license license:gpl2)))
5221
5222 (define-public r-linprog
5223 (package
5224 (name "r-linprog")
5225 (version "0.9-4")
5226 (source
5227 (origin
5228 (method url-fetch)
5229 (uri (cran-uri "linprog" version))
5230 (sha256
5231 (base32
5232 "1d34m2nyk7m6j2dci69bhy5mlw479xax1517j7f14pq7vhpsm9l1"))))
5233 (build-system r-build-system)
5234 (propagated-inputs (list r-lpsolve))
5235 (home-page "http://linprog.r-forge.r-project.org/")
5236 (synopsis "Linear programming and optimization")
5237 (description
5238 "This package can be used to solve Linear Programming / Linear
5239 Optimization problems by using the simplex algorithm.")
5240 (license license:gpl2+)))
5241
5242 (define-public r-geometry
5243 (package
5244 (name "r-geometry")
5245 (version "0.4.6")
5246 (source
5247 (origin
5248 (method url-fetch)
5249 (uri (cran-uri "geometry" version))
5250 (sha256
5251 (base32
5252 "1n7m0djqlhrv01l98r76grkki6cv4k4q2z6c7fksqgq4r2l6a14i"))))
5253 (build-system r-build-system)
5254 (propagated-inputs
5255 (list r-magic r-linprog r-lpsolve r-rcpp r-rcppprogress))
5256 (home-page "http://geometry.r-forge.r-project.org/")
5257 (synopsis "Mesh generator and surface tessellator")
5258 (description
5259 "This package makes the qhull library available in R, in a similar manner
5260 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
5261 intersections about a point, Voronoi diagrams, furthest-site Delaunay
5262 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
5263 and higher dimensions. It implements the Quickhull algorithm for computing
5264 the convex hull. Qhull does not support constrained Delaunay triangulations,
5265 or mesh generation of non-convex objects, but the package does include some R
5266 functions that allow for this. Currently the package only gives access to
5267 Delaunay triangulation and convex hull computation.")
5268 ;; The Qhull sources are included and are distributed under a custom
5269 ;; non-copyleft license. The R sources are released under GPL version 2.
5270 (license (list license:gpl2
5271 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
5272
5273 (define-public r-ddalpha
5274 (package
5275 (name "r-ddalpha")
5276 (version "1.3.13")
5277 (source
5278 (origin
5279 (method url-fetch)
5280 (uri (cran-uri "ddalpha" version))
5281 (sha256
5282 (base32
5283 "1bjfgb3lbzhjb5wx9hzp90jppq7vnj59bmd2n9ymi8sh1570m9p4"))))
5284 (build-system r-build-system)
5285 (propagated-inputs
5286 (list r-bh
5287 r-class
5288 r-geometry
5289 r-mass
5290 r-rcpp
5291 r-robustbase
5292 r-sfsmisc))
5293 (native-inputs
5294 (list gfortran))
5295 (home-page "https://cran.r-project.org/web/packages/ddalpha")
5296 (synopsis "Depth-Based classification and calculation of data depth")
5297 (description
5298 "This package contains procedures for depth-based supervised learning,
5299 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
5300 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
5301 statistical depth function to a compact low-dimensional space, where the final
5302 classification is done. It also offers an extension to functional data and
5303 routines for calculating certain notions of statistical depth functions. 50
5304 multivariate and 5 functional classification problems are included.")
5305 (license license:gpl2)))
5306
5307 (define-public r-gower
5308 (package
5309 (name "r-gower")
5310 (version "1.0.0")
5311 (source
5312 (origin
5313 (method url-fetch)
5314 (uri (cran-uri "gower" version))
5315 (sha256
5316 (base32
5317 "0p9qx9aafkdm7wibfwk59jzw6vspsff6zwp84bc40lg0myxbf737"))))
5318 (build-system r-build-system)
5319 (home-page "https://github.com/markvanderloo/gower")
5320 (synopsis "Gower's distance")
5321 (description
5322 "This package provides tools to compute Gower's distance (or similarity)
5323 coefficient between records, and to compute the top-n matches between records.
5324 Core algorithms are executed in parallel on systems supporting OpenMP.")
5325 (license license:gpl3)))
5326
5327 (define-public r-rcpproll
5328 (package
5329 (name "r-rcpproll")
5330 (version "0.3.0")
5331 (source
5332 (origin
5333 (method url-fetch)
5334 (uri (cran-uri "RcppRoll" version))
5335 (sha256
5336 (base32
5337 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
5338 (properties `((upstream-name . "RcppRoll")))
5339 (build-system r-build-system)
5340 (propagated-inputs
5341 (list r-rcpp))
5342 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
5343 (synopsis "Efficient rolling and windowed operations")
5344 (description
5345 "This package provides fast and efficient routines for common rolling /
5346 windowed operations. Routines for the efficient computation of windowed mean,
5347 median, sum, product, minimum, maximum, standard deviation and variance are
5348 provided.")
5349 (license license:gpl2+)))
5350
5351 (define-public r-ipred
5352 (package
5353 (name "r-ipred")
5354 (version "0.9-12")
5355 (source
5356 (origin
5357 (method url-fetch)
5358 (uri (cran-uri "ipred" version))
5359 (sha256
5360 (base32
5361 "0hsq00382pfd9hzpcgphjxazbxm4zx0k2r6pk6kib56k0ibm7qfn"))))
5362 (build-system r-build-system)
5363 (propagated-inputs
5364 (list r-class
5365 r-mass
5366 r-nnet
5367 r-prodlim
5368 r-rpart
5369 r-survival))
5370 (home-page "https://cran.r-project.org/web/packages/ipred")
5371 (synopsis "Improved predictors")
5372 (description
5373 "This package provides improved predictive models by indirect
5374 classification and bagging for classification, regression and survival
5375 problems as well as resampling based estimators of prediction error.")
5376 (license license:gpl2+)))
5377
5378 (define-public r-psych
5379 (package
5380 (name "r-psych")
5381 (version "2.2.5")
5382 (source
5383 (origin
5384 (method url-fetch)
5385 (uri (cran-uri "psych" version))
5386 (sha256
5387 (base32
5388 "08f3byqwabgkqcxwpjbsxdcjkdg012iraqinw0fzskfl1srzkhyw"))))
5389 (build-system r-build-system)
5390 (propagated-inputs
5391 (list r-lattice r-mnormt r-nlme))
5392 (native-inputs
5393 (list r-knitr))
5394 (home-page "https://cran.r-project.org/web/packages/psych/")
5395 (synopsis "Procedures for psychological, psychometric, and personality research")
5396 (description
5397 "This package provides a general purpose toolbox for personality,
5398 psychometric theory and experimental psychology. Functions are primarily for
5399 multivariate analysis and scale construction using factor analysis, principal
5400 component analysis, cluster analysis and reliability analysis, although others
5401 provide basic descriptive statistics. Item Response Theory is done using
5402 factor analysis of tetrachoric and polychoric correlations. Functions for
5403 analyzing data at multiple levels include within and between group statistics,
5404 including correlations and factor analysis. Functions for simulating and
5405 testing particular item and test structures are included. Several functions
5406 serve as a useful front end for structural equation modeling. Graphical
5407 displays of path diagrams, factor analysis and structural equation models are
5408 created using basic graphics.")
5409 (license license:gpl2+)))
5410
5411 (define-public r-generics
5412 (package
5413 (name "r-generics")
5414 (version "0.1.2")
5415 (source
5416 (origin
5417 (method url-fetch)
5418 (uri (cran-uri "generics" version))
5419 (sha256
5420 (base32
5421 "162q9hdsnfcwjj255ahbi6v9vnyynvda7gb75p721y28j5xb7sk3"))))
5422 (build-system r-build-system)
5423 (home-page "https://github.com/r-lib/generics")
5424 (synopsis "Common S3 generics not provided by base R methods")
5425 (description
5426 "In order to reduce potential package dependencies and conflicts,
5427 generics provides a number of commonly used S3 generics that are not provided
5428 by base R methods related to model fitting.")
5429 (license license:gpl2)))
5430
5431 (define-public r-broom
5432 (package
5433 (name "r-broom")
5434 (version "0.8.0")
5435 (source
5436 (origin
5437 (method url-fetch)
5438 (uri (cran-uri "broom" version))
5439 (sha256
5440 (base32
5441 "16grzja9hz5mqpfzbp1r6zif1gp7swfadkm52340si9h8ifhk8b6"))))
5442 (build-system r-build-system)
5443 (propagated-inputs
5444 (list r-backports
5445 r-dplyr
5446 r-ellipsis
5447 r-generics
5448 r-ggplot2
5449 r-glue
5450 r-purrr
5451 r-rlang
5452 r-stringr
5453 r-tibble
5454 r-tidyr))
5455 (native-inputs
5456 (list r-knitr))
5457 (home-page "https://github.com/tidyverse/broom")
5458 (synopsis "Convert statistical analysis objects into tidy data frames")
5459 (description
5460 "This package provides tools to convert statistical analysis objects from
5461 R into tidy data frames, so that they can more easily be combined, reshaped
5462 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
5463 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
5464 summarizes a model's statistical findings such as coefficients of a
5465 regression; @code{augment}, which adds columns to the original data such as
5466 predictions, residuals and cluster assignments; and @code{glance}, which
5467 provides a one-row summary of model-level statistics.")
5468 (license license:expat)))
5469
5470 (define-public r-recipes
5471 (package
5472 (name "r-recipes")
5473 (version "0.2.0")
5474 (source
5475 (origin
5476 (method url-fetch)
5477 (uri (cran-uri "recipes" version))
5478 (sha256
5479 (base32
5480 "1950rvva19ms6xy9d3jx94gzy589qprk115zjjd0ib4qxgip601x"))))
5481 (build-system r-build-system)
5482 (propagated-inputs
5483 (list r-dplyr
5484 r-ellipsis
5485 r-generics
5486 r-glue
5487 r-gower
5488 r-hardhat
5489 r-ipred
5490 r-lifecycle
5491 r-lubridate
5492 r-magrittr
5493 r-matrix
5494 r-purrr
5495 r-rlang
5496 r-tibble
5497 r-tidyr
5498 r-tidyselect
5499 r-timedate
5500 r-vctrs
5501 r-withr))
5502 (native-inputs
5503 (list r-knitr))
5504 (home-page "https://github.com/topepo/recipes")
5505 (synopsis "Preprocessing tools to create design matrices")
5506 (description
5507 "Recipes is an extensible framework to create and preprocess design
5508 matrices. Recipes consist of one or more data manipulation and analysis
5509 \"steps\". Statistical parameters for the steps can be estimated from an
5510 initial data set and then applied to other data sets. The resulting design
5511 matrices can then be used as inputs into statistical or machine learning
5512 models.")
5513 (license license:gpl2)))
5514
5515 (define-public r-pdist
5516 (package
5517 (name "r-pdist")
5518 (version "1.2.1")
5519 (source
5520 (origin
5521 (method url-fetch)
5522 (uri (cran-uri "pdist" version))
5523 (sha256
5524 (base32
5525 "0bvg8si81hs79v39d7svv4zbv2p0sk2r6m9vamibvkh9qvl4x406"))))
5526 (build-system r-build-system)
5527 (home-page "https://github.com/jeffwong/pdist")
5528 (synopsis "Partitioned distance function")
5529 (description
5530 "Pdist computes the euclidean distance between rows of a matrix X and
5531 rows of another matrix Y. Previously, this could be done by binding the two
5532 matrices together and calling @code{dist}, but this creates unnecessary
5533 computation by computing the distances between a row of X and another row of
5534 X, and likewise for Y. Pdist strictly computes distances across the two
5535 matrices, not within the same matrix, making computations significantly faster
5536 for certain use cases.")
5537 (license license:gpl3+)))
5538
5539 (define-public r-ggrepel
5540 (package
5541 (name "r-ggrepel")
5542 (version "0.9.1")
5543 (source
5544 (origin
5545 (method url-fetch)
5546 (uri (cran-uri "ggrepel" version))
5547 (sha256
5548 (base32
5549 "1z5xyr5f4aryy0v1gzz9m8m4s5fzzwbrf0fxll1nbflr8xnr3yr9"))))
5550 (build-system r-build-system)
5551 (propagated-inputs
5552 (list r-ggplot2 r-rcpp r-rlang r-scales))
5553 (native-inputs
5554 (list r-knitr)) ; for vignettes
5555 (home-page "https://github.com/slowkow/ggrepel")
5556 (synopsis "Repulsive text and label geometries for ggplot2")
5557 (description
5558 "This package provides text and label geometries for ggplot2 that help to
5559 avoid overlapping text labels. Labels repel away from each other and away
5560 from the data points.")
5561 (license license:gpl3)))
5562
5563 (define-public r-coro
5564 (package
5565 (name "r-coro")
5566 (version "1.0.2")
5567 (source
5568 (origin
5569 (method url-fetch)
5570 (uri (cran-uri "coro" version))
5571 (sha256
5572 (base32 "14irld29dipgfd34y0k351daqg9vqpnpdx8m3pxmqr1aiyj5f5cv"))))
5573 (properties `((upstream-name . "coro")))
5574 (build-system r-build-system)
5575 (propagated-inputs (list r-rlang))
5576 (native-inputs (list r-knitr))
5577 (home-page "https://github.com/r-lib/coro")
5578 (synopsis "Coroutines for R")
5579 (description
5580 "This package provides coroutines for R, a family of functions that can
5581 be suspended and resumed later on. This includes async functions (which
5582 await) and generators (which yield). Async functions are based on the
5583 concurrency framework of the @code{promises} package. Generators are based on
5584 a dependency free iteration protocol defined in @code{coro} and are compatible
5585 with iterators from the @code{reticulate} package.")
5586 (license license:expat)))
5587
5588 (define-public r-corrplot
5589 (package
5590 (name "r-corrplot")
5591 (version "0.92")
5592 (source
5593 (origin
5594 (method url-fetch)
5595 (uri (cran-uri "corrplot" version))
5596 (sha256
5597 (base32
5598 "1g98jk6xsl08z4n6sy5vriif99m31zhbz7j3dh1kfj4w7yb9zh78"))))
5599 (build-system r-build-system)
5600 (native-inputs
5601 (list r-knitr))
5602 (home-page "https://github.com/taiyun/corrplot")
5603 (synopsis "Visualization of a correlation matrix")
5604 (description
5605 "This package provides a graphical display of a correlation matrix or
5606 general matrix. It also contains some algorithms to do matrix reordering. In
5607 addition, corrplot is good at details, including choosing color, text labels,
5608 color labels, layout, etc.")
5609 ;; Any version of the GPL
5610 (license license:gpl2+)))
5611
5612 (define-public r-stringdist
5613 (package
5614 (name "r-stringdist")
5615 (version "0.9.8")
5616 (source
5617 (origin
5618 (method url-fetch)
5619 (uri (cran-uri "stringdist" version))
5620 (sha256
5621 (base32 "1fv1hbdlm8qwx57b2aj50mw0say5k48awzavx65mfk67qp6ddk7g"))))
5622 (build-system r-build-system)
5623 (home-page "https://github.com/markvanderloo/stringdist")
5624 (synopsis "Approximate string matching and string distance functions")
5625 (description
5626 "This package implements an approximate string matching version of R's
5627 native @code{match} function. It can calculate various string distances based
5628 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal string alignment),
5629 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
5630 Jaro-Winkler). An implementation of soundex is provided as well. Distances
5631 can be computed between character vectors while taking proper care of encoding
5632 or between integer vectors representing generic sequences.")
5633 (license license:gpl3+)))
5634
5635 (define-public r-ucminf
5636 (package
5637 (name "r-ucminf")
5638 (version "1.1-4")
5639 (source
5640 (origin
5641 (method url-fetch)
5642 (uri (cran-uri "ucminf" version))
5643 (sha256
5644 (base32
5645 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
5646 (build-system r-build-system)
5647 (native-inputs (list gfortran))
5648 (home-page "https://cran.r-project.org/web/packages/ucminf/")
5649 (synopsis "General-purpose unconstrained non-linear optimization")
5650 (description
5651 "This package provides an implementation of an algorithm for
5652 general-purpose unconstrained non-linear optimization. The algorithm is of
5653 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
5654 search with a trust region type monitoring of the input to the line search
5655 algorithm. The interface of @code{ucminf} is designed for easy interchange
5656 with the package @code{optim}.")
5657 (license license:gpl2+)))
5658
5659 (define-public r-usedist
5660 (package
5661 (name "r-usedist")
5662 (version "0.4.0")
5663 (source
5664 (origin
5665 (method url-fetch)
5666 (uri (cran-uri "usedist" version))
5667 (sha256
5668 (base32 "0ddf1zcalbrn293qmr9kdzz3x16fzc4k1bwb1pjmwnspisqfi8kj"))))
5669 (properties `((upstream-name . "usedist")))
5670 (build-system r-build-system)
5671 (home-page "https://cran.r-project.org/package=usedist")
5672 (synopsis "Distance matrix utilities")
5673 (description
5674 "This package provides functions to re-arrange, extract, and work with
5675 distances.")
5676 (license license:gpl3)))
5677
5678 (define-public r-useful
5679 (package
5680 (name "r-useful")
5681 (version "1.2.6")
5682 (source (origin
5683 (method url-fetch)
5684 (uri (cran-uri "useful" version))
5685 (sha256
5686 (base32
5687 "0n50v1q75k518sq23id14jphwla35q4sasahrnrnllwrachl67v1"))))
5688 (properties `((upstream-name . "useful")))
5689 (build-system r-build-system)
5690 (propagated-inputs
5691 (list r-assertthat
5692 r-dplyr
5693 r-ggplot2
5694 r-magrittr
5695 r-matrix
5696 r-plyr
5697 r-purrr
5698 r-scales))
5699 (home-page "https://github.com/jaredlander/useful")
5700 (synopsis "Collection of handy, useful functions")
5701 (description "This package provides a set of little functions that have been
5702 found useful to do little odds and ends such as plotting the results of K-means
5703 clustering, substituting special text characters, viewing parts of a
5704 @code{data.frame}, constructing formulas from text and building design and
5705 response matrices.")
5706 (license license:bsd-3)))
5707
5708 (define-public r-ordinal
5709 (package
5710 (name "r-ordinal")
5711 (version "2019.12-10")
5712 (source
5713 (origin
5714 (method url-fetch)
5715 (uri (cran-uri "ordinal" version))
5716 (sha256
5717 (base32
5718 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
5719 (build-system r-build-system)
5720 (propagated-inputs
5721 (list r-mass r-matrix r-numderiv r-ucminf))
5722 (home-page "https://github.com/runehaubo/ordinal")
5723 (synopsis "Regression models for ordinal data")
5724 (description
5725 "This package provides an implementation of cumulative link (mixed)
5726 models also known as ordered regression models, proportional odds models,
5727 proportional hazards models for grouped survival times and ordered models.
5728 Estimation is via maximum likelihood and mixed models are fitted with the
5729 Laplace approximation and adaptive Gauss-Hermite quadrature.")
5730 (license license:gpl2+)))
5731
5732 (define-public r-jomo
5733 (package
5734 (name "r-jomo")
5735 (version "2.7-3")
5736 (source
5737 (origin
5738 (method url-fetch)
5739 (uri (cran-uri "jomo" version))
5740 (sha256
5741 (base32
5742 "0qq03zspmh8x2c8w882ynsw7wshr9b0fyrpwnqx5yc1xlzrqffcx"))))
5743 (build-system r-build-system)
5744 (propagated-inputs
5745 (list r-lme4 r-mass r-ordinal r-survival r-tibble))
5746 (home-page "https://cran.r-project.org/web/packages/jomo/")
5747 (synopsis "Multilevel Joint Modelling Multiple Imputation")
5748 (description
5749 "Similarly to Schafer's package pan, jomo is a package for multilevel
5750 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
5751 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
5752 possibility of handling binary and categorical data through latent normal
5753 variables, the option to use cluster-specific covariance matrices and to
5754 impute compatibly with the substantive model.")
5755 (license license:gpl2)))
5756
5757 (define-public r-pan
5758 (package
5759 (name "r-pan")
5760 (version "1.6")
5761 (source
5762 (origin
5763 (method url-fetch)
5764 (uri (cran-uri "pan" version))
5765 (sha256
5766 (base32
5767 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
5768 (build-system r-build-system)
5769 (native-inputs (list gfortran))
5770 (home-page "https://cran.r-project.org/web/packages/pan/")
5771 (synopsis "Multiple imputation for multivariate panel or clustered data")
5772 (description
5773 "This package implements multiple imputation for multivariate panel or
5774 clustered data.")
5775 (license license:gpl3)))
5776
5777 (define-public r-mitml
5778 (package
5779 (name "r-mitml")
5780 (version "0.4-3")
5781 (source
5782 (origin
5783 (method url-fetch)
5784 (uri (cran-uri "mitml" version))
5785 (sha256
5786 (base32
5787 "00i18nnvrdrg91crgcp2a431xs71cawaip3xkqk2myv0iav3xga9"))))
5788 (build-system r-build-system)
5789 (propagated-inputs
5790 (list r-haven r-jomo r-pan))
5791 (native-inputs
5792 (list r-knitr))
5793 (home-page "https://cran.r-project.org/web/packages/mitml/")
5794 (synopsis "Tools for multiple imputation in multilevel modeling")
5795 (description
5796 "This package provides tools for multiple imputation of missing data in
5797 multilevel modeling. It includes a user-friendly interface to the packages
5798 pan and jomo, and several functions for visualization, data management and the
5799 analysis of multiply imputed data sets.")
5800 (license license:gpl2+)))
5801
5802 (define-public r-mice
5803 (package
5804 (name "r-mice")
5805 (version "3.14.0")
5806 (source
5807 (origin
5808 (method url-fetch)
5809 (uri (cran-uri "mice" version))
5810 (sha256
5811 (base32
5812 "01fnfrr7adp29s5kic95r9q0rdznkz2pjmziyimnrqzyicyvfyzq"))))
5813 (build-system r-build-system)
5814 (propagated-inputs
5815 (list r-broom
5816 r-cpp11
5817 r-dplyr
5818 r-generics
5819 r-lattice
5820 r-rcpp
5821 r-rlang
5822 r-tidyr
5823 r-withr))
5824 (home-page "https://cran.r-project.org/web/packages/mice/")
5825 (synopsis "Multivariate imputation by chained equations")
5826 (description
5827 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
5828 implemented by the MICE algorithm as described in @url{Van Buuren and
5829 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
5830 variable has its own imputation model. Built-in imputation models are
5831 provided for continuous data (predictive mean matching, normal), binary
5832 data (logistic regression), unordered categorical data (polytomous logistic
5833 regression) and ordered categorical data (proportional odds). MICE can also
5834 impute continuous two-level data (normal model, pan, second-level variables).
5835 Passive imputation can be used to maintain consistency between variables.
5836 Various diagnostic plots are available to inspect the quality of the
5837 imputations.")
5838 ;; Any of these two versions.
5839 (license (list license:gpl2 license:gpl3))))
5840
5841 (define-public r-truncnorm
5842 (package
5843 (name "r-truncnorm")
5844 (version "1.0-8")
5845 (source
5846 (origin
5847 (method url-fetch)
5848 (uri (cran-uri "truncnorm" version))
5849 (sha256
5850 (base32
5851 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
5852 (build-system r-build-system)
5853 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
5854 (synopsis "Truncated normal distribution")
5855 (description "This package provides functions for the truncated normal
5856 distribution with mean equal to @code{mean} and standard deviation equal to
5857 @code{sd}. It includes density, distribution, quantile, and expected value
5858 functions, as well as a random generation function.")
5859 (license license:gpl2)))
5860
5861 (define-public r-rsolnp
5862 (package
5863 (name "r-rsolnp")
5864 (version "1.16")
5865 (source
5866 (origin
5867 (method url-fetch)
5868 (uri (cran-uri "Rsolnp" version))
5869 (sha256
5870 (base32
5871 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
5872 (properties `((upstream-name . "Rsolnp")))
5873 (build-system r-build-system)
5874 (propagated-inputs
5875 (list r-truncnorm))
5876 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
5877 (synopsis "General non-linear optimization")
5878 (description "The Rsolnp package implements a general non-linear augmented
5879 Lagrange multiplier method solver, a @dfn{sequential quadratic
5880 programming} (SQP) based solver).")
5881 ;; Any version of the GPL.
5882 (license license:gpl2+)))
5883
5884 (define-public r-hardyweinberg
5885 (package
5886 (name "r-hardyweinberg")
5887 (version "1.7.5")
5888 (source
5889 (origin
5890 (method url-fetch)
5891 (uri (cran-uri "HardyWeinberg" version))
5892 (sha256
5893 (base32
5894 "0b3szw090dsc3bkas2kvx787ww2i6zzg2qmdyivmqc8amx5arn6g"))))
5895 (properties `((upstream-name . "HardyWeinberg")))
5896 (build-system r-build-system)
5897 (propagated-inputs
5898 (list r-mice r-nnet r-rcpp r-rsolnp))
5899 (home-page "https://cran.r-project.org/package=HardyWeinberg")
5900 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
5901 (description
5902 "This package contains tools for exploring Hardy-Weinberg equilibrium for
5903 diallelic genetic marker data. All classical tests (chi-square, exact,
5904 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
5905 included in the package, as well as functions for power computation and for
5906 the simulation of marker data under equilibrium and disequilibrium. Routines
5907 for dealing with markers on the X-chromosome are included. Functions for
5908 testing equilibrium in the presence of missing data by using multiple
5909 imputation are also provided. Implements several graphics for exploring the
5910 equilibrium status of a large set of diallelic markers: ternary plots with
5911 acceptance regions, log-ratio plots and Q-Q plots.")
5912 (license license:gpl2+)))
5913
5914 (define-public r-sm
5915 (package
5916 (name "r-sm")
5917 (version "2.2-5.7")
5918 (source
5919 (origin
5920 (method url-fetch)
5921 (uri (cran-uri "sm" version))
5922 (sha256
5923 (base32
5924 "03z8igsjqr32x407asxvkrbayvm6yhv9xyfs0n8fkmv8zk5a41r6"))))
5925 (build-system r-build-system)
5926 (native-inputs (list gfortran))
5927 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
5928 (synopsis "Smoothing methods for nonparametric regression and density estimation")
5929 (description
5930 "This is software accompanying the book 'Applied Smoothing Techniques for
5931 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
5932 University Press. It provides smoothing methods for nonparametric regression
5933 and density estimation")
5934 (license license:gpl2+)))
5935
5936 (define-public r-venndiagram
5937 (package
5938 (name "r-venndiagram")
5939 (version "1.7.3")
5940 (source (origin
5941 (method url-fetch)
5942 (uri (cran-uri "VennDiagram" version))
5943 (sha256
5944 (base32
5945 "0ilcxcp8qskmb5cp7fyb7i0qizg42lrx0ny8ws3if90kfrglghp7"))))
5946 (properties `((upstream-name . "VennDiagram")))
5947 (build-system r-build-system)
5948 (propagated-inputs
5949 (list r-futile-logger))
5950 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
5951 (synopsis "Generate High-Resolution Venn and Euler Plots")
5952 (description
5953 "This package provides a set of functions to generate high-resolution
5954 Venn and Euler plots. It includes handling for several special cases,
5955 including two-case scaling, and extensive customization of plot shape and
5956 structure.")
5957 (license license:gpl2+)))
5958
5959 (define-public r-vioplot
5960 (package
5961 (name "r-vioplot")
5962 (version "0.3.7")
5963 (source
5964 (origin
5965 (method url-fetch)
5966 (uri (cran-uri "vioplot" version))
5967 (sha256
5968 (base32
5969 "1dmdasp3jldc41233z6r08w3j76vyyp9m3jrj7n4ahk48yd5siq6"))))
5970 (build-system r-build-system)
5971 (propagated-inputs
5972 (list r-sm r-zoo))
5973 (native-inputs
5974 (list r-knitr))
5975 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
5976 (synopsis "Violin plot")
5977 (description
5978 "This package provides a violin plot, which is a combination of a box
5979 plot and a kernel density plot.")
5980 (license license:bsd-3)))
5981
5982 (define-public r-rsofia
5983 (package
5984 (name "r-rsofia")
5985 (version "1.1")
5986 (source (origin
5987 (method url-fetch)
5988 ;; This package has been removed from CRAN, so we can
5989 ;; only fetch it from the archives.
5990 (uri (string-append "https://cran.r-project.org/src/"
5991 "contrib/Archive/RSofia/RSofia_"
5992 version ".tar.gz"))
5993 (sha256
5994 (base32
5995 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
5996 (properties `((upstream-name . "RSofia")))
5997 (build-system r-build-system)
5998 (propagated-inputs
5999 (list r-rcpp))
6000 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
6001 (synopsis "Port of sofia-ml to R")
6002 (description "This package is a port of sofia-ml to R. Sofia-ml is a
6003 suite of fast incremental algorithms for machine learning that can be used for
6004 training models for classification or ranking.")
6005 (license license:asl2.0)))
6006
6007 (define-public r-xts
6008 (package
6009 (name "r-xts")
6010 (version "0.12.1")
6011 (source
6012 (origin
6013 (method url-fetch)
6014 (uri (cran-uri "xts" version))
6015 (sha256
6016 (base32
6017 "0b6a7mpyk9aw6axas7nz01gadczprwwfhii01fz31z26z555i06n"))))
6018 (build-system r-build-system)
6019 (propagated-inputs (list r-zoo))
6020 (home-page "https://github.com/joshuaulrich/xts")
6021 (synopsis "Extensible time series")
6022 (description
6023 "This package provides for uniform handling of R's different time-based
6024 data classes by extending @code{zoo}, maximizing native format information
6025 preservation and allowing for user-level customization and extension, while
6026 simplifying cross-class interoperability.")
6027 (license license:gpl2+)))
6028
6029 (define-public r-performanceanalytics
6030 (package
6031 (name "r-performanceanalytics")
6032 (version "2.0.4")
6033 (source
6034 (origin
6035 (method url-fetch)
6036 (uri (cran-uri "PerformanceAnalytics" version))
6037 (sha256
6038 (base32
6039 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
6040 (properties
6041 `((upstream-name . "PerformanceAnalytics")))
6042 (build-system r-build-system)
6043 (propagated-inputs
6044 (list r-quadprog r-xts r-zoo))
6045 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
6046 (synopsis "Econometric tools for performance and risk analysis")
6047 (description "This is a collection of econometric functions for
6048 performance and risk analysis. This package aims to aid practitioners and
6049 researchers in utilizing the latest research in analysis of non-normal return
6050 streams. In general, it is most tested on return (rather than price) data on
6051 a regular scale, but most functions will work with irregular return data as
6052 well, and increasing numbers of functions will work with P&L or price data
6053 where possible.")
6054 ;; Either version may be picked.
6055 (license (list license:gpl2 license:gpl3))))
6056
6057 (define-public r-laeken
6058 (package
6059 (name "r-laeken")
6060 (version "0.5.2")
6061 (source
6062 (origin
6063 (method url-fetch)
6064 (uri (cran-uri "laeken" version))
6065 (sha256
6066 (base32
6067 "1p3ccbaydlr52p8qmgmm2l6kryvq6jjjx7mqn2vv0gpjaxqhyy92"))))
6068 (build-system r-build-system)
6069 (propagated-inputs
6070 (list r-boot r-mass))
6071 (home-page "https://cran.r-project.org/web/packages/laeken/")
6072 (synopsis "Estimation of indicators on social exclusion and poverty")
6073 (description "This package provides tools for the estimation of indicators
6074 on social exclusion and poverty, as well as an implementation of Pareto tail
6075 modeling for empirical income distributions.")
6076 (license license:gpl2+)))
6077
6078 (define-public r-vcd
6079 (package
6080 (name "r-vcd")
6081 (version "1.4-9")
6082 (source
6083 (origin
6084 (method url-fetch)
6085 (uri (cran-uri "vcd" version))
6086 (sha256
6087 (base32
6088 "13sn77qdcyll9lz7nab0bxzfvpgj8f5rl2cq5ylpz8pibynj1d55"))))
6089 (build-system r-build-system)
6090 (propagated-inputs
6091 (list r-colorspace r-lmtest r-mass))
6092 (home-page "https://cran.r-project.org/web/packages/vcd/")
6093 (synopsis "Visualizing categorical data")
6094 (description "This package provides visualization techniques, data sets,
6095 summary and inference procedures aimed particularly at categorical data.
6096 Special emphasis is given to highly extensible grid graphics. The package was
6097 originally inspired by the book \"Visualizing Categorical Data\" by Michael
6098 Friendly and is now the main support package for a new book, \"Discrete Data
6099 Analysis with R\" by Michael Friendly and David Meyer (2015).")
6100 (license license:gpl2)))
6101
6102 (define-public r-vcfr
6103 (package
6104 (name "r-vcfr")
6105 (version "1.12.0")
6106 (source (origin
6107 (method url-fetch)
6108 (uri (cran-uri "vcfR" version))
6109 (sha256
6110 (base32
6111 "0lhxb3ac4fafwik9q3cds46svzf0hyca8k54chw3dpk50c0zz1yx"))))
6112 (build-system r-build-system)
6113 (native-inputs
6114 (list r-knitr))
6115 (inputs
6116 (list zlib))
6117 (propagated-inputs
6118 (list r-ape
6119 r-dplyr
6120 r-magrittr
6121 r-memuse
6122 r-pinfsc50
6123 r-rcpp
6124 r-stringr
6125 r-tibble
6126 r-vegan
6127 r-viridislite))
6128 (home-page "https://github.com/knausb/vcfR")
6129 (synopsis "Manipulate and visualize VCF data")
6130 (description "This package facilitates easy manipulation of variant call
6131 format (VCF) data. Functions are provided to rapidly read from and write to
6132 VCF files. Once VCF data is read into R, a parser function extracts matrices
6133 of data. This information can then be used for quality control or other
6134 purposes. Additional functions provide visualization of genomic data. Once
6135 processing is complete data may be written to a VCF file. It also may be
6136 converted into other popular R objects. This package provides a link between
6137 VCF data and familiar R software.")
6138 (license license:gpl3)))
6139
6140 (define-public r-ica
6141 (package
6142 (name "r-ica")
6143 (version "1.0-2")
6144 (source
6145 (origin
6146 (method url-fetch)
6147 (uri (cran-uri "ica" version))
6148 (sha256
6149 (base32
6150 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
6151 (build-system r-build-system)
6152 (home-page "https://cran.r-project.org/web/packages/ica/")
6153 (synopsis "Independent component analysis")
6154 (description "This package provides tools for @dfn{Independent Component
6155 Analysis} (ICA) using various algorithms: FastICA,
6156 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
6157 of Eigenmatrices} (JADE).")
6158 (license license:gpl2+)))
6159
6160 (define-public r-dtw
6161 (package
6162 (name "r-dtw")
6163 (version "1.22-3")
6164 (source
6165 (origin
6166 (method url-fetch)
6167 (uri (cran-uri "dtw" version))
6168 (sha256
6169 (base32
6170 "004gm4mzgdzdj807j3bwqsv5lizmnmz5jq514bdjshhkysnzjz6z"))))
6171 (build-system r-build-system)
6172 (propagated-inputs (list r-proxy))
6173 (home-page "http://dtw.r-forge.r-project.org/")
6174 (synopsis "Dynamic Time Warping Algorithms")
6175 (description "This package provides a comprehensive implementation of
6176 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
6177 optimal (least cumulative distance) alignment between points of two time
6178 series. Common DTW variants covered include local (slope) and global (window)
6179 constraints, subsequence matches, arbitrary distance definitions,
6180 normalizations, minimum variance matching, and so on.")
6181 (license license:gpl2+)))
6182
6183 (define-public r-sdmtools
6184 (package
6185 (name "r-sdmtools")
6186 (version "1.1-221.2")
6187 (source
6188 (origin
6189 (method url-fetch)
6190 (uri (cran-uri "SDMTools" version))
6191 (sha256
6192 (base32
6193 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
6194 (properties `((upstream-name . "SDMTools")))
6195 (build-system r-build-system)
6196 (propagated-inputs (list r-r-utils))
6197 (home-page "https://www.rforge.net/SDMTools/")
6198 (synopsis "Species distribution modelling tools")
6199 (description "This package provides a set of tools for post processing
6200 the outcomes of species distribution modeling exercises. It includes novel
6201 methods for comparing models and tracking changes in distributions through
6202 time. It further includes methods for visualizing outcomes, selecting
6203 thresholds, calculating measures of accuracy and landscape fragmentation
6204 statistics, etc.")
6205 (license license:gpl3+)))
6206
6207 (define-public r-scatterplot3d
6208 (package
6209 (name "r-scatterplot3d")
6210 (version "0.3-41")
6211 (source
6212 (origin
6213 (method url-fetch)
6214 (uri (cran-uri "scatterplot3d" version))
6215 (sha256
6216 (base32
6217 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
6218 (build-system r-build-system)
6219 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
6220 (synopsis "3D scatter plot")
6221 (description "This package provides an implementation of scatter plots for
6222 plotting. a three dimensional point cloud.")
6223 (license license:gpl2)))
6224
6225 (define-public r-ggridges
6226 (package
6227 (name "r-ggridges")
6228 (version "0.5.3")
6229 (source
6230 (origin
6231 (method url-fetch)
6232 (uri (cran-uri "ggridges" version))
6233 (sha256
6234 (base32
6235 "0bmlqy1p6rac90af97ffpdi6php7dblx66l2hcm8ljidgyqzmspm"))))
6236 (build-system r-build-system)
6237 (propagated-inputs
6238 (list r-ggplot2 r-plyr r-scales r-withr))
6239 (native-inputs
6240 (list r-knitr))
6241 (home-page "https://github.com/clauswilke/ggridges")
6242 (synopsis "Ridgeline plots in ggplot2")
6243 (description
6244 "Ridgeline plots provide a convenient way of visualizing changes in
6245 distributions over time or space. This package enables the creation of such
6246 plots in @code{ggplot2}.")
6247 (license license:gpl2)))
6248
6249 (define-public r-ggjoy
6250 (package
6251 (name "r-ggjoy")
6252 (version "0.4.1")
6253 (source
6254 (origin
6255 (method url-fetch)
6256 (uri (cran-uri "ggjoy" version))
6257 (sha256
6258 (base32
6259 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
6260 (build-system r-build-system)
6261 (propagated-inputs
6262 (list r-ggplot2 r-ggridges))
6263 (home-page "https://github.com/clauswilke/ggjoy")
6264 (synopsis "Joyplots in ggplot2")
6265 (description "Joyplots provide a convenient way of visualizing changes in
6266 distributions over time or space. This package enables the creation of such
6267 plots in @code{ggplot2}.")
6268 (license license:gpl2)))
6269
6270 (define-public r-cli
6271 (package
6272 (name "r-cli")
6273 (version "3.3.0")
6274 (source
6275 (origin
6276 (method url-fetch)
6277 (uri (cran-uri "cli" version))
6278 (sha256
6279 (base32
6280 "0qqd4mscv8ndjbji7knprdlv2hhyk35gazagvapbjzq1p6yfpaf3"))))
6281 (build-system r-build-system)
6282 (propagated-inputs
6283 (list r-glue))
6284 (home-page "https://github.com/r-lib/cli#readme")
6285 (synopsis "Helpers for developing command line interfaces")
6286 (description "This package provides a suite of tools designed to build
6287 attractive command line interfaces (CLIs). It includes tools for drawing
6288 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
6289 (license license:expat)))
6290
6291 (define-public r-argparser
6292 (package
6293 (name "r-argparser")
6294 (version "0.7.1")
6295 (source
6296 (origin
6297 (method url-fetch)
6298 (uri (cran-uri "argparser" version))
6299 (sha256
6300 (base32
6301 "0xcl0ivsbc4iw8s7027q4cx68j6s5lihbby0xa9pmlv4wjmcvdr6"))))
6302 (build-system r-build-system)
6303 (home-page "https://bitbucket.org/djhshih/argparser")
6304 (synopsis "Command-line argument parser")
6305 (description
6306 "This package provides a cross-platform command-line argument parser
6307 written purely in R with no external dependencies. It is useful with the
6308 Rscript front-end and facilitates turning an R script into an executable
6309 script.")
6310 (license license:gpl3+)))
6311
6312 (define-public r-debugme
6313 (package
6314 (name "r-debugme")
6315 (version "1.1.0")
6316 (source
6317 (origin
6318 (method url-fetch)
6319 (uri (cran-uri "debugme" version))
6320 (sha256
6321 (base32
6322 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
6323 (build-system r-build-system)
6324 (propagated-inputs (list r-crayon))
6325 (home-page "https://github.com/r-lib/debugme#readme")
6326 (synopsis "Debug R packages")
6327 (description
6328 "This package allows the user to specify debug messages as special string
6329 constants, and control debugging of packages via environment variables.")
6330 (license license:expat)))
6331
6332 (define-public r-processx
6333 (package
6334 (name "r-processx")
6335 (version "3.5.3")
6336 (source
6337 (origin
6338 (method url-fetch)
6339 (uri (cran-uri "processx" version))
6340 (sha256
6341 (base32 "0ail3w8n5g1ibdamgpxcfpla18kqkilmppiasm7ms67cavx2k5k7"))))
6342 (build-system r-build-system)
6343 (propagated-inputs
6344 (list r-ps r-r6))
6345 (home-page "https://github.com/r-lib/processx3")
6346 (synopsis "Execute and control system processes")
6347 (description
6348 "This package provides portable tools to run system processes in the
6349 background. It can check if a background process is running; wait on a
6350 background process to finish; get the exit status of finished processes; kill
6351 background processes and their children; restart processes. It can read the
6352 standard output and error of the processes, using non-blocking connections.
6353 @code{processx} can poll a process for standard output or error, with a
6354 timeout. It can also poll several processes at once.")
6355 (license license:expat)))
6356
6357 (define-public r-tsp
6358 (package
6359 (name "r-tsp")
6360 (version "1.2-0")
6361 (source
6362 (origin
6363 (method url-fetch)
6364 (uri (cran-uri "TSP" version))
6365 (sha256
6366 (base32
6367 "022k0972kcxb0w6qhx09l9cif8fmpkpvwddvgxiy60bx343ywzia"))))
6368 (properties `((upstream-name . "TSP")))
6369 (build-system r-build-system)
6370 (propagated-inputs (list r-foreach))
6371 (home-page "https://cran.r-project.org/web/packages/TSP/")
6372 (synopsis "Traveling salesperson problem (TSP)")
6373 (description "This package provides basic infrastructure and some
6374 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
6375 traveling salesman problem).")
6376 (license license:gpl3)))
6377
6378 (define-public r-qap
6379 (package
6380 (name "r-qap")
6381 (version "0.1-1")
6382 (source
6383 (origin
6384 (method url-fetch)
6385 (uri (cran-uri "qap" version))
6386 (sha256
6387 (base32
6388 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
6389 (build-system r-build-system)
6390 (native-inputs (list gfortran))
6391 (home-page "https://cran.r-project.org/web/packages/qap/")
6392 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
6393 (description "This package implements heuristics for the @dfn{quadratic
6394 assignment problem} (QAP). Currently only a simulated annealing heuristic is
6395 available.")
6396 (license license:gpl3)))
6397
6398 (define-public r-gclus
6399 (package
6400 (name "r-gclus")
6401 (version "1.3.2")
6402 (source
6403 (origin
6404 (method url-fetch)
6405 (uri (cran-uri "gclus" version))
6406 (sha256
6407 (base32
6408 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
6409 (build-system r-build-system)
6410 (propagated-inputs (list r-cluster))
6411 (home-page "https://cran.r-project.org/web/packages/gclus/")
6412 (synopsis "Clustering graphics")
6413 (description "This package orders panels in scatterplot matrices and
6414 parallel coordinate displays by some merit index. It contains various indices
6415 of merit, ordering functions, and enhanced versions of @code{pairs} and
6416 @code{parcoord} which color panels according to their merit level.")
6417 (license license:gpl2+)))
6418
6419 (define-public r-webshot
6420 (package
6421 (name "r-webshot")
6422 (version "0.5.3")
6423 (source
6424 (origin
6425 (method url-fetch)
6426 (uri (cran-uri "webshot" version))
6427 (sha256
6428 (base32
6429 "1h6v94zwq0ypgi4vf8xlhp5k13j7f9061hx908177i68c6zg5i5p"))))
6430 (build-system r-build-system)
6431 (propagated-inputs
6432 (list r-callr r-jsonlite r-magrittr))
6433 (home-page "https://github.com/wch/webshot/")
6434 (synopsis "Take screenshots of web pages")
6435 (description
6436 "Webshot makes it easy to take screenshots of web pages from within R.
6437 It can also run Shiny applications locally and take screenshots of the
6438 application; and it can render and screenshot static as well as interactive R
6439 Markdown documents.")
6440 (license license:gpl2)))
6441
6442 (define-public r-seriation
6443 (package
6444 (name "r-seriation")
6445 (version "1.3.5")
6446 (source
6447 (origin
6448 (method url-fetch)
6449 (uri (cran-uri "seriation" version))
6450 (sha256
6451 (base32
6452 "0dlj0mqpg585m6i7yn0h878i8ag6pyqph98xkk42i2nvghpy01gr"))))
6453 (build-system r-build-system)
6454 (propagated-inputs
6455 (list r-cluster
6456 r-colorspace
6457 r-gclus
6458 r-mass
6459 r-qap
6460 r-registry
6461 r-tsp))
6462 (native-inputs (list gfortran))
6463 (home-page "https://s2.smu.edu/IDA/seriation/")
6464 (synopsis "Infrastructure for ordering objects using seriation")
6465 (description
6466 "This package provides infrastructure for seriation with an
6467 implementation of several seriation/sequencing techniques to reorder matrices,
6468 dissimilarity matrices, and dendrograms. It also provides (optimally)
6469 reordered heatmaps, color images and clustering visualizations like
6470 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
6471 iVAT).")
6472 (license license:gpl3)))
6473
6474 (define-public r-xfun
6475 (package
6476 (name "r-xfun")
6477 (version "0.31")
6478 (source
6479 (origin
6480 (method url-fetch)
6481 (uri (cran-uri "xfun" version))
6482 (sha256
6483 (base32 "0dgjkrlwl6rxmvdn6s1xrbiaa53hkfx2s7rqrbrc7c6shbkg6sfi"))))
6484 (build-system r-build-system)
6485 ;; knitr itself depends on xfun
6486 #;
6487 (native-inputs
6488 `(("r-knitr" ,r-knitr)))
6489 (home-page "https://github.com/yihui/xfun")
6490 (synopsis "Miscellaneous functions")
6491 (description
6492 "This package provides miscellaneous functions commonly used in other
6493 packages maintained by Yihui Xie.")
6494 (license license:expat)))
6495
6496 (define-public r-utf8
6497 (package
6498 (name "r-utf8")
6499 (version "1.2.2")
6500 (source
6501 (origin
6502 (method url-fetch)
6503 (uri (cran-uri "utf8" version))
6504 (sha256
6505 (base32
6506 "1x6qg19z4qih9lk3mvnmx0vailm1khp5lylw4hlwz6rssj3yw6m7"))))
6507 (build-system r-build-system)
6508 (native-inputs
6509 (list r-knitr r-rmarkdown)) ; for vignettes
6510 (home-page "https://github.com/patperry/r-utf8")
6511 (synopsis "Unicode text processing")
6512 (description
6513 "This package provides tools to process and print UTF-8 encoded
6514 international text (Unicode). Input, validate, normalize, encode, format, and
6515 display.")
6516 (license license:asl2.0)))
6517
6518 (define-public r-zeallot
6519 (package
6520 (name "r-zeallot")
6521 (version "0.1.0")
6522 (source
6523 (origin
6524 (method url-fetch)
6525 (uri (cran-uri "zeallot" version))
6526 (sha256
6527 (base32
6528 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
6529 (build-system r-build-system)
6530 (home-page "https://github.com/nteetor/zeallot")
6531 (synopsis "Multiple, unpacking, and destructuring assignment")
6532 (description
6533 "This package provides a @code{%<-%} operator to perform multiple,
6534 unpacking, and destructuring assignment in R. The operator unpacks the
6535 right-hand side of an assignment into multiple values and assigns these values
6536 to variables on the left-hand side of the assignment.")
6537 (license license:expat)))
6538
6539 (define-public r-zlog
6540 (package
6541 (name "r-zlog")
6542 (version "1.0.0")
6543 (source (origin
6544 (method url-fetch)
6545 (uri (cran-uri "zlog" version))
6546 (sha256
6547 (base32
6548 "1d5j31p0h3rrn230087h3ngpvwknlisjv0f1qdbicdj9m177spci"))))
6549 (properties `((upstream-name . "zlog")))
6550 (build-system r-build-system)
6551 (native-inputs (list r-knitr))
6552 (home-page "https://cran.r-project.org/package=zlog")
6553 (synopsis "Transformation for laboratory easurements")
6554 (description
6555 "The @code{zlog} package offers functions to transform laboratory
6556 measurements into standardised z or @math{z(log)-values}. Therefore the lower
6557 and upper reference limits are needed. If these are not known they could be
6558 estimated from a given sample.")
6559 (license license:gpl3+)))
6560
6561 (define-public r-vctrs
6562 (package
6563 (name "r-vctrs")
6564 (version "0.4.1")
6565 (source
6566 (origin
6567 (method url-fetch)
6568 (uri (cran-uri "vctrs" version))
6569 (sha256
6570 (base32
6571 "1pb0wjpwix29q8d8p3wi72a9mp9mif7369pk31w238cs00g8hxln"))))
6572 (build-system r-build-system)
6573 (propagated-inputs
6574 (list r-cli r-glue r-rlang))
6575 (native-inputs
6576 (list r-knitr))
6577 (home-page "https://github.com/r-lib/vctrs")
6578 (synopsis "Vector helpers")
6579 (description
6580 "There are three main goals to the @code{vctrs} package:
6581
6582 @enumerate
6583 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
6584 @code{length()} and @code{class()}. These definitions are paired with a
6585 framework for type-coercion and size-recycling.
6586 @item To define type- and size-stability as desirable function properties, use
6587 them to analyse existing base function, and to propose better alternatives.
6588 This work has been particularly motivated by thinking about the ideal
6589 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
6590 @item To provide a new @code{vctr} base class that makes it easy to create new
6591 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
6592 a few new @code{vctrs} generics, making implementation considerably simpler
6593 and more robust.
6594 @end enumerate\n")
6595 (license license:gpl3)))
6596
6597 (define-public r-pillar
6598 (package
6599 (name "r-pillar")
6600 (version "1.7.0")
6601 (source
6602 (origin
6603 (method url-fetch)
6604 (uri (cran-uri "pillar" version))
6605 (sha256
6606 (base32
6607 "1fqk18vc9ashf12gdqkdi6n1nj5lh324vwhgiib3b2fcb2bghhbq"))))
6608 (build-system r-build-system)
6609 (propagated-inputs
6610 (list r-cli
6611 r-crayon
6612 r-ellipsis
6613 r-fansi
6614 r-glue
6615 r-lifecycle
6616 r-rlang
6617 r-utf8
6618 r-vctrs))
6619 (native-inputs
6620 (list r-knitr))
6621 (home-page "https://github.com/r-lib/pillar")
6622 (synopsis "Coloured formatting for columns")
6623 (description
6624 "This package provides a @code{pillar} generic designed for formatting
6625 columns of data using the full range of colours provided by modern
6626 terminals.")
6627 (license license:gpl3)))
6628
6629 (define-public r-pinfsc50
6630 (package
6631 (name "r-pinfsc50")
6632 (version "1.2.0")
6633 (source (origin
6634 (method url-fetch)
6635 (uri (cran-uri "pinfsc50" version))
6636 (sha256
6637 (base32
6638 "1547xyxmfb7zi8h9bsm6k67dcw4hpp129xzvmgwfw7r6p4af47zd"))))
6639 (build-system r-build-system)
6640 (home-page "https://cran.r-project.org/web/packages/pinfsc50/")
6641 (synopsis "Genomic data for the plant pathogen Phytophthora infestans")
6642 (description "This package contains genomic data for the plant pathogen
6643 Phytophthora infestans. It includes a variant file, a sequence file and an
6644 annotation file. This package is intended to be used as example data for
6645 packages that work with genomic data.")
6646 (license license:gpl2+)))
6647
6648 (define-public r-uuid
6649 (package
6650 (name "r-uuid")
6651 (version "1.1-0")
6652 (source
6653 (origin
6654 (method url-fetch)
6655 (uri (cran-uri "uuid" version))
6656 (sha256
6657 (base32
6658 "0bzlc2knmr338h4ykx8v8c2a1inizxafj8rh13kwii68gpp50nz7"))))
6659 (build-system r-build-system)
6660 (home-page "https://www.rforge.net/uuid")
6661 (synopsis "Tools for generating and handling of UUIDs")
6662 (description
6663 "This package provides tools for generating and handling of
6664 @dfn{Universally Unique Identifiers} (UUIDs).")
6665 (license license:expat)))
6666
6667 (define-public r-tinytex
6668 (package
6669 (name "r-tinytex")
6670 (version "0.39")
6671 (source
6672 (origin
6673 (method url-fetch)
6674 (uri (cran-uri "tinytex" version))
6675 (sha256
6676 (base32
6677 "1v95pjxdq0ma90jji5yqh8ihlcf35cmrqx9v0z649zh0q9vrnbpj"))))
6678 (build-system r-build-system)
6679 (propagated-inputs
6680 (list r-xfun))
6681 (home-page "https://github.com/yihui/tinytex")
6682 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
6683 (description
6684 "This package provides helper functions to install and maintain the LaTeX
6685 distribution named TinyTeX, a lightweight, cross-platform, portable, and
6686 easy-to-maintain version of TeX Live. This package also contains helper
6687 functions to compile LaTeX documents, and install missing LaTeX packages
6688 automatically.")
6689 (license license:expat)))
6690
6691 (define-public r-tinytest
6692 (package
6693 (name "r-tinytest")
6694 (version "1.3.1")
6695 (source
6696 (origin
6697 (method url-fetch)
6698 (uri (cran-uri "tinytest" version))
6699 (sha256
6700 (base32
6701 "1mq31f7bzcz5bkgzl9khm1i80axfzra7gcjqxd2yqb4wrw1m3x4s"))))
6702 (properties `((upstream-name . "tinytest")))
6703 (build-system r-build-system)
6704 (home-page "https://github.com/markvanderloo/tinytest")
6705 (synopsis "Lightweight unit testing framework")
6706 (description
6707 "This package provides a lightweight unit testing framework. Main
6708 features:
6709
6710 @enumerate
6711 @item install tests with the package;
6712 @item test results are treated as data that can be stored and manipulated;
6713 @item test files are R scripts interspersed with test commands, that can be
6714 programmed over;
6715 @item fully automated build-install-test sequence for packages;
6716 @item skip tests when not run locally (e.g. on CRAN);
6717 @item flexible and configurable output printing;
6718 @item compare computed output with output stored with the package;
6719 @item run tests in parallel;
6720 @item extensible by other packages;
6721 @item report side effects.
6722 @end enumerate
6723 ")
6724 (license license:gpl3)))
6725
6726 (define-public r-network
6727 (package
6728 (name "r-network")
6729 (version "1.17.2")
6730 (source
6731 (origin
6732 (method url-fetch)
6733 (uri (cran-uri "network" version))
6734 (sha256
6735 (base32
6736 "1xrhzbci7ls4h05skdlirxl49jsvmylrqivz2kd6i33wh2ca324m"))))
6737 (build-system r-build-system)
6738 (propagated-inputs
6739 (list r-magrittr r-statnet-common r-tibble))
6740 (home-page "https://statnet.org/")
6741 (synopsis "Classes for relational data")
6742 (description
6743 "This package provides tools to create and modify network objects. The
6744 @code{network} class can represent a range of relational data types, and
6745 supports arbitrary vertex/edge/graph attributes.")
6746 (license license:gpl2+)))
6747
6748 (define-public r-stabs
6749 (package
6750 (name "r-stabs")
6751 (version "0.6-4")
6752 (source
6753 (origin
6754 (method url-fetch)
6755 (uri (cran-uri "stabs" version))
6756 (sha256
6757 (base32
6758 "1nf1yg14cgxrs4np1yghpzw1nczaslfv3rvf3918wrlzg0vp6l7q"))))
6759 (build-system r-build-system)
6760 (native-inputs
6761 (list r-knitr))
6762 (home-page "https://github.com/hofnerb/stabs")
6763 (synopsis "Stability selection with error control")
6764 (description
6765 "This package provides resampling procedures to assess the stability of
6766 selected variables with additional finite sample error control for
6767 high-dimensional variable selection procedures such as Lasso or boosting.
6768 Both, standard stability selection (Meinshausen & Buhlmann, 2010) and
6769 complementary pairs stability selection with improved error bounds
6770 (Shah & Samworth, 2013) are implemented. The package can be combined with
6771 arbitrary user specified variable selection approaches.")
6772 (license license:gpl2)))
6773
6774 (define-public r-rle
6775 (package
6776 (name "r-rle")
6777 (version "0.9.2")
6778 (source
6779 (origin
6780 (method url-fetch)
6781 (uri (cran-uri "rle" version))
6782 (sha256
6783 (base32
6784 "0sagl0jggg40lihzy7pfq4593rfvc3b3f7g6ggi85s7n18qvwg40"))))
6785 (properties `((upstream-name . "rle")))
6786 (build-system r-build-system)
6787 (home-page "https://cran.r-project.org/web/packages/rle/")
6788 (synopsis "Common functions for run-length encoded vectors")
6789 (description
6790 "This package provides common @code{base} and @code{stats} methods for
6791 @code{rle} objects, aiming to make it possible to treat them transparently as
6792 vectors.")
6793 (license license:gpl3)))
6794
6795 (define-public r-statnet-common
6796 (package
6797 (name "r-statnet-common")
6798 (version "4.6.0")
6799 (source
6800 (origin
6801 (method url-fetch)
6802 (uri (cran-uri "statnet.common" version))
6803 (sha256
6804 (base32
6805 "07djgc6qbxahiy5v15lfayxbj4188lxsb8xcs7hnbm2hic953bfx"))))
6806 (properties
6807 `((upstream-name . "statnet.common")))
6808 (build-system r-build-system)
6809 (propagated-inputs
6810 (list r-coda))
6811 (home-page "https://statnet.org")
6812 (synopsis "R scripts and utilities used by the Statnet software")
6813 (description "This package provides non-statistical utilities used by the
6814 software developed by the Statnet Project.")
6815 (license license:gpl3)))
6816
6817 (define-public r-statcheck
6818 (package
6819 (name "r-statcheck")
6820 (version "1.3.0")
6821 (source
6822 (origin
6823 (method url-fetch)
6824 (uri (cran-uri "statcheck" version))
6825 (sha256
6826 (base32
6827 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
6828 (build-system r-build-system)
6829 (propagated-inputs
6830 (list r-ggplot2 r-plyr r-rmarkdown))
6831 (home-page "https://cran.r-project.org/web/packages/statcheck/")
6832 (synopsis "Extract statistics from articles and recompute p-values")
6833 (description "This package can automatically extract statistical
6834 null-hypothesis significant testing (NHST) results from articles and recompute
6835 the p-values based on the reported test statistic and degrees of freedom to
6836 detect possible inconsistencies.")
6837 (license license:gpl2)))
6838
6839 (define-public r-sna
6840 (package
6841 (name "r-sna")
6842 (version "2.6")
6843 (source
6844 (origin
6845 (method url-fetch)
6846 (uri (cran-uri "sna" version))
6847 (sha256
6848 (base32
6849 "0ai0v4538d30m4wks5s3lch1yfmx1ml0nnrz7ihs097lv586a09s"))))
6850 (build-system r-build-system)
6851 (propagated-inputs
6852 (list r-network r-statnet-common))
6853 (home-page "https://statnet.org")
6854 (synopsis "Tools for social network analysis")
6855 (description
6856 "This package provides a range of tools for social network analysis,
6857 including node and graph-level indices, structural distance and covariance
6858 methods, structural equivalence detection, network regression, random graph
6859 generation, and 2D/3D network visualization.")
6860 (license license:gpl2+)))
6861
6862 (define-public r-tfisher
6863 (package
6864 (name "r-tfisher")
6865 (version "0.2.0")
6866 (source
6867 (origin
6868 (method url-fetch)
6869 (uri (cran-uri "TFisher" version))
6870 (sha256
6871 (base32
6872 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
6873 (properties `((upstream-name . "TFisher")))
6874 (build-system r-build-system)
6875 (propagated-inputs
6876 (list r-matrix r-mvtnorm r-sn))
6877 (home-page "https://cran.r-project.org/web/packages/TFisher/")
6878 (synopsis "Optimal thresholding Fisher's p-value combination method")
6879 (description
6880 "This package provides the @dfn{cumulative distribution function} (CDF),
6881 quantile, and statistical power calculator for a collection of thresholding
6882 Fisher's p-value combination methods, including Fisher's p-value combination
6883 method, truncated product method and, in particular, soft-thresholding
6884 Fisher's p-value combination method which is proven to be optimal in some
6885 context of signal detection. The p-value calculator for the omnibus version
6886 of these tests are also included.")
6887 (license license:gpl2)))
6888
6889 (define-public r-ttr
6890 (package
6891 (name "r-ttr")
6892 (version "0.24.3")
6893 (source
6894 (origin
6895 (method url-fetch)
6896 (uri (cran-uri "TTR" version))
6897 (sha256
6898 (base32
6899 "11xsmbvmxq2j119j2z58bx1fkkb2xlhmzc35z5fbwr3nchrfz6jd"))))
6900 (properties `((upstream-name . "TTR")))
6901 (build-system r-build-system)
6902 (propagated-inputs
6903 (list r-curl r-xts r-zoo))
6904 (home-page "https://github.com/joshuaulrich/TTR")
6905 (synopsis "Technical trading rules")
6906 (description
6907 "This package provides functions and data to construct technical trading
6908 rules with R.")
6909 (license license:gpl2)))
6910
6911 (define-public r-leaflet-providers
6912 (package
6913 (name "r-leaflet-providers")
6914 (version "1.9.0")
6915 (source
6916 (origin
6917 (method url-fetch)
6918 (uri (cran-uri "leaflet.providers" version))
6919 (sha256
6920 (base32 "0yynrwv4xd5cdh49cwvfxm4ranarah9iiry2cd3b4fiihdfcg3wy"))))
6921 (properties `((upstream-name . "leaflet.providers")))
6922 (build-system r-build-system)
6923 (home-page "https://github.com/rstudio/leaflet.providers")
6924 (synopsis "Leaflet map tile providers")
6925 (description
6926 "This package contains third-party map tile provider information from
6927 Leaflet.js, to be used with the @code{leaflet} R package. Additionally,
6928 @code{leaflet.providers} enables users to retrieve up-to-date provider
6929 information between package updates.")
6930 (license license:bsd-2)))
6931
6932 ;; This package contains a lot of minified JavaScript with unclear provenance.
6933 ;; When upgrading please make sure that all minified JavaScript files are
6934 ;; removed in a snippet and that the replacement sources correspond to the
6935 ;; original minified scripts.
6936 (define-public r-leaflet
6937 (package
6938 (name "r-leaflet")
6939 (version "2.1.1")
6940 (source
6941 (origin
6942 (method url-fetch)
6943 (uri (cran-uri "leaflet" version))
6944 (sha256
6945 (base32 "0xsng9n08i1w7qj4hbi706m6d8jm9ixrnwq5xac2s3csfm1s1xij"))
6946 (snippet
6947 '(for-each
6948 delete-file
6949 (list "inst/htmlwidgets/lib/leaflet/leaflet.js"
6950 "inst/htmlwidgets/lib/leaflet-measure/leaflet-measure.min.js"
6951 "inst/htmlwidgets/lib/leaflet-omnivore/leaflet-omnivore.min.js"
6952 "inst/htmlwidgets/lib/jquery/jquery.min.js"
6953 "inst/htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.min.js"
6954 "inst/htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap.min.js"
6955 "inst/htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.min.js"
6956 "inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.js"
6957 "inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.freezable.js"
6958 "inst/htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport.js"
6959 "inst/legacy/www/leaflet.js")))))
6960 (properties `((upstream-name . "leaflet")))
6961 (build-system r-build-system)
6962 (arguments
6963 `(#:modules ((guix build utils)
6964 (guix build r-build-system)
6965 (srfi srfi-1))
6966 #:phases
6967 (modify-phases %standard-phases
6968 (add-after 'unpack 'process-javascript
6969 (lambda* (#:key inputs #:allow-other-keys)
6970 ;; The inst directory contains some minified JavaScript files.
6971 ;; Regenerate them from sources.
6972 (invoke "unzip" "-d" "/tmp" (assoc-ref inputs "js-leaflet"))
6973 (with-directory-excursion "inst/"
6974 (call-with-values
6975 (lambda ()
6976 (unzip2
6977 `(("/tmp/leaflet-src.js"
6978 "htmlwidgets/lib/leaflet/leaflet.js")
6979 (,(assoc-ref inputs "js-leaflet-measure")
6980 "htmlwidgets/lib/leaflet-measure/leaflet-measure.min.js")
6981 (,(assoc-ref inputs "js-leaflet-omnivore")
6982 "htmlwidgets/lib/leaflet-omnivore/leaflet-omnivore.min.js")
6983 (,(assoc-ref inputs "js-jquery")
6984 "htmlwidgets/lib/jquery/jquery.min.js")
6985 ("htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.js"
6986 "htmlwidgets/plugins/Leaflet-MiniMap/Control.MiniMap.min.js")
6987 (,(assoc-ref inputs "js-bootstrap3")
6988 "htmlwidgets/plugins/Leaflet.awesome-markers/bootstrap.min.js")
6989 ("htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.js"
6990 "htmlwidgets/plugins/Leaflet.awesome-markers/leaflet.awesome-markers.min.js")
6991 (,(string-append (assoc-ref inputs "js-leaflet-markercluster")
6992 "/dist/leaflet.markercluster-src.js")
6993 "htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.js")
6994 (,(assoc-ref inputs "js-leaflet-markercluster-freezable")
6995 "htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.freezable.js")
6996 (,(assoc-ref inputs "js-leaflet-markercluster-layersupport")
6997 "htmlwidgets/plugins/Leaflet.markercluster/leaflet.markercluster.layersupport.js")
6998 (,(assoc-ref inputs "js-proj4leaflet")
6999 "htmlwidgets/plugins/Proj4Leaflet/proj4.min.js")
7000 ("legacy/www/leaflet-src.js"
7001 "legacy/www/leaflet.js"))))
7002 (lambda (sources targets)
7003 (for-each (lambda (source target)
7004 (format #true "Processing ~a --> ~a~%"
7005 source target)
7006 (invoke "esbuild" source "--minify"
7007 (string-append "--outfile=" target)))
7008 sources targets)))))))))
7009 (native-inputs
7010 `(("esbuild" ,esbuild)
7011 ("unzip" ,unzip)
7012 ("js-bootstrap3"
7013 ,(origin
7014 (method url-fetch)
7015 (uri "https://raw.githubusercontent.com/twbs/bootstrap/v3.3.7/dist/js/bootstrap.js")
7016 (sha256
7017 (base32
7018 "1j1qjagwj0m3q322z9wxxnpkd8zbk6g3kl047dsbmqad6gmqvgha"))))
7019 ("js-jquery"
7020 ,(origin
7021 (method url-fetch)
7022 (uri "https://code.jquery.com/jquery-1.12.4.js")
7023 (sha256
7024 (base32
7025 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
7026 ("js-leaflet"
7027 ,(origin
7028 (method url-fetch)
7029 (uri "http://cdn.leafletjs.com/leaflet/v1.3.1/leaflet.zip")
7030 (sha256
7031 (base32
7032 "10phzd2vczy3zm1b64whp2nna69cf9hlj2bndc9yq47vf3ddqx8f"))))
7033 ("js-leaflet-omnivore"
7034 ,(origin
7035 (method url-fetch)
7036 (uri (string-append "https://api.tiles.mapbox.com/mapbox.js/plugins/"
7037 "leaflet-omnivore/v0.3.1/leaflet-omnivore.js"))
7038 (sha256
7039 (base32
7040 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
7041 ("js-leaflet-markercluster"
7042 ,(origin
7043 (method git-fetch)
7044 (uri (git-reference
7045 (url "https://github.com/Leaflet/Leaflet.markercluster.git")
7046 (commit "v1.1.0")))
7047 (file-name (git-file-name "js-leaflet-markercluster" "1.1.0"))
7048 (sha256
7049 (base32
7050 "0ds8c7picqjmc86bm5n6hm8k71fwsa2cpgib19sbdamzr9hm0rs1"))))
7051 ("js-leaflet-markercluster-freezable"
7052 ,(origin
7053 (method url-fetch)
7054 (uri (string-append
7055 "https://raw.githubusercontent.com/ghybs/Leaflet.MarkerCluster.Freezable/"
7056 "9db80a3fba7dff4aee940e05d3d4dceaa1fffcf9/src/freezable.js"))
7057 (file-name "leaflet-markercluster-freezable.js")
7058 (sha256
7059 (base32
7060 "1k6sn5n0z2x3an91vwvkzmqq4b8ppswgk5hi5qrr79klas1hbx1k"))))
7061 ("js-leaflet-markercluster-layersupport"
7062 ,(origin
7063 (method url-fetch)
7064 (uri (string-append
7065 "https://raw.githubusercontent.com/ghybs/Leaflet.MarkerCluster.LayerSupport/"
7066 "87f3848b92e0516d9c98f6d4cd175f7b8a4e3805/src/layersupport.js"))
7067 (file-name "leaflet-markercluster-layersupport.js")
7068 (sha256
7069 (base32
7070 "15qa21xif94y762c65yxxysxykz3mma6y6agw3nxpr3s7wbb75ff"))))
7071 ("js-leaflet-measure"
7072 ,(origin
7073 (method url-fetch)
7074 (uri "https://unpkg.com/leaflet-measure@1.5.2/dist/leaflet-measure.js")
7075 (file-name "js-leaflet-measure-1.5.2.js")
7076 (sha256
7077 (base32
7078 "0ggg3ffmm7pj9ry4gssrh0a17pnad3p6gwi0dg98y819pmpqa7y0"))))
7079 ("js-proj4leaflet"
7080 ,(origin
7081 (method url-fetch)
7082 (uri "https://raw.githubusercontent.com/kartena/Proj4Leaflet/1.0.2/lib/proj4.js")
7083 (file-name "js-proj4leaflet-1.0.2.js")
7084 (sha256
7085 (base32
7086 "0vyrbf6gv2lyh4c2bzp5349ivwvvg28gpn87y52a7jdb13rlkpab"))))))
7087 (propagated-inputs
7088 (list r-base64enc
7089 r-crosstalk
7090 r-htmltools
7091 r-htmlwidgets
7092 r-leaflet-providers
7093 r-magrittr
7094 r-markdown
7095 r-png
7096 r-raster
7097 r-rcolorbrewer
7098 r-scales
7099 r-sp
7100 r-viridis))
7101 (home-page "https://rstudio.github.io/leaflet/")
7102 (synopsis "Create interactive web maps with the JavaScript Leaflet library")
7103 (description
7104 "Create and customize interactive maps using the Leaflet JavaScript
7105 library and the @code{htmlwidgets} package. These maps can be used directly
7106 from the R console, from RStudio, in Shiny applications and R Markdown
7107 documents.")
7108 (license license:gpl3)))
7109
7110 (define-public r-leaps
7111 (package
7112 (name "r-leaps")
7113 (version "3.1")
7114 (source
7115 (origin
7116 (method url-fetch)
7117 (uri (cran-uri "leaps" version))
7118 (sha256
7119 (base32
7120 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
7121 (build-system r-build-system)
7122 (native-inputs (list gfortran))
7123 (home-page "https://cran.r-project.org/web/packages/leaps/")
7124 (synopsis "Regression subset selection")
7125 (description
7126 "This package provides tools for regression subset selection, including
7127 exhaustive search.")
7128 (license license:gpl2+)))
7129
7130 (define-public r-splus2r
7131 (package
7132 (name "r-splus2r")
7133 (version "1.3-3")
7134 (source
7135 (origin
7136 (method url-fetch)
7137 (uri (cran-uri "splus2R" version))
7138 (sha256
7139 (base32
7140 "035zd22zcpkh74rik9ws6g8al6vjz7jgrqs5si361bzb5n290p3x"))))
7141 (properties `((upstream-name . "splus2R")))
7142 (build-system r-build-system)
7143 (home-page "https://cran.r-project.org/web/packages/splus2R/")
7144 (synopsis "Supplemental S-PLUS functionality in R")
7145 (description
7146 "Currently there are many functions in S-PLUS that are missing in R. To
7147 facilitate the conversion of S-PLUS packages to R packages, this package
7148 provides some missing S-PLUS functionality in R.")
7149 (license license:gpl2)))
7150
7151 (define-public r-ifultools
7152 (package
7153 (name "r-ifultools")
7154 (version "2.0-23")
7155 (source
7156 (origin
7157 (method url-fetch)
7158 (uri (cran-uri "ifultools" version))
7159 (sha256
7160 (base32
7161 "16a7rbvlym3bnfm93ikr5kl0l86ppk0s41fva6idvcx765g3fqkk"))))
7162 (build-system r-build-system)
7163 (propagated-inputs
7164 (list r-mass r-splus2r))
7165 (home-page "https://cran.r-project.org/web/packages/ifultools/")
7166 (synopsis "Insightful research tools")
7167 (description "This package provides C code used by the wmtsa, fractal, and
7168 sapa R packages.")
7169 (license license:gpl2)))
7170
7171 (define-public r-sapa
7172 (package
7173 (name "r-sapa")
7174 (version "2.0-3")
7175 (source
7176 (origin
7177 (method url-fetch)
7178 (uri (cran-uri "sapa" version))
7179 (sha256
7180 (base32
7181 "0kj681rd4c2lvqr926lb6f4qwp281x5274dg6vbk8pf5y7s0qlpc"))))
7182 (build-system r-build-system)
7183 (propagated-inputs
7184 (list r-ifultools r-splus2r))
7185 (home-page "https://cran.r-project.org/web/packages/sapa/")
7186 (synopsis "Spectral analysis for physical applications")
7187 (description "This package provides software for the book Spectral
7188 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
7189 Cambridge University Press, 1993.")
7190 (license license:gpl2)))
7191
7192 (define-public r-aggregation
7193 (package
7194 (name "r-aggregation")
7195 (version "1.0.1")
7196 (source
7197 (origin
7198 (method url-fetch)
7199 (uri (cran-uri "aggregation" version))
7200 (sha256
7201 (base32
7202 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
7203 (build-system r-build-system)
7204 (home-page "https://cran.r-project.org/web/packages/aggregation/")
7205 (synopsis "Methods for p-value aggregation")
7206 (description
7207 "This package contains functionality for performing the following methods
7208 of p-value aggregation: Fisher's method, the Lancaster method (weighted
7209 Fisher's method), and Sidak correction.")
7210 (license license:gpl3)))
7211
7212 (define-public r-quantmod
7213 (package
7214 (name "r-quantmod")
7215 (version "0.4.20")
7216 (source
7217 (origin
7218 (method url-fetch)
7219 (uri (cran-uri "quantmod" version))
7220 (sha256
7221 (base32
7222 "154fqhw46kc7r08zsj5fsg97hg93phsli3z14xwmz22xb50xymzp"))))
7223 (build-system r-build-system)
7224 (propagated-inputs
7225 (list r-curl r-ttr r-xts r-zoo))
7226 (home-page "https://cran.r-project.org/web/packages/quantmod/")
7227 (synopsis "Quantitative financial modelling framework")
7228 (description "This package provides a quantitative financial modelling
7229 framework to allow users to specify, build, trade, and analyse quantitative
7230 financial trading strategies.")
7231 (license license:gpl3)))
7232
7233 (define-public r-tseries
7234 (package
7235 (name "r-tseries")
7236 (version "0.10-51")
7237 (source
7238 (origin
7239 (method url-fetch)
7240 (uri (cran-uri "tseries" version))
7241 (sha256
7242 (base32
7243 "0zr09ikaz96djcvnjbr8ah6waqzjy06f4yd4isshlwc391q20px5"))))
7244 (build-system r-build-system)
7245 (propagated-inputs
7246 (list r-quadprog r-quantmod r-zoo))
7247 (native-inputs
7248 (list gfortran))
7249 (home-page "https://cran.r-project.org/web/packages/tseries/")
7250 (synopsis "Time series analysis and computational finance")
7251 (description
7252 "This package provides functions relating to time series analysis and
7253 computational finance.")
7254 (license license:gpl2)))
7255
7256 (define-public r-wmtsa
7257 (package
7258 (name "r-wmtsa")
7259 (version "2.0-3")
7260 (source
7261 (origin
7262 (method url-fetch)
7263 (uri (cran-uri "wmtsa" version))
7264 (sha256
7265 (base32
7266 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
7267 (build-system r-build-system)
7268 (propagated-inputs
7269 (list r-ifultools r-mass r-splus2r))
7270 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
7271 (synopsis "Wavelet methods for time series analysis")
7272 (description
7273 "This package provides software to accompany the book \"Wavelet Methods
7274 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
7275 University Press, 2000.")
7276 (license license:gpl2)))
7277
7278 (define-public r-tsa
7279 (package
7280 (name "r-tsa")
7281 (version "1.3")
7282 (source
7283 (origin
7284 (method url-fetch)
7285 (uri (cran-uri "TSA" version))
7286 (sha256
7287 (base32
7288 "1bv5q609lhmrcxnjnvcj497fbjlv89zwa8q918hw4iki5nkvwwdb"))))
7289 (properties `((upstream-name . "TSA")))
7290 (build-system r-build-system)
7291 (propagated-inputs
7292 (list r-leaps r-locfit r-mgcv r-tseries))
7293 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
7294 (synopsis "Time series analysis")
7295 (description
7296 "This package contains R functions and datasets detailed in the book
7297 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
7298 Cryer and Kung-Sik Chan.")
7299 (license license:gpl2+)))
7300
7301 (define-public r-extradistr
7302 (package
7303 (name "r-extradistr")
7304 (version "1.9.1")
7305 (source
7306 (origin
7307 (method url-fetch)
7308 (uri (cran-uri "extraDistr" version))
7309 (sha256
7310 (base32
7311 "1gypnbvdzczl0mvznvy8r7hzsvc5gvdvi2mmzj21cqdw9n63944r"))))
7312 (properties `((upstream-name . "extraDistr")))
7313 (build-system r-build-system)
7314 (propagated-inputs
7315 (list r-rcpp))
7316 (home-page "https://github.com/twolodzko/extraDistr")
7317 (synopsis "Additional univariate and multivariate distributions")
7318 (description
7319 "This package implements density, distribution functions, quantile
7320 functions and random generation functions for a large number of univariate and
7321 multivariate distributions.")
7322 (license license:gpl2)))
7323
7324 (define-public r-fractal
7325 (package
7326 (name "r-fractal")
7327 (version "2.0-4")
7328 (source
7329 (origin
7330 (method url-fetch)
7331 (uri (cran-uri "fractal" version))
7332 (sha256
7333 (base32
7334 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
7335 (build-system r-build-system)
7336 (propagated-inputs
7337 (list r-ifultools
7338 r-mass
7339 r-sapa
7340 r-scatterplot3d
7341 r-splus2r
7342 r-wmtsa))
7343 (home-page "https://cran.r-project.org/web/packages/fractal/")
7344 (synopsis "Fractal time series modeling and analysis")
7345 (description
7346 "This package provides tools for stochastic fractal and deterministic
7347 chaotic time series analysis.")
7348 (license license:gpl2)))
7349
7350 (define-public r-urca
7351 (package
7352 (name "r-urca")
7353 (version "1.3-0")
7354 (source
7355 (origin
7356 (method url-fetch)
7357 (uri (cran-uri "urca" version))
7358 (sha256
7359 (base32
7360 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
7361 (build-system r-build-system)
7362 (propagated-inputs (list r-nlme))
7363 (native-inputs (list gfortran))
7364 (home-page "https://cran.r-project.org/web/packages/urca/")
7365 (synopsis "Unit root and cointegration tests for time series data")
7366 (description
7367 "This package provides unit root and cointegration tests encountered in
7368 applied econometric analysis.")
7369 (license license:gpl2+)))
7370
7371 (define-public r-cubature
7372 (package
7373 (name "r-cubature")
7374 (version "2.0.4.4")
7375 (source
7376 (origin
7377 (method url-fetch)
7378 (uri (cran-uri "cubature" version))
7379 (sha256
7380 (base32
7381 "0sfmcy5xpa40w3qn0jbg7b802wksl5k8glz9jpx77n159wn3nyq8"))))
7382 (build-system r-build-system)
7383 (propagated-inputs
7384 (list r-rcpp))
7385 (native-inputs
7386 (list r-knitr))
7387 (home-page "https://github.com/bnaras/cubature")
7388 (synopsis "Adaptive multivariate integration over hypercubes")
7389 (description
7390 "This package is an R wrapper around the cubature C library for adaptive
7391 multivariate integration over hypercubes. This version provides both
7392 @code{hcubature} and @code{pcubature} routines in addition to a vector
7393 interface.")
7394 ;; The included cubature C library is released under GPLv2+, but the
7395 ;; wrapper declares the license to be GPLv3+.
7396 (license (list license:gpl2+ license:gpl3+))))
7397
7398 (define-public r-trend
7399 (package
7400 (name "r-trend")
7401 (version "1.1.4")
7402 (source
7403 (origin
7404 (method url-fetch)
7405 (uri (cran-uri "trend" version))
7406 (sha256
7407 (base32
7408 "1mr5g5gaxiqj6x83ngcbwwh57vhrhcz0x9dh0rmvs9y2ivk29ccs"))))
7409 (build-system r-build-system)
7410 (propagated-inputs
7411 (list r-extradistr))
7412 (native-inputs
7413 (list gfortran))
7414 (home-page "https://cran.r-project.org/web/packages/trend/")
7415 (synopsis "Non-parametric trend tests and change-point detection")
7416 (description
7417 "The analysis of environmental data often requires the detection of
7418 trends and change-points. This package includes tests for trend
7419 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
7420 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
7421 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
7422 correlation trend test), change-point detection (Lanzante's test procedures,
7423 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
7424 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
7425 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
7426 sample Robust Rank-Order Distributional Test.")
7427 (license license:gpl3)))
7428
7429 (define-public r-expm
7430 (package
7431 (name "r-expm")
7432 (version "0.999-6")
7433 (source
7434 (origin
7435 (method url-fetch)
7436 (uri (cran-uri "expm" version))
7437 (sha256
7438 (base32
7439 "1p5dapwv8ycxaysgi6imnby04i4kh1c5a2czqa4wygz0s8pr2y9c"))))
7440 (build-system r-build-system)
7441 (propagated-inputs (list r-matrix))
7442 (native-inputs (list gfortran))
7443 (home-page "https://r-forge.r-project.org/projects/expm/")
7444 (synopsis "Tools for matrix exponentials and related quantities")
7445 (description
7446 "This package provides tools for the computation of the matrix
7447 exponential, logarithm, square root, and related quantities.")
7448 (license license:gpl2+)))
7449
7450 (define-public r-complexplus
7451 (package
7452 (name "r-complexplus")
7453 (version "2.1")
7454 (source
7455 (origin
7456 (method url-fetch)
7457 (uri (cran-uri "complexplus" version))
7458 (sha256
7459 (base32
7460 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
7461 (build-system r-build-system)
7462 (propagated-inputs
7463 (list r-expm r-matrix))
7464 (home-page "https://cran.r-project.org/web/packages/complexplus/")
7465 (synopsis "Functions of complex or real variables")
7466 (description
7467 "This package extends several functions to the complex domain, including
7468 the matrix exponential and logarithm, and the determinant.")
7469 (license license:gpl2)))
7470
7471 (define-public r-phontools
7472 (package
7473 (name "r-phontools")
7474 (version "0.2-2.1")
7475 (source
7476 (origin
7477 (method url-fetch)
7478 (uri (cran-uri "phonTools" version))
7479 (sha256
7480 (base32
7481 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
7482 (properties `((upstream-name . "phonTools")))
7483 (build-system r-build-system)
7484 (home-page "http://www.santiagobarreda.com/rscripts.html")
7485 (synopsis "Tools for phonetic and acoustic analyses")
7486 (description
7487 "This package contains tools for the organization, display, and analysis
7488 of the sorts of data frequently encountered in phonetics research and
7489 experimentation, including the easy creation of IPA vowel plots, and the
7490 creation and manipulation of WAVE audio files.")
7491 (license license:bsd-2)))
7492
7493 (define-public r-np
7494 (package
7495 (name "r-np")
7496 (version "0.60-11")
7497 (source
7498 (origin
7499 (method url-fetch)
7500 (uri (cran-uri "np" version))
7501 (sha256
7502 (base32
7503 "1a9kzn37cddwfdki5zjmzanxp75pccdjnsvqfrh84hhcsy51pcx3"))))
7504 (build-system r-build-system)
7505 (propagated-inputs
7506 (list r-boot r-cubature r-quadprog r-quantreg))
7507 (home-page "https://github.com/JeffreyRacine/R-Package-np")
7508 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
7509 (description "This package provides non-parametric (and semi-parametric)
7510 kernel methods that seamlessly handle a mix of continuous, unordered, and
7511 ordered factor data types.")
7512 ;; Any version of the GPL.
7513 (license license:gpl3+)))
7514
7515 (define-public r-powerplus
7516 (package
7517 (name "r-powerplus")
7518 (version "3.1")
7519 (source
7520 (origin
7521 (method url-fetch)
7522 (uri (cran-uri "powerplus" version))
7523 (sha256
7524 (base32
7525 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
7526 (build-system r-build-system)
7527 (propagated-inputs
7528 (list r-complexplus r-expm r-mass r-matrix r-phontools))
7529 (home-page "https://cran.r-project.org/web/packages/powerplus/")
7530 (synopsis "Exponentiation operations")
7531 (description
7532 "This package provides tools for the computation of matrix and scalar
7533 exponentiation.")
7534 (license license:gpl2)))
7535
7536 (define-public r-egg
7537 (package
7538 (name "r-egg")
7539 (version "0.4.5")
7540 (source
7541 (origin
7542 (method url-fetch)
7543 (uri (cran-uri "egg" version))
7544 (sha256
7545 (base32
7546 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
7547 (properties `((upstream-name . "egg")))
7548 (build-system r-build-system)
7549 (propagated-inputs
7550 (list r-ggplot2 r-gridextra r-gtable))
7551 (home-page "https://cran.r-project.org/web/packages/egg")
7552 (synopsis "Extensions for ggplot2")
7553 (description
7554 "This package provides miscellaneous functions to help customize ggplot2
7555 objects. High-level functions are provided to post-process ggplot2 layouts
7556 and allow alignment between plot panels, as well as setting panel sizes to
7557 fixed values. Other functions include a custom @code{geom}, and helper
7558 functions to enforce symmetric scales or add tags to facetted plots.")
7559 (license license:gpl3)))
7560
7561 (define-public r-heatmap3
7562 (package
7563 (name "r-heatmap3")
7564 (version "1.1.9")
7565 (source
7566 (origin
7567 (method url-fetch)
7568 (uri (cran-uri "heatmap3" version))
7569 (sha256
7570 (base32
7571 "0sfvizmmwfk1bjhn6zfx5a4qqfgj1ldg8x90b65crqibgfa36k2r"))))
7572 (build-system r-build-system)
7573 (propagated-inputs
7574 (list r-fastcluster))
7575 (native-inputs
7576 (list r-knitr))
7577 (home-page "https://cran.r-project.org/web/packages/heatmap3/")
7578 (synopsis "Improved heatmap package")
7579 (description
7580 "This package provides an improved heatmap package. It is completely
7581 compatible with the original R function @code{heatmap}, and provides more
7582 powerful and convenient features.")
7583 (license license:gpl2+)))
7584
7585 (define-public r-heatmaply
7586 (package
7587 (name "r-heatmaply")
7588 (version "1.3.0")
7589 (source
7590 (origin
7591 (method url-fetch)
7592 (uri (cran-uri "heatmaply" version))
7593 (sha256
7594 (base32
7595 "1w8yyzb68laxd4zxycvgmpqj5wnyidjgv1vbzbxndp9p92f2cp8a"))))
7596 (build-system r-build-system)
7597 (propagated-inputs
7598 (list r-assertthat
7599 r-colorspace
7600 r-dendextend
7601 r-egg
7602 r-ggplot2
7603 r-htmlwidgets
7604 r-magrittr
7605 r-plotly
7606 r-rcolorbrewer
7607 r-reshape2
7608 r-scales
7609 r-seriation
7610 r-viridis
7611 r-webshot))
7612 (native-inputs
7613 (list r-knitr))
7614 (home-page "https://cran.r-project.org/package=heatmaply")
7615 (synopsis "Interactive cluster heat maps using plotly")
7616 (description
7617 "This package enables you to create interactive cluster heatmaps that can
7618 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
7619 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
7620 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
7621 a popular graphical method for visualizing high-dimensional data, in which a
7622 table of numbers is encoded as a grid of colored cells. The rows and columns
7623 of the matrix are ordered to highlight patterns and are often accompanied by
7624 dendrograms.")
7625 ;; Either version of the license.
7626 (license (list license:gpl2 license:gpl3))))
7627
7628 (define-public r-h5
7629 (package
7630 (name "r-h5")
7631 (version "0.9.9")
7632 (source
7633 (origin
7634 (method url-fetch)
7635 (uri (cran-uri "h5" version))
7636 (sha256
7637 (base32
7638 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
7639 (build-system r-build-system)
7640 (inputs
7641 (list zlib hdf5))
7642 (native-inputs
7643 (list which))
7644 (propagated-inputs
7645 (list r-rcpp))
7646 (home-page "https://github.com/mannau/h5")
7647 (synopsis "Interface to the HDF5 Library")
7648 (description
7649 "This package provides an S4 interface to the HDF5 library supporting
7650 fast storage and retrieval of R-objects like vectors, matrices and arrays to
7651 binary files in a language independent format. The HDF5 format can therefore
7652 be used as an alternative to R's save/load mechanism. Since h5 is able to
7653 access only subsets of stored data it can also handle data sets which do not
7654 fit into memory.")
7655 (license license:bsd-2)))
7656
7657 (define-public r-cgdsr
7658 (package
7659 (name "r-cgdsr")
7660 (version "1.3.0")
7661 (source
7662 (origin
7663 (method url-fetch)
7664 (uri (cran-uri "cgdsr" version))
7665 (sha256
7666 (base32
7667 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
7668 (build-system r-build-system)
7669 (propagated-inputs
7670 (list r-httr r-r-methodss3 r-r-oo))
7671 (home-page "https://github.com/cBioPortal/cgdsr")
7672 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
7673 (description
7674 "This package provides a basic set of R functions for querying the Cancer
7675 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
7676 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
7677 (license license:lgpl3)))
7678
7679 (define-public r-import
7680 (package
7681 (name "r-import")
7682 (version "1.3.0")
7683 (source
7684 (origin
7685 (method url-fetch)
7686 (uri (cran-uri "import" version))
7687 (sha256
7688 (base32
7689 "19g4jnfg9pkvvsncw62yc15xlb97hfbdqxivpjd9jqi36i6mdjrg"))))
7690 (build-system r-build-system)
7691 (native-inputs
7692 (list r-knitr))
7693 (home-page "https://github.com/smbache/import")
7694 (synopsis "Import mechanism for R")
7695 (description
7696 "This is an alternative mechanism for importing objects from packages.
7697 The syntax allows for importing multiple objects from a package with a single
7698 command in an expressive way. The import package bridges some of the gap
7699 between using @code{library} (or @code{require}) and direct (single-object)
7700 imports. Furthermore the imported objects are not placed in the current
7701 environment. It is also possible to import objects from stand-alone @code{.R}
7702 files.")
7703 (license license:expat)))
7704
7705 (define-public r-shinyace
7706 (package
7707 (name "r-shinyace")
7708 (version "0.4.2")
7709 (source
7710 (origin
7711 (method url-fetch)
7712 (uri (cran-uri "shinyAce" version))
7713 (sha256
7714 (base32
7715 "12mqvdh6rxsr61pc3pzla95r5f4l7xagjs2rcdr7c2lbqyxpx6aa"))))
7716 (properties `((upstream-name . "shinyAce")))
7717 (build-system r-build-system)
7718 (propagated-inputs
7719 (list r-shiny r-jsonlite))
7720 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
7721 (synopsis "Ace editor bindings for Shiny")
7722 (description
7723 "This package provides Ace editor bindings to enable a rich text editing
7724 environment within Shiny.")
7725 (license license:expat)))
7726
7727 (define-public r-rafalib
7728 (package
7729 (name "r-rafalib")
7730 (version "1.0.0")
7731 (source
7732 (origin
7733 (method url-fetch)
7734 (uri (cran-uri "rafalib" version))
7735 (sha256
7736 (base32 "1dmxjl66bfdgrybhwyaa8d4i460liqcdw8b29a6w7shgksh29m0k"))))
7737 (properties `((upstream-name . "rafalib")))
7738 (build-system r-build-system)
7739 (propagated-inputs (list r-rcolorbrewer))
7740 (home-page "https://cran.r-project.org/package=rafalib")
7741 (synopsis "Convenience functions for routine data exploration")
7742 (description
7743 "This package provides a series of shortcuts for routine tasks to
7744 facilitate data exploration.")
7745 (license license:artistic2.0)))
7746
7747 (define-public r-randomizr
7748 (package
7749 (name "r-randomizr")
7750 (version "0.22.0")
7751 (source
7752 (origin
7753 (method url-fetch)
7754 (uri (cran-uri "randomizr" version))
7755 (sha256
7756 (base32
7757 "1grm0h3xkb0pdbbv0gd531g1kn6njp0gcy5fh153rrmajxgd8hhw"))))
7758 (properties `((upstream-name . "randomizr")))
7759 (build-system r-build-system)
7760 (native-inputs
7761 (list r-knitr))
7762 (home-page "https://declaredesign.org/r/randomizr/")
7763 (synopsis "Tools for common forms of random assignment and sampling")
7764 (description
7765 "This package provides tools for generating random assignments for common
7766 experimental designs and random samples for common sampling designs.")
7767 (license license:expat)))
7768
7769 (define-public r-base64url
7770 (package
7771 (name "r-base64url")
7772 (version "1.4")
7773 (source
7774 (origin
7775 (method url-fetch)
7776 (uri (cran-uri "base64url" version))
7777 (sha256
7778 (base32
7779 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
7780 (build-system r-build-system)
7781 (propagated-inputs
7782 (list r-backports))
7783 (home-page "https://github.com/mllg/base64url")
7784 (synopsis "Fast and URL-safe base64 encoder and decoder")
7785 (description
7786 "This package provides a URL-safe base64 encoder and decoder. In
7787 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
7788 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
7789 encoder does not fill the string with trailing @code{=}. The resulting
7790 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
7791 and thus are safe to use in URLs or for file names. The package also comes
7792 with a simple base32 encoder/decoder suited for case insensitive file
7793 systems.")
7794 (license license:gpl3)))
7795
7796 (define-public r-radiant-data
7797 (package
7798 (name "r-radiant-data")
7799 (version "1.4.2")
7800 (source
7801 (origin
7802 (method url-fetch)
7803 (uri (cran-uri "radiant.data" version))
7804 (sha256
7805 (base32
7806 "0c5c99q13pwv6k0b07x3r2bxmh0h2w15h02xb1pincgs61qwi15k"))
7807 (modules '((guix build utils)))
7808 (snippet
7809 '(begin
7810 ;; Delete files that are under CC-NC-SA.
7811 (delete-file-recursively "inst/app/tools/help")
7812 #t))))
7813 (properties `((upstream-name . "radiant.data")))
7814 (build-system r-build-system)
7815 (propagated-inputs
7816 (list r-base64enc
7817 r-broom
7818 r-car
7819 r-curl
7820 r-dplyr
7821 r-dt
7822 r-glue
7823 r-ggplot2
7824 r-import
7825 r-jsonlite
7826 r-knitr
7827 r-lubridate
7828 r-magrittr
7829 r-markdown
7830 r-mass
7831 r-patchwork
7832 r-plotly
7833 r-psych
7834 r-randomizr
7835 r-readr
7836 r-readxl
7837 r-rlang
7838 r-rmarkdown
7839 r-rstudioapi
7840 r-scales
7841 r-shiny
7842 r-shinyfiles
7843 r-shinyace
7844 r-stringi
7845 r-tibble
7846 r-tidyr
7847 r-writexl))
7848 (home-page "https://github.com/radiant-rstats/radiant.data")
7849 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
7850 (description
7851 "The Radiant Data menu includes interfaces for loading, saving, viewing,
7852 visualizing, summarizing, transforming, and combining data. It also contains
7853 functionality to generate reproducible reports of the analyses conducted in
7854 the application.")
7855 (license license:agpl3)))
7856
7857 (define-public r-algdesign
7858 (package
7859 (name "r-algdesign")
7860 (version "1.2.1")
7861 (source
7862 (origin
7863 (method url-fetch)
7864 (uri (cran-uri "AlgDesign" version))
7865 (sha256
7866 (base32 "01cx63wqr6yvgl5ml1lj6gh9p1sn42b6qcnsppcw7mvba9n652ar"))))
7867 (properties `((upstream-name . "AlgDesign")))
7868 (build-system r-build-system)
7869 (home-page "https://github.com/jvbraun/AlgDesign")
7870 (synopsis "Algorithmic experimental design")
7871 (description
7872 "This package provides tools to calculate exact and approximate theory
7873 experimental designs for D, A, and I criteria. Very large designs may be
7874 created. Experimental designs may be blocked or blocked designs created from
7875 a candidate list, using several criteria. The blocking can be done when whole
7876 and within plot factors interact.")
7877 (license license:gpl2+)))
7878
7879 (define-public r-alluvial
7880 (package
7881 (name "r-alluvial")
7882 (version "0.1-2")
7883 (source
7884 (origin
7885 (method url-fetch)
7886 (uri (cran-uri "alluvial" version))
7887 (sha256
7888 (base32 "039frwrsxq1lb97s7vf2vbyyadimkigs628ymym06fxka53drdkp"))))
7889 (properties `((upstream-name . "alluvial")))
7890 (build-system r-build-system)
7891 (native-inputs (list r-knitr))
7892 (home-page "https://github.com/mbojan/alluvial")
7893 (synopsis "Create parallel sets plots (Alluvial Diagrams)")
7894 (description
7895 "This package creates alluvial diagrams (also known as parallel sets
7896 plots) for multivariate and time series-like data.")
7897 (license license:expat)))
7898
7899 (define-public r-signal
7900 (package
7901 (name "r-signal")
7902 (version "0.7-7")
7903 (source
7904 (origin
7905 (method url-fetch)
7906 (uri (cran-uri "signal" version))
7907 (sha256
7908 (base32
7909 "0qaf39vfmhn3d0bdjqd805ayfkaj48dkmf5dqd47bpk7dp21b837"))))
7910 (build-system r-build-system)
7911 (propagated-inputs (list r-mass))
7912 (native-inputs (list gfortran))
7913 (home-page "https://cran.r-project.org/web/packages/signal/")
7914 (synopsis "Signal processing")
7915 (description
7916 "This package provides a set of signal processing functions originally
7917 written for Matlab and GNU Octave. It includes filter generation utilities,
7918 filtering functions, resampling routines, and visualization of filter models.
7919 It also includes interpolation functions.")
7920 (license license:gpl2)))
7921
7922 (define-public r-gsubfn
7923 (package
7924 (name "r-gsubfn")
7925 (version "0.7")
7926 (source
7927 (origin
7928 (method url-fetch)
7929 (uri (cran-uri "gsubfn" version))
7930 (sha256
7931 (base32
7932 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
7933 (build-system r-build-system)
7934 (propagated-inputs (list r-proto))
7935 (home-page "https://code.google.com/archive/p/gsubfn/")
7936 (synopsis "Utilities for strings and function arguments")
7937 (description
7938 "This package provides @code{gsubfn} which is like @code{gsub} but can
7939 take a replacement function or certain other objects instead of the
7940 replacement string. Matches and back references are input to the replacement
7941 function and replaced by the function output. @code{gsubfn} can be used to
7942 split strings based on content rather than delimiters and for quasi-perl-style
7943 string interpolation. The package also has facilities for translating
7944 formulas to functions and allowing such formulas in function calls instead of
7945 functions.")
7946 (license license:gpl2+)))
7947
7948 (define-public r-sqldf
7949 (package
7950 (name "r-sqldf")
7951 (version "0.4-11")
7952 (source
7953 (origin
7954 (method url-fetch)
7955 (uri (cran-uri "sqldf" version))
7956 (sha256
7957 (base32
7958 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
7959 (build-system r-build-system)
7960 (propagated-inputs
7961 (list r-chron r-dbi r-gsubfn r-proto r-rsqlite))
7962 (home-page "https://github.com/ggrothendieck/sqldf")
7963 (synopsis "Manipulate R data frames using SQL")
7964 (description
7965 "The @code{sqldf} function is typically passed a single argument which is
7966 an SQL select statement where the table names are ordinary R data frame names.
7967 @code{sqldf} transparently sets up a database, imports the data frames into
7968 that database, performs the SQL statement and returns the result using a
7969 heuristic to determine which class to assign to each column of the returned
7970 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
7971 used to read filtered files into R even if the original files are larger than
7972 R itself can handle.")
7973 (license license:gpl2)))
7974
7975 (define-public r-abind
7976 (package
7977 (name "r-abind")
7978 (version "1.4-5")
7979 (source
7980 (origin
7981 (method url-fetch)
7982 (uri (cran-uri "abind" version))
7983 (sha256
7984 (base32
7985 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
7986 (build-system r-build-system)
7987 (home-page "https://cran.r-project.org/web/packages/abind/")
7988 (synopsis "Combine multidimensional arrays")
7989 (description
7990 "This package provides tools to combine multidimensional arrays into a
7991 single array. This is a generalization of @code{cbind} and @code{rbind}. It
7992 works with vectors, matrices, and higher-dimensional arrays. It also provides
7993 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
7994 extracting and replacing data in arrays.")
7995 (license license:lgpl2.0+)))
7996
7997 (define-public r-prroc
7998 (package
7999 (name "r-prroc")
8000 (version "1.3.1")
8001 (source
8002 (origin
8003 (method url-fetch)
8004 (uri (cran-uri "PRROC" version))
8005 (sha256
8006 (base32
8007 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
8008 (properties `((upstream-name . "PRROC")))
8009 (build-system r-build-system)
8010 (home-page "https://cran.r-project.org/web/packages/PRROC/")
8011 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
8012 (description
8013 "This package computes the areas under the @dfn{precision-recall} (PR)
8014 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
8015 contrast to other implementations, the interpolation between points of the PR
8016 curve is done by a non-linear piecewise function. In addition to the areas
8017 under the curves, the curves themselves can also be computed and plotted by a
8018 specific S3-method.")
8019 (license license:gpl3)))
8020
8021 (define-public r-vim
8022 (package
8023 (name "r-vim")
8024 (version "6.1.1")
8025 (source
8026 (origin
8027 (method url-fetch)
8028 (uri (cran-uri "VIM" version))
8029 (sha256
8030 (base32
8031 "0fbpm6y3hhiw8srnbc38k19b859jcqzsh78ib8yvj86gck5av0bm"))))
8032 (properties `((upstream-name . "VIM")))
8033 (build-system r-build-system)
8034 (propagated-inputs
8035 (list r-car
8036 r-colorspace
8037 r-data-table
8038 r-e1071
8039 r-laeken
8040 r-magrittr
8041 r-mass
8042 r-nnet
8043 r-ranger
8044 r-rcpp
8045 r-robustbase
8046 r-sp
8047 r-vcd))
8048 (native-inputs
8049 (list r-knitr))
8050 (home-page "https://github.com/alexkowa/VIM")
8051 (synopsis "Visualization and imputation of missing values")
8052 (description
8053 "This package provides tools for the visualization of missing and/or
8054 imputed values are introduced, which can be used for exploring the data and
8055 the structure of the missing and/or imputed values. Depending on this
8056 structure of the missing values, the corresponding methods may help to
8057 identify the mechanism generating the missing values and explore the
8058 data including missing values. In addition, the quality of imputation can be
8059 visually explored using various univariate, bivariate, multiple and
8060 multivariate plot methods.")
8061 (license license:gpl2+)))
8062
8063 (define-public r-fnn
8064 (package
8065 (name "r-fnn")
8066 (version "1.1.3.1")
8067 (source
8068 (origin
8069 (method url-fetch)
8070 (uri (cran-uri "FNN" version))
8071 (sha256
8072 (base32
8073 "0nmynpiy3d2dnd5ngjf4m79jy02byhk43gj0xny9a6j8243f5c2j"))))
8074 (properties `((upstream-name . "FNN")))
8075 (build-system r-build-system)
8076 (home-page "https://cran.r-project.org/web/packages/FNN")
8077 (synopsis "Fast nearest neighbor search algorithms and applications")
8078 (description
8079 "This package provides cover-tree and kd-tree fast k-nearest neighbor
8080 search algorithms. Related applications including KNN classification,
8081 regression and information measures are implemented.")
8082 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
8083 ;; later can be used.
8084 (license license:gpl2+)))
8085
8086 (define-public r-smoother
8087 (package
8088 (name "r-smoother")
8089 (version "1.1")
8090 (source
8091 (origin
8092 (method url-fetch)
8093 (uri (cran-uri "smoother" version))
8094 (sha256
8095 (base32
8096 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
8097 (build-system r-build-system)
8098 (propagated-inputs
8099 (list r-ttr))
8100 (home-page "https://cran.r-project.org/web/packages/smoother")
8101 (synopsis "Functions relating to the smoothing of numerical data")
8102 (description
8103 "This package provides a collection of methods for smoothing numerical
8104 data, commencing with a port of the Matlab gaussian window smoothing function.
8105 In addition, several functions typically used in smoothing of financial data
8106 are included.")
8107 (license license:gpl2)))
8108
8109 (define-public r-riverplot
8110 (package
8111 (name "r-riverplot")
8112 (version "0.10")
8113 (source
8114 (origin
8115 (method url-fetch)
8116 (uri (cran-uri "riverplot" version))
8117 (sha256
8118 (base32
8119 "04ap1dsa7fx03l73jhv1ql3adaaaz2100qawdplxa9xmrllgcgbj"))))
8120 (build-system r-build-system)
8121 (propagated-inputs
8122 (list r-rcolorbrewer))
8123 (native-inputs
8124 (list r-knitr))
8125 (home-page "https://logfc.wordpress.com")
8126 (synopsis "Sankey or ribbon plots")
8127 (description
8128 "Sankey plots are a type of diagram that is convenient to illustrate how
8129 flow of information, resources etc. separates and joins, much like observing
8130 how rivers split and merge. For example, they can be used to compare
8131 different clusterings. This package provides an implementation of Sankey
8132 plots for R.")
8133 (license license:gpl2+)))
8134
8135 (define-public r-dyn
8136 (package
8137 (name "r-dyn")
8138 (version "0.2-9.6")
8139 (source
8140 (origin
8141 (method url-fetch)
8142 (uri (cran-uri "dyn" version))
8143 (sha256
8144 (base32
8145 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
8146 (build-system r-build-system)
8147 (propagated-inputs
8148 (list r-zoo))
8149 (home-page "https://cran.r-project.org/web/packages/dyn")
8150 (synopsis "Time series regression")
8151 (description
8152 "This package provides the dyn class interfaces @code{ts}, @code{irts},
8153 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
8154 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
8155 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
8156 @code{randomForest::randomForest()} and other regression functions, allowing
8157 those functions to be used with time series including specifications that may
8158 contain lags, diffs and missing values.")
8159 ;; Any GPL version.
8160 (license license:gpl2+)))
8161
8162 (define-public r-dynutils
8163 (package
8164 (name "r-dynutils")
8165 (version "1.0.9")
8166 (source
8167 (origin
8168 (method url-fetch)
8169 (uri (cran-uri "dynutils" version))
8170 (sha256
8171 (base32 "1pcj4igaw1g898xb42kcpzfmqy80xai5ki5bpnkf8hg738wm00qz"))))
8172 (properties `((upstream-name . "dynutils")))
8173 (build-system r-build-system)
8174 (propagated-inputs
8175 (list r-assertthat
8176 r-crayon
8177 r-desc
8178 r-dplyr
8179 r-magrittr
8180 r-matrix
8181 r-proxyc
8182 r-purrr
8183 r-rcpp
8184 r-remotes
8185 r-stringr
8186 r-tibble))
8187 (native-inputs (list r-knitr))
8188 (home-page "https://github.com/dynverse/dynutils")
8189 (synopsis "Common functionality for the dynverse packages")
8190 (description
8191 "This package provides common functionality for the
8192 @url{https://dynverse.org,dynverse} packages. dynverse is created to support
8193 the development, execution, and benchmarking of trajectory inference
8194 methods.")
8195 (license license:expat)))
8196
8197 (define-public r-catdap
8198 (package
8199 (name "r-catdap")
8200 (version "1.3.5")
8201 (source
8202 (origin
8203 (method url-fetch)
8204 (uri (cran-uri "catdap" version))
8205 (sha256
8206 (base32
8207 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
8208 (build-system r-build-system)
8209 (native-inputs
8210 (list gfortran))
8211 (home-page "https://cran.r-project.org/web/packages/catdap/")
8212 (synopsis "Tools for categorical data analysis")
8213 (description
8214 "This package provides functions for analyzing multivariate data.
8215 Dependencies of the distribution of the specified variable (response
8216 variable) to other variables (explanatory variables) are derived and
8217 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
8218 (license license:gpl2+)))
8219
8220 (define-public r-arules
8221 (package
8222 (name "r-arules")
8223 (version "1.7-3")
8224 (source
8225 (origin
8226 (method url-fetch)
8227 (uri (cran-uri "arules" version))
8228 (sha256
8229 (base32
8230 "05g6ik4z87g83nlicmb380331f84sqchvv1vch49zb7rq6v8gw6r"))))
8231 (build-system r-build-system)
8232 (propagated-inputs
8233 (list r-generics r-matrix))
8234 (home-page "https://github.com/mhahsler/arules")
8235 (synopsis "Mining association rules and frequent itemsets")
8236 (description
8237 "This package provides an infrastructure for representing, manipulating
8238 and analyzing transaction data and patterns (frequent itemsets and association rules).
8239 It also provides C implementations of the association mining algorithms Apriori
8240 and Eclat.")
8241 (license license:gpl3)))
8242
8243 (define-public r-parsedate
8244 (package
8245 (name "r-parsedate")
8246 (version "1.3.0")
8247 (source
8248 (origin
8249 (method url-fetch)
8250 (uri (cran-uri "parsedate" version))
8251 (sha256
8252 (base32
8253 "1c2cpsvma3fkx6zp191bpfvf5rmpsr13g8rzqk6ycyb0n7b9k4qy"))))
8254 (build-system r-build-system)
8255 (home-page "https://github.com/gaborcsardi/parsedate")
8256 (synopsis
8257 "Recognize and parse dates in various formats")
8258 (description
8259 "This package provides three functions for dealing with dates:
8260 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
8261 time formats, @code{parse_date} parses dates in unspecified formats,
8262 and @code{format_iso_8601} formats a date in ISO 8601 format.")
8263 (license license:gpl2)))
8264
8265 (define-public r-abc-data
8266 (package
8267 (name "r-abc-data")
8268 (version "1.0")
8269 (source
8270 (origin
8271 (method url-fetch)
8272 (uri (cran-uri "abc.data" version))
8273 (sha256
8274 (base32
8275 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
8276 (properties `((upstream-name . "abc.data")))
8277 (build-system r-build-system)
8278 (home-page "https://cran.r-project.org/web/packages/abc.data/")
8279 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
8280 (description
8281 "This package contains data which are used by functions of the abc
8282 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
8283 algorithms for performing parameter estimation, model selection, and
8284 goodness-of-fit.")
8285 (license license:gpl3+)))
8286
8287 (define-public r-abc
8288 (package
8289 (name "r-abc")
8290 (version "2.2.1")
8291 (source
8292 (origin
8293 (method url-fetch)
8294 (uri (cran-uri "abc" version))
8295 (sha256
8296 (base32
8297 "16753lyzk2dfwgdjfyanwacqw3bvrwby52inq4709804labs6lnv"))))
8298 (build-system r-build-system)
8299 (propagated-inputs
8300 (list r-abc-data r-locfit r-mass r-nnet r-quantreg))
8301 (home-page "https://cran.r-project.org/web/packages/abc/")
8302 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
8303 (description
8304 "This package implements several @dfn{Approximate Bayesian
8305 Computation} (ABC) algorithms for performing parameter estimation, model
8306 selection, and goodness-of-fit. Cross-validation tools are also available for
8307 measuring the accuracy of ABC estimates, and to calculate the
8308 misclassification probabilities of different models.")
8309 (license license:gpl3+)))
8310
8311 (define-public r-zip
8312 (package
8313 (name "r-zip")
8314 (version "2.2.0")
8315 (source
8316 (origin
8317 (method url-fetch)
8318 (uri (cran-uri "zip" version))
8319 (sha256
8320 (base32
8321 "1n5ryjdj3i16b4mdp29wapgaklz3yzas5k8ffx7q6fa0jry9i5cz"))))
8322 (build-system r-build-system)
8323 (home-page "https://github.com/gaborcsardi/zip")
8324 (synopsis "Cross-platform Zip compression")
8325 (description
8326 "This package provides a cross-platform Zip compression library for R.
8327 It is a replacement for the @code{zip} function, that does not require any
8328 additional external tools on any platform.")
8329 (license license:cc0)))
8330
8331 (define-public r-openxlsx
8332 (package
8333 (name "r-openxlsx")
8334 (version "4.2.5")
8335 (source
8336 (origin
8337 (method url-fetch)
8338 (uri (cran-uri "openxlsx" version))
8339 (sha256
8340 (base32
8341 "0695b265g7jwiqk5c3vmmfkvagx82bkpwhvqzhqaqmmn34l6vl35"))))
8342 (build-system r-build-system)
8343 (propagated-inputs
8344 (list r-rcpp r-stringi r-zip))
8345 (native-inputs
8346 (list r-knitr))
8347 (home-page "https://github.com/awalker89/openxlsx")
8348 (synopsis "Read, write and edit XLSX files")
8349 (description
8350 "This package simplifies the creation of Excel @code{.xlsx} files by
8351 providing a high level interface to writing, styling and editing worksheets.
8352 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
8353 and @code{XLConnect} packages with the added benefit of removing the
8354 dependency on Java.")
8355 (license license:gpl3)))
8356
8357 (define-public r-rio
8358 (package
8359 (name "r-rio")
8360 (version "0.5.29")
8361 (source
8362 (origin
8363 (method url-fetch)
8364 (uri (cran-uri "rio" version))
8365 (sha256
8366 (base32
8367 "04jlrhyl0791yxwcpp1s8p1hhkljnijlc5iaxpk56h41w63k39lz"))))
8368 (build-system r-build-system)
8369 (propagated-inputs
8370 (list r-curl
8371 r-data-table
8372 r-foreign
8373 r-haven
8374 r-openxlsx
8375 r-readxl
8376 r-tibble))
8377 (native-inputs
8378 (list r-knitr))
8379 (home-page "https://github.com/leeper/rio")
8380 (synopsis "Swiss-army knife for data I/O")
8381 (description
8382 "This package provides streamlined data import and export infrastructure
8383 by making assumptions that the user is probably willing to make: @code{import}
8384 and @code{export} determine the data structure from the file extension,
8385 reasonable defaults are used for data import and export (e.g.,
8386 @code{stringsAsFactors=FALSE}), web-based import is natively
8387 supported (including from SSL/HTTPS), compressed files can be read directly
8388 without explicit decompression, and fast import packages are used where
8389 appropriate. An additional convenience function, @code{convert}, provides a
8390 simple method for converting between file types.")
8391 (license license:gpl2)))
8392
8393 (define-public r-maptools
8394 (package
8395 (name "r-maptools")
8396 (version "1.1-4")
8397 (source
8398 (origin
8399 (method url-fetch)
8400 (uri (cran-uri "maptools" version))
8401 (sha256
8402 (base32
8403 "1jgx8iiirj8qhrmh19mkisa35jcql7352dmc7lvwi5vxg3wjbvpk"))))
8404 (build-system r-build-system)
8405 (propagated-inputs
8406 (list r-foreign r-lattice r-sp))
8407 (home-page "https://r-forge.r-project.org/projects/maptools/")
8408 (synopsis "Tools for reading and handling spatial objects")
8409 (description
8410 "This package provides a set of tools for manipulating and reading
8411 geographic data, in particular ESRI Shapefiles. It includes binary access to
8412 GSHHG shoreline files. The package also provides interface wrappers for
8413 exchanging spatial objects with other R packages.")
8414 ;; The C source files from shapelib are released under the Expat license.
8415 ;; The R code is released under GPL version 2 or later.
8416 (license (list license:gpl2+
8417 license:expat))))
8418
8419 (define-public r-later
8420 (package
8421 (name "r-later")
8422 (version "1.3.0")
8423 (source
8424 (origin
8425 (method url-fetch)
8426 (uri (cran-uri "later" version))
8427 (sha256
8428 (base32
8429 "0acqg29hcm2iq1418b54np7zb5pnr3xzrwc3ijv2pz9wra10ix88"))))
8430 (build-system r-build-system)
8431 (propagated-inputs
8432 (list r-rcpp r-rlang))
8433 (native-inputs
8434 (list r-knitr))
8435 (home-page "https://github.com/r-lib/later")
8436 (synopsis "Utilities for delaying function execution")
8437 (description
8438 "This package provides tools to execute arbitrary R or C functions some
8439 time after the current time, after the R execution stack has emptied.")
8440 (license license:gpl2+)))
8441
8442 (define-public r-promises
8443 (package
8444 (name "r-promises")
8445 (version "1.2.0.1")
8446 (source
8447 (origin
8448 (method url-fetch)
8449 (uri (cran-uri "promises" version))
8450 (sha256
8451 (base32
8452 "1dy4cbqw17awh4q8m7cy3anaj0n9iynabfzflb1g94cyj0bq4fld"))))
8453 (build-system r-build-system)
8454 (propagated-inputs
8455 (list r-later r-magrittr r-r6 r-rcpp r-rlang))
8456 (native-inputs
8457 (list r-knitr))
8458 (home-page "https://rstudio.github.io/promises")
8459 (synopsis "Abstractions for promise-based asynchronous programming")
8460 (description
8461 "This package provides fundamental abstractions for doing asynchronous
8462 programming in R using promises. Asynchronous programming is useful for
8463 allowing a single R process to orchestrate multiple tasks in the background
8464 while also attending to something else. Semantics are similar to JavaScript
8465 promises, but with a syntax that is idiomatic R.")
8466 (license license:expat)))
8467
8468 (define-public r-dosnow
8469 (package
8470 (name "r-dosnow")
8471 (version "1.0.20")
8472 (source
8473 (origin
8474 (method url-fetch)
8475 (uri (cran-uri "doSNOW" version))
8476 (sha256
8477 (base32
8478 "1f5v0k2w0b2478p6iqa3hn2lwd1x3rzc348n57nd38ka2vnsnz4i"))))
8479 (properties `((upstream-name . "doSNOW")))
8480 (build-system r-build-system)
8481 (propagated-inputs
8482 (list r-foreach r-iterators r-snow))
8483 (home-page "https://cran.r-project.org/web/packages/doSNOW")
8484 (synopsis "Foreach parallel adaptor for the snow package")
8485 (description
8486 "This package provides a parallel backend for the @code{%dopar%} function
8487 using the @code{snow} package.")
8488 (license license:gpl2)))
8489
8490 (define-public r-fstcore
8491 (package
8492 (name "r-fstcore")
8493 (version "0.9.12")
8494 (source
8495 (origin
8496 (method url-fetch)
8497 (uri (cran-uri "fstcore" version))
8498 (sha256
8499 (base32 "1a5m68n2dqhi3r8wf5jwg4vjvl550c7wypcf5j0xmkvl836yg1lg"))))
8500 (properties `((upstream-name . "fstcore")))
8501 (build-system r-build-system)
8502 (propagated-inputs (list r-rcpp))
8503 (inputs (list zlib))
8504 (native-inputs (list pkg-config))
8505 (home-page "https://www.fstpackage.org/fstcore/")
8506 (synopsis "R bindings to the fstlib library")
8507 (description
8508 "The fstlib library provides multithreaded serialization of compressed
8509 data frames using the fst format. The fst format allows for random access of
8510 stored data and compression with the LZ4 and ZSTD compressors.")
8511 (license license:mpl2.0)))
8512
8513 (define-public r-fst
8514 (package
8515 (name "r-fst")
8516 (version "0.9.8")
8517 (source
8518 (origin
8519 (method url-fetch)
8520 (uri (cran-uri "fst" version))
8521 (sha256
8522 (base32
8523 "0r96inwrr960m7wmc80603bw2vvvwab225bh9dq3lalwhy4yiis4"))))
8524 (properties `((upstream-name . "fst")))
8525 (build-system r-build-system)
8526 (propagated-inputs (list r-fstcore r-rcpp))
8527 (home-page "http://www.fstpackage.org")
8528 (synopsis "Fast serialization of data frames")
8529 (description
8530 "The fst package for R provides a fast, easy and flexible way to
8531 serialize data frames. With access speeds of multiple GB/s, fst is
8532 specifically designed to unlock the potential of high speed solid state disks.
8533 Data frames stored in the fst format have full random access, both in column
8534 and rows. The fst format allows for random access of stored data and
8535 compression with the LZ4 and ZSTD compressors.")
8536 (license license:agpl3)))
8537
8538 (define-public r-snowfall
8539 (package
8540 (name "r-snowfall")
8541 (version "1.84-6.1")
8542 (source (origin
8543 (method url-fetch)
8544 (uri (cran-uri "snowfall" version))
8545 (sha256
8546 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
8547 (build-system r-build-system)
8548 (propagated-inputs
8549 (list r-snow))
8550 (home-page "https://cran.r-project.org/web/packages/snowfall/")
8551 (synopsis "Easier cluster computing")
8552 (description "This package is a usability wrapper around snow for easier
8553 development of parallel R programs. This package offers e.g. extended error
8554 checks, and additional functions. All functions work in sequential mode, too,
8555 if no cluster is present or wished. The package is also designed as connector
8556 to the cluster management tool @code{sfCluster}, but can also used without
8557 it.")
8558 (license license:gpl2+)))
8559
8560 (define-public r-rgexf
8561 (package
8562 (name "r-rgexf")
8563 (version "0.16.2")
8564 (source
8565 (origin
8566 (method url-fetch)
8567 (uri (cran-uri "rgexf" version))
8568 (sha256
8569 (base32
8570 "00c2zka1n3k7p1l0mlchr063s6x58p9r3fb64d4wgl4rvsq55q3f"))
8571 ;; Delete minified JavaScript files
8572 (snippet
8573 '(for-each delete-file
8574 '("inst/gexf-js/js/jquery-2.0.2.min.js"
8575 "inst/gexf-js/js/jquery-ui-1.10.3.custom.min.js"
8576 "inst/gexf-js/js/jquery.mousewheel.min.js")))))
8577 (properties `((upstream-name . "rgexf")))
8578 (build-system r-build-system)
8579 (arguments
8580 `(#:modules ((guix build utils)
8581 (guix build r-build-system)
8582 (srfi srfi-1)
8583 (ice-9 popen))
8584 #:phases
8585 (modify-phases %standard-phases
8586 (add-after 'unpack 'process-javascript
8587 (lambda* (#:key inputs #:allow-other-keys)
8588 (invoke "unzip" "-d" "/tmp" (assoc-ref inputs "js-jquery-ui"))
8589 (with-directory-excursion "inst/gexf-js/js/"
8590 (call-with-values
8591 (lambda ()
8592 (unzip2
8593 `((,(assoc-ref inputs "js-jquery")
8594 "jquery-2.0.2.min.js")
8595 ("/tmp/jquery-ui-1.10.3/ui/jquery-ui.js"
8596 "jquery-ui-1.10.3.custom.min.js")
8597 (,(assoc-ref inputs "js-jquery-mousewheel")
8598 "jquery.mousewheel.min.js"))))
8599 (lambda (sources targets)
8600 (for-each (lambda (source target)
8601 (format #true "Processing ~a --> ~a~%"
8602 source target)
8603 (invoke "esbuild" source "--minify"
8604 (string-append "--outfile=" target)))
8605 sources targets)))))))))
8606 (propagated-inputs
8607 (list r-igraph r-servr r-xml))
8608 (native-inputs
8609 `(("r-knitr" ,r-knitr)
8610 ("esbuild" ,esbuild)
8611 ("unzip" ,unzip)
8612 ("js-jquery"
8613 ,(origin
8614 (method url-fetch)
8615 (uri "https://code.jquery.com/jquery-2.0.2.js")
8616 (sha256
8617 (base32
8618 "0v818bxpw48gdk8i95qqqij80r9jcgisi2r4ac6xnxca20h0gvfj"))))
8619 ("js-jquery-ui"
8620 ,(origin
8621 (method url-fetch)
8622 (uri "https://jqueryui.com/resources/download/jquery-ui-1.10.3.zip")
8623 (sha256
8624 (base32
8625 "00xpfy0l69nj2yan4s8k65ldsrlfsjkmyw2dwcg93dc8mv454vxx"))))
8626 ("js-jquery-mousewheel"
8627 ,(origin
8628 (method url-fetch)
8629 (uri "https://raw.githubusercontent.com/jquery/jquery-mousewheel/\
8630 3.0.6/jquery.mousewheel.js")
8631 (sha256
8632 (base32
8633 "19lk5xy2s47bx8hsa7j6bg012f8yw6d770g230bcnm559kf4nc6v"))))))
8634 (home-page "https://gvegayon.github.io/rgexf")
8635 (synopsis "Build, import and export GEXF graph files")
8636 (description
8637 "Create, read and write GEXF (Graph Exchange XML Format) graph
8638 files (used in Gephi and others). It allows the user to easily build/read
8639 graph files including attributes, GEXF visual attributes (such as color, size,
8640 and position), network dynamics (for both edges and nodes) and edge weighting.
8641 Users can build/handle graphs element-by-element or massively through
8642 data-frames, visualize the graph on a web browser through gexf-js (a
8643 JavaScript library) and interact with the igraph package.")
8644 (license license:expat)))
8645
8646 (define-public r-data-tree
8647 (package
8648 (name "r-data-tree")
8649 (version "1.0.0")
8650 (source
8651 (origin
8652 (method url-fetch)
8653 (uri (cran-uri "data.tree" version))
8654 (sha256
8655 (base32
8656 "0pizmx2312zsym4m42b97q2184bg3hibvbdrblcga05xln84qrs0"))))
8657 (properties `((upstream-name . "data.tree")))
8658 (build-system r-build-system)
8659 (propagated-inputs
8660 (list r-r6 r-stringi))
8661 (native-inputs
8662 (list r-knitr))
8663 (home-page "https://github.com/gluc/data.tree")
8664 (synopsis "General purpose hierarchical data structure")
8665 (description
8666 "Create tree structures from hierarchical data, and traverse the tree in
8667 various orders. Aggregate, cumulate, print, plot, convert to and from
8668 data.frame and more. This is useful for decision trees, machine learning,
8669 finance, conversion from and to JSON, and many other applications.")
8670 (license license:gpl2+)))
8671
8672 (define-public r-dtplyr
8673 (package
8674 (name "r-dtplyr")
8675 (version "1.2.1")
8676 (source
8677 (origin
8678 (method url-fetch)
8679 (uri (cran-uri "dtplyr" version))
8680 (sha256
8681 (base32
8682 "1wyhhn16mvdj55k2xsh7vy489l7xk4mkz7pjrw16z87awk6yjh16"))))
8683 (properties `((upstream-name . "dtplyr")))
8684 (build-system r-build-system)
8685 (propagated-inputs
8686 (list r-crayon
8687 r-data-table
8688 r-dplyr
8689 r-ellipsis
8690 r-glue
8691 r-lifecycle
8692 r-rlang
8693 r-tibble
8694 r-tidyselect
8695 r-vctrs))
8696 (native-inputs
8697 (list r-knitr))
8698 (home-page "https://github.com/tidyverse/dtplyr")
8699 (synopsis "Data Table back-end for dplyr")
8700 (description
8701 "This package provides a @code{data.table} backend for @code{dplyr}. The
8702 goal of @code{dtplyr} is to allow you to write @code{dplyr} code that is
8703 automatically translated to the equivalent, but usually much faster,
8704 @code{data.table} code.")
8705 (license license:expat)))
8706
8707 (define-public r-collapsibletree
8708 (package
8709 (name "r-collapsibletree")
8710 (version "0.1.7")
8711 (source
8712 (origin
8713 (method url-fetch)
8714 (uri (cran-uri "collapsibleTree" version))
8715 (sha256
8716 (base32
8717 "0b65pbp1wnpsrayqi630ds4r98jvcvynnlp6wxdqrnnr9nzw5343"))
8718 (snippet
8719 '(begin
8720 ;; Delete minified JavaScript file
8721 (delete-file "inst/htmlwidgets/lib/d3-4.10.2/d3.min.js")
8722 #true))))
8723 (properties
8724 `((upstream-name . "collapsibleTree")))
8725 (build-system r-build-system)
8726 (arguments
8727 `(#:phases
8728 (modify-phases %standard-phases
8729 (add-after 'unpack 'process-javascript
8730 (lambda* (#:key inputs #:allow-other-keys)
8731 (with-directory-excursion "inst/htmlwidgets/lib/d3-4.10.2/"
8732 (let ((source (assoc-ref inputs "d3.v4.js"))
8733 (target "d3.min.js"))
8734 (format #t "Processing ~a --> ~a~%"
8735 source target)
8736 (invoke "esbuild" source "--minify"
8737 (string-append "--outfile=" target)))))))))
8738 (propagated-inputs
8739 (list r-data-tree r-htmlwidgets))
8740 (native-inputs
8741 `(("esbuild" ,esbuild)
8742 ("d3.v4.js"
8743 ,(origin
8744 (method url-fetch)
8745 (uri "https://d3js.org/d3.v4.js")
8746 (sha256
8747 (base32
8748 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
8749 (home-page "https://github.com/AdeelK93/collapsibleTree")
8750 (synopsis "Interactive collapsible tree diagrams using D3.js")
8751 (description
8752 "This is a package for interactive Reingold-Tilford tree diagrams created
8753 using D3.js, where every node can be expanded and collapsed by clicking on it.
8754 Tooltips and color gradients can be mapped to nodes using a numeric column in
8755 the source data frame.")
8756 (license license:gpl3+)))
8757
8758 (define-public r-rappdirs
8759 (package
8760 (name "r-rappdirs")
8761 (version "0.3.3")
8762 (source
8763 (origin
8764 (method url-fetch)
8765 (uri (cran-uri "rappdirs" version))
8766 (sha256
8767 (base32
8768 "1161i3jgjvzjv4p8qbz9r976fnggkcrw3mlj4yd1h2svnijrz5a9"))))
8769 (build-system r-build-system)
8770 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
8771 (synopsis "Determine where to save data, caches, and logs")
8772 (description
8773 "This package provides an easy way to determine which directories on the
8774 user's computer should be used to save data, caches and logs. It is a port of
8775 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
8776 (license license:expat)))
8777
8778 (define-public r-rastervis
8779 (package
8780 (name "r-rastervis")
8781 (version "0.51.2")
8782 (source
8783 (origin
8784 (method url-fetch)
8785 (uri (cran-uri "rasterVis" version))
8786 (sha256
8787 (base32
8788 "0kgg6cm7xjqya2d46w0i1i1wjpkb8f99lyqy7rgwa7l9xmwzj5n1"))))
8789 (properties `((upstream-name . "rasterVis")))
8790 (build-system r-build-system)
8791 (propagated-inputs
8792 (list r-hexbin
8793 r-lattice
8794 r-latticeextra
8795 r-raster
8796 r-rcolorbrewer
8797 r-sp
8798 r-terra
8799 r-viridislite
8800 r-zoo))
8801 (home-page "https://oscarperpinan.github.io/rastervis/")
8802 (synopsis "Visualization methods for raster data")
8803 (description
8804 "This package provides methods for enhanced visualization and interaction
8805 with raster data. It implements visualization methods for quantitative data
8806 and categorical data, both for univariate and multivariate rasters. It also
8807 provides methods to display spatiotemporal rasters, and vector fields.")
8808 (license license:gpl3)))
8809
8810 (define-public r-rentrez
8811 (package
8812 (name "r-rentrez")
8813 (version "1.2.3")
8814 (source
8815 (origin
8816 (method url-fetch)
8817 (uri (cran-uri "rentrez" version))
8818 (sha256
8819 (base32
8820 "0x1g2f6hvkqqlb39z8m5qxhcvsizddic5i7rpqw0wy77xfbna9gv"))))
8821 (properties `((upstream-name . "rentrez")))
8822 (build-system r-build-system)
8823 (propagated-inputs
8824 (list r-httr r-jsonlite r-xml))
8825 (native-inputs
8826 (list r-knitr))
8827 (home-page "https://docs.ropensci.org/rentrez/")
8828 (synopsis "Entrez in R")
8829 (description
8830 "This package provides an R interface to the NCBI's EUtils API,
8831 allowing users to search databases like GenBank PubMed, process the results of
8832 those searches and pull data into their R sessions.")
8833 (license license:expat)))
8834
8835 (define-public r-renv
8836 (package
8837 (name "r-renv")
8838 (version "0.15.5")
8839 (source
8840 (origin
8841 (method url-fetch)
8842 (uri (cran-uri "renv" version))
8843 (sha256
8844 (base32
8845 "0bjq3ms5dg155clya62m462m93g90sxfxm7b4cqhqbx8vakskwdl"))))
8846 (properties `((upstream-name . "renv")))
8847 (build-system r-build-system)
8848 (native-inputs
8849 (list r-knitr))
8850 (home-page "https://rstudio.github.io/renv")
8851 (synopsis "Project environments")
8852 (description
8853 "This package provides a dependency management toolkit for R. Using
8854 renv, you can create and manage project-local R libraries, save the state of
8855 these libraries to a lockfile, and later restore your library as required.
8856 Together, these tools can help make your projects more isolated, portable, and
8857 reproducible.")
8858 (license license:expat)))
8859
8860 (define-public r-learnr
8861 (package
8862 (name "r-learnr")
8863 (version "0.10.1")
8864 (source
8865 (origin
8866 (method url-fetch)
8867 (uri (cran-uri "learnr" version))
8868 (sha256
8869 (base32
8870 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
8871 (build-system r-build-system)
8872 (propagated-inputs
8873 (list r-checkmate
8874 r-ellipsis
8875 r-evaluate
8876 r-htmltools
8877 r-htmlwidgets
8878 r-jsonlite
8879 r-knitr
8880 r-markdown
8881 r-rappdirs
8882 r-renv
8883 r-rmarkdown
8884 r-rprojroot
8885 r-shiny
8886 r-withr))
8887 (home-page "https://rstudio.github.io/learnr/")
8888 (synopsis "Interactive tutorials for R")
8889 (description
8890 "This package provides tools to create interactive tutorials using R
8891 Markdown. Use a combination of narrative, figures, videos, exercises, and
8892 quizzes to create self-paced tutorials for learning about R and R packages.")
8893 (license license:asl2.0)))
8894
8895 (define-public r-analytics
8896 (package
8897 (name "r-analytics")
8898 (version "3.0")
8899 (source
8900 (origin
8901 (method url-fetch)
8902 (uri (cran-uri "analytics" version))
8903 (sha256
8904 (base32
8905 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
8906 (build-system r-build-system)
8907 (propagated-inputs
8908 (list r-car
8909 r-cluster
8910 r-fractal
8911 r-lmtest
8912 r-mass
8913 r-np
8914 r-powerplus
8915 r-robust
8916 r-trend
8917 r-tsa
8918 r-urca
8919 r-vim))
8920 (home-page "https://cran.r-project.org/web/packages/analytics/")
8921 (synopsis "Collection of data analysis tools")
8922 (description
8923 "This package is a collection of data analysis tools. It includes tools
8924 for regression outlier detection in a fitted linear model, stationary
8925 bootstrap using a truncated geometric distribution, a comprehensive test for
8926 weak stationarity, column means by group, weighted biplots, and a heuristic to
8927 obtain a better initial configuration in non-metric MDS.")
8928 (license license:gpl2)))
8929
8930 (define-public r-here
8931 (package
8932 (name "r-here")
8933 (version "1.0.1")
8934 (source
8935 (origin
8936 (method url-fetch)
8937 (uri (cran-uri "here" version))
8938 (sha256
8939 (base32 "0srlr8h8qmr0wrmp7gs4g2ry5dni2hx8n947bik3s3a26f091v88"))))
8940 (properties `((upstream-name . "here")))
8941 (build-system r-build-system)
8942 (propagated-inputs (list r-rprojroot))
8943 (native-inputs (list r-knitr))
8944 (home-page "https://here.r-lib.org/")
8945 (synopsis "Simpler way to find files")
8946 (description
8947 "This package lets you construct paths to your project's files. Use the
8948 @code{here} function as a drop-in replacement for @code{file.path}, it will
8949 always locate the files relative to your project root.")
8950 (license license:expat)))
8951
8952 (define-public r-reticulate
8953 (package
8954 (name "r-reticulate")
8955 (version "1.25")
8956 (source
8957 (origin
8958 (method url-fetch)
8959 (uri (cran-uri "reticulate" version))
8960 (sha256
8961 (base32
8962 "0b1szzsqyc8wcfpkn5517bb1ds064vs2hky71my3p74kfngay991"))))
8963 (build-system r-build-system)
8964 (inputs (list python))
8965 (propagated-inputs
8966 (list r-here
8967 r-jsonlite
8968 r-matrix
8969 r-png
8970 r-rappdirs
8971 r-rcpp
8972 r-rcpptoml
8973 r-withr))
8974 (native-inputs
8975 (list r-knitr))
8976 (home-page "https://github.com/rstudio/reticulate")
8977 (synopsis "R interface to Python")
8978 (description
8979 "This package provides an interface from R to Python modules, classes,
8980 and functions. When calling into Python, R data types are automatically
8981 converted to their equivalent Python types. When values are returned from
8982 Python to R they are converted back to R types.")
8983 (license license:asl2.0)))
8984
8985 (define-public r-bibtex
8986 (package
8987 (name "r-bibtex")
8988 (version "0.4.2.3")
8989 (source
8990 (origin
8991 (method url-fetch)
8992 (uri (cran-uri "bibtex" version))
8993 (sha256
8994 (base32
8995 "0vdwx6808r73pk15263f33bkqbfmb08d8jkmr4d7h4ml414ikbbv"))))
8996 (build-system r-build-system)
8997 (propagated-inputs (list r-stringr))
8998 (home-page "https://github.com/romainfrancois/bibtex")
8999 (synopsis "Bibtex parser")
9000 (description "This package provides a utility for R to parse a bibtex
9001 file.")
9002 (license license:gpl2+)))
9003
9004 (define-public r-billboarder
9005 (package
9006 (name "r-billboarder")
9007 (version "0.3.1")
9008 (source
9009 (origin
9010 (method url-fetch)
9011 (uri (cran-uri "billboarder" version))
9012 (sha256
9013 (base32 "189ngvg84rcwhrivxskmjv3srhadvzr4p1v8pf11axyv2qn01b0x"))
9014 (snippet
9015 '(delete-file "inst/htmlwidgets/lib/billboard/billboard.pkgd.min.js"))))
9016 (properties `((upstream-name . "billboarder")))
9017 (build-system r-build-system)
9018 (arguments
9019 `(#:phases
9020 (modify-phases %standard-phases
9021 (add-after 'unpack 'process-javascript
9022 (lambda* (#:key inputs #:allow-other-keys)
9023 (with-directory-excursion "inst/htmlwidgets/lib/billboard/"
9024 (let ((source (assoc-ref inputs "js-billboard"))
9025 (target "billboard.pkgd.min.js"))
9026 (format #true "Processing ~a --> ~a~%"
9027 source target)
9028 (invoke "esbuild" source "--minify"
9029 (string-append "--outfile=" target)))))))))
9030 (propagated-inputs
9031 (list r-ggplot2
9032 r-htmltools
9033 r-htmlwidgets
9034 r-jsonlite
9035 r-magrittr
9036 r-rlang
9037 r-scales
9038 r-shiny))
9039 (native-inputs
9040 `(("r-knitr" ,r-knitr)
9041 ("esbuild" ,esbuild)
9042 ;; It is not ideal to use this concatenated (but not minified)
9043 ;; JavaScript file, as the original source is written in TypeScript.
9044 ;; However, this can still be considered source code as it is readable
9045 ;; and can be modified.
9046 ("js-billboard"
9047 ,(origin
9048 (method url-fetch)
9049 (uri "https://unpkg.com/billboard.js@3.2.0/dist/billboard.js")
9050 (sha256
9051 (base32
9052 "1kx5rqmn87pgal2cwmcij2rrnwa0fgcsw6y99m4i0l2sdm0qffv2"))))))
9053 (home-page "https://github.com/dreamRs/billboarder")
9054 (synopsis "Create interactive charts with the JavaScript Billboard library")
9055 (description
9056 "This package provides an @code{htmlwidgets} interface to billboard.js,
9057 a re-usable easy interface JavaScript chart library, based on D3 v4+. Chart
9058 types include line charts, scatterplots, bar/lollipop charts,
9059 histogram/density plots, pie/donut charts and gauge charts. All charts are
9060 interactive, and a proxy method is implemented to smoothly update a chart
9061 without rendering it again in shiny apps.")
9062 (license license:expat)))
9063
9064 (define-public r-ggseqlogo
9065 (package
9066 (name "r-ggseqlogo")
9067 (version "0.1")
9068 (source
9069 (origin
9070 (method url-fetch)
9071 (uri (cran-uri "ggseqlogo" version))
9072 (sha256
9073 (base32
9074 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
9075 (build-system r-build-system)
9076 (propagated-inputs (list r-ggplot2))
9077 (home-page "https://github.com/omarwagih/ggseqlogo")
9078 (synopsis "ggplot2 extension for drawing genetic sequence logos")
9079 (description
9080 "The range of functions provided by this package makes it possible to
9081 draw highly versatile genomic sequence logos. Features include, but are not
9082 limited to, modifying colour schemes and fonts used to draw the logo,
9083 generating multiple logo plots, and aiding the visualisation with annotations.
9084 Sequence logos can easily be combined with other ggplot2 plots.")
9085 ;; Unspecified version of the LGPL.
9086 (license license:lgpl3+)))
9087
9088 (define-public r-ggsci
9089 (package
9090 (name "r-ggsci")
9091 (version "2.9")
9092 (source
9093 (origin
9094 (method url-fetch)
9095 (uri (cran-uri "ggsci" version))
9096 (sha256
9097 (base32
9098 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
9099 (build-system r-build-system)
9100 (propagated-inputs
9101 (list r-ggplot2 r-scales))
9102 (home-page "https://nanx.me/ggsci/")
9103 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
9104 (description
9105 "This package provides a collection of ggplot2 color palettes inspired by
9106 plots in scientific journals, data visualization libraries, science fiction
9107 movies, and TV shows.")
9108 (license license:gpl3)))
9109
9110 (define-public r-ggsignif
9111 (package
9112 (name "r-ggsignif")
9113 (version "0.6.3")
9114 (source
9115 (origin
9116 (method url-fetch)
9117 (uri (cran-uri "ggsignif" version))
9118 (sha256
9119 (base32
9120 "1ad774c7s7y4i00xd89lfigr9aybl94q98ch598k3rchanr4b1fa"))))
9121 (build-system r-build-system)
9122 (native-inputs
9123 (list r-knitr))
9124 (propagated-inputs
9125 (list r-ggplot2))
9126 (home-page "https://github.com/const-ae/ggsignif")
9127 (synopsis "Significance brackets for ggplot2")
9128 (description
9129 "Enrich your ggplots with group-wise comparisons. This package provides
9130 an easy way to indicate if two groups are significantly different. Commonly
9131 this is shown by a bracket on top connecting the groups of interest which
9132 itself is annotated with the level of significance. The package provides a
9133 single layer that takes the groups for comparison and the test as arguments
9134 and adds the annotation to the plot.")
9135 (license license:gpl3)))
9136
9137 (define-public r-rstatix
9138 (package
9139 (name "r-rstatix")
9140 (version "0.7.0")
9141 (source
9142 (origin
9143 (method url-fetch)
9144 (uri (cran-uri "rstatix" version))
9145 (sha256
9146 (base32
9147 "0330y8iziffqg8j9j5h9zv4qcdyf8ybhmzxrr9fzq9nc6bf1gbm5"))))
9148 (properties `((upstream-name . "rstatix")))
9149 (build-system r-build-system)
9150 (propagated-inputs
9151 (list r-broom
9152 r-car
9153 r-corrplot
9154 r-dplyr
9155 r-generics
9156 r-magrittr
9157 r-purrr
9158 r-rlang
9159 r-tibble
9160 r-tidyr
9161 r-tidyselect))
9162 (home-page "https://rpkgs.datanovia.com/rstatix/")
9163 (synopsis "Pipe-friendly framework for basic statistical tests")
9164 (description
9165 "This package provides a simple and intuitive pipe-friendly framework,
9166 coherent with the @code{tidyverse} design philosophy, for performing basic
9167 statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and
9168 correlation analyses. The output of each test is automatically transformed
9169 into a tidy data frame to facilitate visualization. Additional functions are
9170 available for reshaping, reordering, manipulating and visualizing correlation
9171 matrix.")
9172 (license license:gpl2)))
9173
9174 (define-public r-ggpubr
9175 (package
9176 (name "r-ggpubr")
9177 (version "0.4.0")
9178 (source
9179 (origin
9180 (method url-fetch)
9181 (uri (cran-uri "ggpubr" version))
9182 (sha256
9183 (base32
9184 "0x86lmghr25k8w90yrp360dn42dhp5cjvjpdiv2s2gxfn701xcmb"))))
9185 (build-system r-build-system)
9186 (propagated-inputs
9187 (list r-cowplot
9188 r-dplyr
9189 r-ggplot2
9190 r-ggrepel
9191 r-ggsci
9192 r-ggsignif
9193 r-glue
9194 r-gridextra
9195 r-magrittr
9196 r-polynom
9197 r-purrr
9198 r-rlang
9199 r-scales
9200 r-rstatix
9201 r-tibble
9202 r-tidyr))
9203 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
9204 (synopsis "ggplot2-based publication-ready plots")
9205 (description
9206 "The ggplot2 package is an excellent and flexible package for elegant
9207 data visualization in R. However the default generated plots require some
9208 formatting before we can send them for publication. The ggpubr package
9209 provides some easy-to-use functions for creating and customizing ggplot2-based
9210 publication-ready plots.")
9211 (license license:gpl2)))
9212
9213 (define-public r-ellipse
9214 (package
9215 (name "r-ellipse")
9216 (version "0.4.2")
9217 (source
9218 (origin
9219 (method url-fetch)
9220 (uri (cran-uri "ellipse" version))
9221 (sha256
9222 (base32
9223 "1wm5v7zdv2drgdba7z96jwsx74mqhlq80qgrvdb4vb5r02dcw68p"))))
9224 (build-system r-build-system)
9225 (home-page "https://cran.r-project.org/web/packages/ellipse/")
9226 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
9227 (description
9228 "This package contains various routines for drawing ellipses and
9229 ellipse-like confidence regions, implementing the plots described in Murdoch
9230 and Chow (1996), A graphical display of large correlation matrices, The
9231 American Statistician 50, 178-180. There are also routines implementing the
9232 profile plots described in Bates and Watts (1988), Nonlinear Regression
9233 Analysis and its Applications.")
9234 (license license:gpl2+)))
9235
9236 (define-public r-flashclust
9237 (package
9238 (name "r-flashclust")
9239 (version "1.01-2")
9240 (source
9241 (origin
9242 (method url-fetch)
9243 (uri (cran-uri "flashClust" version))
9244 (sha256
9245 (base32
9246 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
9247 (properties `((upstream-name . "flashClust")))
9248 (build-system r-build-system)
9249 (native-inputs (list gfortran))
9250 (home-page "https://cran.r-project.org/web/packages/flashClust/")
9251 (synopsis "Implementation of optimal hierarchical clustering")
9252 (description
9253 "This package provides a fast implementation of hierarchical
9254 clustering.")
9255 (license license:gpl2+)))
9256
9257 (define-public r-factominer
9258 (package
9259 (name "r-factominer")
9260 (version "2.4")
9261 (source
9262 (origin
9263 (method url-fetch)
9264 (uri (cran-uri "FactoMineR" version))
9265 (sha256
9266 (base32
9267 "0lg8n9fxxk46nchnj4pbpqqf4swxfsq7r9jzr36dmd36kb7avqxr"))))
9268 (properties `((upstream-name . "FactoMineR")))
9269 (build-system r-build-system)
9270 (propagated-inputs
9271 (list r-car
9272 r-cluster
9273 r-dt
9274 r-ellipse
9275 r-flashclust
9276 r-ggplot2
9277 r-ggrepel
9278 r-lattice
9279 r-leaps
9280 r-mass
9281 r-scatterplot3d))
9282 (native-inputs
9283 (list r-knitr))
9284 (home-page "http://factominer.free.fr")
9285 (synopsis "Multivariate exploratory data analysis and data mining")
9286 (description
9287 "This package provides exploratory data analysis methods to summarize,
9288 visualize and describe datasets. The main principal component methods are
9289 available, those with the largest potential in terms of applications:
9290 principal component analysis (PCA) when variables are quantitative,
9291 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
9292 variables are categorical, Multiple Factor Analysis when variables are
9293 structured in groups, etc. and hierarchical cluster analysis.")
9294 (license license:gpl2+)))
9295
9296 (define-public r-factoextra
9297 (package
9298 (name "r-factoextra")
9299 (version "1.0.7")
9300 (source
9301 (origin
9302 (method url-fetch)
9303 (uri (cran-uri "factoextra" version))
9304 (sha256
9305 (base32
9306 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
9307 (build-system r-build-system)
9308 (propagated-inputs
9309 (list r-abind
9310 r-cluster
9311 r-dendextend
9312 r-factominer
9313 r-ggplot2
9314 r-ggpubr
9315 r-ggrepel
9316 r-reshape2
9317 r-tidyr))
9318 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
9319 (synopsis "Extract and visualize the results of multivariate data analyses")
9320 (description
9321 "This package provides some easy-to-use functions to extract and
9322 visualize the output of multivariate data analyses, including
9323 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
9324 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
9325 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
9326 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
9327 packages. It contains also functions for simplifying some clustering analysis
9328 steps and provides ggplot2-based elegant data visualization.")
9329 (license license:gpl2)))
9330
9331 (define-public r-fansi
9332 (package
9333 (name "r-fansi")
9334 (version "1.0.3")
9335 (source
9336 (origin
9337 (method url-fetch)
9338 (uri (cran-uri "fansi" version))
9339 (sha256
9340 (base32
9341 "0sn0kflgcn2qrrv646pzqylm02cx8l5ws473ppmvla4xihyvi9w6"))))
9342 (build-system r-build-system)
9343 (native-inputs
9344 (list r-knitr)) ; for vignettes
9345 (home-page "https://github.com/brodieG/fansi")
9346 (synopsis "ANSI control sequence aware string functions")
9347 (description
9348 "This package provides counterparts to R string manipulation functions
9349 that account for the effects of ANSI text formatting control sequences.")
9350 (license license:gpl2+)))
9351
9352 (define-public r-nbclust
9353 (package
9354 (name "r-nbclust")
9355 (version "3.0.1")
9356 (source
9357 (origin
9358 (method url-fetch)
9359 (uri (cran-uri "NbClust" version))
9360 (sha256
9361 (base32
9362 "0k5hr4zgx4gp1n62xchgz2zvyl35ba2cnczhhvj8rfbg2n4hx6qs"))))
9363 (properties `((upstream-name . "NbClust")))
9364 (build-system r-build-system)
9365 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
9366 (synopsis "Determine the best number of clusters in a data set")
9367 (description
9368 "NbClust provides 30 indexes for determining the optimal number of
9369 clusters in a data set and offers the best clustering scheme from different
9370 results to the user.")
9371 (license license:gpl2)))
9372
9373 (define-public r-hdf5r
9374 (package
9375 (name "r-hdf5r")
9376 (version "1.3.5")
9377 (source
9378 (origin
9379 (method url-fetch)
9380 (uri (cran-uri "hdf5r" version))
9381 (sha256
9382 (base32
9383 "0bv2q4ir73sbk5ra2q4mc8wbcmiwkws8k0mjlnx9ysi2mdrm3dw7"))))
9384 (build-system r-build-system)
9385 (inputs
9386 (list hdf5 zlib))
9387 (propagated-inputs
9388 (list r-bit64 r-r6))
9389 (native-inputs
9390 (list r-knitr))
9391 (home-page "https://hhoeflin.github.io/hdf5r")
9392 (synopsis "Interface to the HDF5 binary data format")
9393 (description
9394 "HDF5 is a data model, library and file format for storing and managing
9395 large amounts of data. This package provides a nearly feature complete,
9396 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
9397 functionality is added so that HDF5 objects behave very similar to their
9398 corresponding R counterparts.")
9399 (license license:asl2.0)))
9400
9401 (define-public r-itertools
9402 (package
9403 (name "r-itertools")
9404 (version "0.1-3")
9405 (source
9406 (origin
9407 (method url-fetch)
9408 (uri (cran-uri "itertools" version))
9409 (sha256
9410 (base32
9411 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
9412 (build-system r-build-system)
9413 (propagated-inputs
9414 (list r-iterators))
9415 (home-page "https://cran.r-project.org/web/packages/itertools/")
9416 (synopsis "Iterator tools")
9417 (description
9418 "This package provides various tools for creating iterators, many
9419 patterned after functions in the Python @code{itertools} module, and others
9420 patterned after functions in the snow package.")
9421 (license license:gpl2)))
9422
9423 (define-public r-itsadug
9424 (package
9425 (name "r-itsadug")
9426 (version "2.4")
9427 (source
9428 (origin
9429 (method url-fetch)
9430 (uri (cran-uri "itsadug" version))
9431 (sha256
9432 (base32 "0759l7hhvj05dp92pz59xwrxjm9s1iwkwrdhs68l0fq57550j70l"))))
9433 (properties `((upstream-name . "itsadug")))
9434 (build-system r-build-system)
9435 (propagated-inputs (list r-mgcv r-plotfunctions))
9436 (native-inputs (list r-knitr))
9437 (home-page "https://cran.r-project.org/package=itsadug")
9438 (synopsis "Interpreting time series and autocorrelated data using GAMMs")
9439 (description
9440 "@dfn{Generalized Additive Mixed Modeling} (GAMM; Lin & Zhang, 1999) as
9441 implemented in the R package @code{mgcv} is a nonlinear regression analysis
9442 which is particularly useful for time course data such as EEG, pupil dilation,
9443 gaze data (eye tracking), and articulography recordings, but also for
9444 behavioral data such as reaction times and response data. As time course
9445 measures are sensitive to autocorrelation problems, GAMMs implements methods
9446 to reduce the autocorrelation problems. This package includes functions for
9447 the evaluation of GAMM models (e.g., model comparisons, determining regions of
9448 significance, inspection of autocorrelational structure in residuals) and
9449 interpreting of GAMMs (e.g., visualization of complex interactions, and
9450 contrasts).")
9451 (license license:gpl2+)))
9452
9453 (define-public r-polynom
9454 (package
9455 (name "r-polynom")
9456 (version "1.4-1")
9457 (source
9458 (origin
9459 (method url-fetch)
9460 (uri (cran-uri "polynom" version))
9461 (sha256
9462 (base32
9463 "0y4j07syjwpnq5w6a1d90z6h1hjzijmm42pq0f8jk2vcn5xxn7mw"))))
9464 (build-system r-build-system)
9465 (native-inputs (list r-knitr))
9466 (home-page "https://cran.r-project.org/web/packages/polynom/")
9467 (synopsis "Functions for univariate polynomial manipulations")
9468 (description
9469 "This package provides a collection of functions to implement a class for
9470 univariate polynomial manipulations.")
9471 (license license:gpl2)))
9472
9473 (define-public r-pupillometryr
9474 (package
9475 (name "r-pupillometryr")
9476 (version "0.0.4")
9477 (source
9478 (origin
9479 (method url-fetch)
9480 (uri (cran-uri "PupillometryR" version))
9481 (sha256
9482 (base32 "0yk30sgl2qqa6pva649swq523vh446ifmydildycfvfmlm1h4qza"))))
9483 (properties `((upstream-name . "PupillometryR")))
9484 (build-system r-build-system)
9485 (propagated-inputs
9486 (list r-data-table
9487 r-dplyr
9488 r-fda
9489 r-ggplot2
9490 r-itsadug
9491 r-lazyeval
9492 r-mgcv
9493 r-rlang
9494 r-signal
9495 r-tidyr
9496 r-zoo))
9497 (native-inputs (list r-knitr))
9498 (home-page "https://cran.r-project.org/package=PupillometryR")
9499 (synopsis "Unified pipeline for pupillometry data")
9500 (description
9501 "This package provides a unified pipeline to clean, prepare, plot, and
9502 run basic analyses on pupillometry experiments.")
9503 (license license:expat)))
9504
9505 (define-public r-gbrd
9506 (package
9507 (name "r-gbrd")
9508 (version "0.4-11")
9509 (source
9510 (origin
9511 (method url-fetch)
9512 (uri (cran-uri "gbRd" version))
9513 (sha256
9514 (base32
9515 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
9516 (properties `((upstream-name . "gbRd")))
9517 (build-system r-build-system)
9518 (home-page "https://cran.r-project.org/web/packages/gbRd/")
9519 (synopsis "Utilities for processing Rd objects and files")
9520 (description
9521 "This package provides utilities for processing Rd objects and files.
9522 Extract argument descriptions and other parts of the help pages of
9523 functions.")
9524 (license license:gpl2+)))
9525
9526 (define-public r-rjags
9527 (package
9528 (name "r-rjags")
9529 (version "4-13")
9530 (source
9531 (origin
9532 (method url-fetch)
9533 (uri (cran-uri "rjags" version))
9534 (sha256
9535 (base32
9536 "0cibz6xhmh86fh7ynmdgpmlchizi57pi6dpslgc2if17a56c6p7q"))))
9537 (build-system r-build-system)
9538 (propagated-inputs
9539 (list r-coda))
9540 (inputs
9541 (list jags))
9542 (native-inputs
9543 (list pkg-config))
9544 (home-page "http://mcmc-jags.sourceforge.net")
9545 (synopsis "Bayesian graphical models using MCMC")
9546 (description
9547 "This package provides an R interface to the JAGS MCMC library. JAGS is
9548 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
9549 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
9550 (license license:gpl2)))
9551
9552 (define-public r-rbibutils
9553 (package
9554 (name "r-rbibutils")
9555 (version "2.2.8")
9556 (source
9557 (origin
9558 (method url-fetch)
9559 (uri (cran-uri "rbibutils" version))
9560 (sha256
9561 (base32
9562 "0lnia2fk8zlvkkgnl7r7dyi1ip5vqlw448qrvqs2s14rpbpcvbpi"))))
9563 (properties `((upstream-name . "rbibutils")))
9564 (build-system r-build-system)
9565 (home-page "https://geobosh.github.io/rbibutils/")
9566 (synopsis "Convert between bibliography formats")
9567 (description
9568 "This package converts between a number of bibliography formats,
9569 including BibTeX, BibLaTeX and Bibentry. It includes a port of the bibutils
9570 utilities and supports all bibliography formats and character encodings
9571 implemented in bibutils.")
9572 (license license:gpl2)))
9573
9574 (define-public r-rdpack
9575 (package
9576 (name "r-rdpack")
9577 (version "2.3")
9578 (source
9579 (origin
9580 (method url-fetch)
9581 (uri (cran-uri "Rdpack" version))
9582 (sha256
9583 (base32
9584 "1igpa4hnpiykbdnq57mglby5jsbind6izkkfy81wx4ib6nw1lpn4"))))
9585 (properties `((upstream-name . "Rdpack")))
9586 (build-system r-build-system)
9587 (propagated-inputs
9588 (list r-rbibutils))
9589 (home-page "https://github.com/GeoBosh/Rdpack")
9590 (synopsis "Update and manipulate Rd documentation objects")
9591 (description
9592 "This package provides functions for manipulation of R documentation
9593 objects, including functions @code{reprompt()} and @code{ereprompt()} for
9594 updating Rd documentation for functions, methods and classes; it also includes
9595 Rd macros for citations and import of references from bibtex files for use in
9596 Rd files and roxygen2 comments, as well as many functions for manipulation of
9597 references and Rd files.")
9598 (license license:gpl2+)))
9599
9600 (define-public r-officer
9601 (package
9602 (name "r-officer")
9603 (version "0.4.2")
9604 (source
9605 (origin
9606 (method url-fetch)
9607 (uri (cran-uri "officer" version))
9608 (sha256
9609 (base32
9610 "0qmn62srh9zicgizyblanirbdva7f09g967yb86kfrn05ckh5y10"))))
9611 (build-system r-build-system)
9612 (propagated-inputs
9613 (list r-r6 r-uuid r-xml2 r-zip))
9614 (home-page "https://davidgohel.github.io/officer")
9615 (synopsis "Manipulation of Word and PowerPoint documents")
9616 (description
9617 "This package provides tools to access and manipulate Word and PowerPoint
9618 documents from R. The package focuses on tabular and graphical reporting from
9619 R; it also provides two functions that let users get document content into
9620 data objects. A set of functions lets add and remove images, tables and
9621 paragraphs of text in new or existing documents. When working with PowerPoint
9622 presentations, slides can be added or removed; shapes inside slides can also
9623 be added or removed. When working with Word documents, a cursor can be used
9624 to help insert or delete content at a specific location in the document.")
9625 (license license:gpl3)))
9626
9627 (define-public r-profilemodel
9628 (package
9629 (name "r-profilemodel")
9630 (version "0.6.1")
9631 (source
9632 (origin
9633 (method url-fetch)
9634 (uri (cran-uri "profileModel" version))
9635 (sha256
9636 (base32
9637 "01m5nb8cmq0aq555pxk2a99182si65hhmn68yn9nal2j3zl2bp4i"))))
9638 (properties `((upstream-name . "profileModel")))
9639 (build-system r-build-system)
9640 (home-page "https://github.com/ikosmidis/profileModel")
9641 (synopsis "Profiling inference functions for various model classes")
9642 (description
9643 "This package provides tools that can be used to calculate, evaluate,
9644 plot and use for inference the profiles of *arbitrary* inference functions for
9645 arbitrary @code{glm}-like fitted models with linear predictors. More information
9646 on the methods that are implemented can be found in Kosmidis (2008)
9647 @url{https://www.r-project.org/doc/Rnews/Rnews_2008-2.pdf}.")
9648 (license license:gpl2+)))
9649
9650 (define-public r-brglm
9651 (package
9652 (name "r-brglm")
9653 (version "0.7.2")
9654 (source
9655 (origin
9656 (method url-fetch)
9657 (uri (cran-uri "brglm" version))
9658 (sha256
9659 (base32
9660 "08shcz0j1npdn7xkhsvlzs3z4rdwq3g4rk6a4xx8wirqw8n8s2an"))))
9661 (properties `((upstream-name . "brglm")))
9662 (build-system r-build-system)
9663 (propagated-inputs
9664 (list r-profilemodel))
9665 (home-page "https://github.com/ikosmidis/brglm")
9666 (synopsis "Bias reduction in binomial-response generalized linear models")
9667 (description
9668 "Fit generalized linear models with binomial responses using either an
9669 adjusted-score approach to bias reduction or maximum penalized likelihood
9670 where penalization is by Jeffreys invariant prior. These procedures return
9671 estimates with improved frequentist properties (bias, mean squared error) that
9672 are always finite even in cases where the maximum likelihood estimates are
9673 infinite (data separation). Fitting takes place by fitting generalized linear
9674 models on iteratively updated pseudo-data. The interface is essentially the
9675 same as @code{glm}. More flexibility is provided by the fact that custom
9676 pseudo-data representations can be specified and used for model fitting.
9677 Functions are provided for the construction of confidence intervals for the
9678 reduced-bias estimates.")
9679 (license license:gpl2+)))
9680
9681 (define-public r-entropy
9682 (package
9683 (name "r-entropy")
9684 (version "1.3.1")
9685 (source
9686 (origin
9687 (method url-fetch)
9688 (uri (cran-uri "entropy" version))
9689 (sha256
9690 (base32
9691 "1f0j8jsn6pzf4gi5g0akixx6x5vc69ci5f4m2vnwp40frvsqjnkg"))))
9692 (properties `((upstream-name . "entropy")))
9693 (build-system r-build-system)
9694 (home-page "https://www.strimmerlab.org/software/entropy/")
9695 (synopsis "Estimation of entropy, mutual information and related quantities")
9696 (description
9697 "This package implements various estimators of entropy, such as the
9698 shrinkage estimator by Hausser and Strimmer, the maximum likelihood and the
9699 Millow-Madow estimator, various Bayesian estimators, and the Chao-Shen
9700 estimator. It also offers an R interface to the NSB estimator. Furthermore,
9701 it provides functions for estimating Kullback-Leibler divergence, chi-squared,
9702 mutual information, and chi-squared statistic of independence. In addition
9703 there are functions for discretizing continuous random variables.")
9704 (license license:gpl3+)))
9705
9706 (define-public r-acd
9707 (package
9708 (name "r-acd")
9709 (version "1.5.3")
9710 (source
9711 (origin
9712 (method url-fetch)
9713 (uri (cran-uri "ACD" version))
9714 (sha256
9715 (base32
9716 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
9717 (properties `((upstream-name . "ACD")))
9718 (build-system r-build-system)
9719 (home-page "https://cran.r-project.org/web/packages/ACD/")
9720 (synopsis "Categorical data analysis with complete or missing responses")
9721 (description
9722 "This package provides tools for categorical data analysis with complete
9723 or missing responses.")
9724 (license license:gpl2+)))
9725
9726 (define-public r-acdm
9727 (package
9728 (name "r-acdm")
9729 (version "1.0.4")
9730 (source
9731 (origin
9732 (method url-fetch)
9733 (uri (cran-uri "ACDm" version))
9734 (sha256
9735 (base32
9736 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
9737 (properties `((upstream-name . "ACDm")))
9738 (build-system r-build-system)
9739 (propagated-inputs
9740 (list r-dplyr r-ggplot2 r-plyr r-rsolnp r-zoo))
9741 (home-page "https://cran.r-project.org/web/packages/ACDm/")
9742 (synopsis "Tools for Autoregressive Conditional Duration Models")
9743 (description
9744 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
9745 and Russell, 1998) models. It creates trade, price or volume durations from
9746 transactions (tic) data, performs diurnal adjustments, fits various ACD models
9747 and tests them.")
9748 (license license:gpl2+)))
9749
9750 (define-public r-overlap
9751 (package
9752 (name "r-overlap")
9753 (version "0.3.4")
9754 (source
9755 (origin
9756 (method url-fetch)
9757 (uri (cran-uri "overlap" version))
9758 (sha256
9759 (base32
9760 "1arxprhz035ab78ks88n6scwnlwmnb97mlac5gsx90ipb6gkgcyk"))))
9761 (build-system r-build-system)
9762 (home-page "https://cran.r-project.org/web/packages/overlap/")
9763 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
9764 (description
9765 "This package provides functions to fit kernel density functions to data
9766 on temporal activity patterns of animals; estimate coefficients of overlapping
9767 of densities for two species; and calculate bootstrap estimates of confidence
9768 intervals.")
9769 (license license:gpl3+)))
9770
9771 (define-public r-snakecase
9772 (package
9773 (name "r-snakecase")
9774 (version "0.11.0")
9775 (source
9776 (origin
9777 (method url-fetch)
9778 (uri (cran-uri "snakecase" version))
9779 (sha256
9780 (base32
9781 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
9782 (build-system r-build-system)
9783 (propagated-inputs
9784 (list r-stringi r-stringr))
9785 (home-page "https://github.com/Tazinho/snakecase")
9786 (synopsis "Convert strings into any case")
9787 (description
9788 "This package provides a consistent, flexible and easy to use tool to
9789 parse and convert strings into cases like snake or camel among others.")
9790 (license license:gpl3)))
9791
9792 (define-public r-prediction
9793 (package
9794 (name "r-prediction")
9795 (version "0.3.14")
9796 (source
9797 (origin
9798 (method url-fetch)
9799 (uri (cran-uri "prediction" version))
9800 (sha256
9801 (base32
9802 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
9803 (build-system r-build-system)
9804 (propagated-inputs
9805 (list r-data-table))
9806 (home-page "https://github.com/leeper/prediction")
9807 (synopsis "Tidy, type-safe prediction methods")
9808 (description
9809 "This package provides the @code{prediction()} function, a type-safe
9810 alternative to @code{predict()} that always returns a data frame. The package
9811 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
9812 from the @code{stats} package, as well as numerous other model classes from
9813 other add-on packages.")
9814 (license license:expat)))
9815
9816 (define-public r-insight
9817 (package
9818 (name "r-insight")
9819 (version "0.17.1")
9820 (source
9821 (origin
9822 (method url-fetch)
9823 (uri (cran-uri "insight" version))
9824 (sha256
9825 (base32
9826 "0dffrsimgijdqsgvr9cad4g4w97d5ssjl3l0fm5ssly9l115ag35"))))
9827 (build-system r-build-system)
9828 (native-inputs
9829 (list r-knitr))
9830 (home-page "https://easystats.github.io/insight/")
9831 (synopsis "Easy access to model information for various model objects")
9832 (description
9833 "This package provides a tool to provide an easy, intuitive and
9834 consistent access to information contained in various R models, like model
9835 formulas, model terms, information about random effects, data that was used to
9836 fit the model or data from response variables. The package mainly revolves
9837 around two types of functions: Functions that find (the names of) information,
9838 starting with @code{find_}, and functions that get the underlying data,
9839 starting with @code{get_}. The package has a consistent syntax and works with
9840 many different model objects, where otherwise functions to access these
9841 information are missing.")
9842 (license license:gpl3)))
9843
9844 (define-public r-sjlabelled
9845 (package
9846 (name "r-sjlabelled")
9847 (version "1.2.0")
9848 (source
9849 (origin
9850 (method url-fetch)
9851 (uri (cran-uri "sjlabelled" version))
9852 (sha256
9853 (base32
9854 "1va86q5wddyvqgdpy8d0an2c7v1qbb4hpn0ai6y1v5v1ff87w73k"))))
9855 (build-system r-build-system)
9856 (propagated-inputs
9857 (list r-datawizard r-insight))
9858 (native-inputs
9859 (list r-knitr))
9860 (home-page "https://github.com/strengejacke/sjlabelled")
9861 (synopsis "Labelled data utility functions")
9862 (description
9863 "This package provides a collection of functions dealing with labelled
9864 data, like reading and writing data between R and other statistical software
9865 packages. This includes easy ways to get, set or change value and variable
9866 label attributes, to convert labelled vectors into factors or numeric (and
9867 vice versa), or to deal with multiple declared missing values.")
9868 (license license:gpl3)))
9869
9870 (define-public r-sjmisc
9871 (package
9872 (name "r-sjmisc")
9873 (version "2.8.9")
9874 (source
9875 (origin
9876 (method url-fetch)
9877 (uri (cran-uri "sjmisc" version))
9878 (sha256
9879 (base32
9880 "1gzkq95ckxr0vhrzggflzli9hs7zr8c0yym9zn1wf74yrr0mgc3q"))))
9881 (build-system r-build-system)
9882 (propagated-inputs
9883 (list r-dplyr
9884 r-insight
9885 r-magrittr
9886 r-purrr
9887 r-rlang
9888 r-sjlabelled
9889 r-tidyselect))
9890 (native-inputs
9891 (list r-knitr))
9892 (home-page "https://github.com/strengejacke/sjmisc")
9893 (synopsis "Data and variable transformation functions")
9894 (description
9895 "This package is a collection of miscellaneous utility functions,
9896 supporting data transformation tasks like recoding, dichotomizing or grouping
9897 variables, setting and replacing missing values. The data transformation
9898 functions also support labelled data, and all integrate seamlessly into a
9899 tidyverse workflow.")
9900 (license license:gpl3)))
9901
9902 (define-public r-nortest
9903 (package
9904 (name "r-nortest")
9905 (version "1.0-4")
9906 (source
9907 (origin
9908 (method url-fetch)
9909 (uri (cran-uri "nortest" version))
9910 (sha256
9911 (base32
9912 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
9913 (build-system r-build-system)
9914 (home-page "https://cran.r-project.org/web/packages/nortest/")
9915 (synopsis "Tests for normality")
9916 (description
9917 "This package provides five omnibus tests for testing the composite
9918 hypothesis of normality.")
9919 (license license:gpl2+)))
9920
9921 (define-public r-moonbook
9922 (package
9923 (name "r-moonbook")
9924 (version "0.3.1")
9925 (source
9926 (origin
9927 (method url-fetch)
9928 (uri (cran-uri "moonBook" version))
9929 (sha256
9930 (base32
9931 "1ml4vvm0mvrprpyi0l50aw38brx18bk2qny4gybmkvlbakalz9bx"))))
9932 (properties `((upstream-name . "moonBook")))
9933 (build-system r-build-system)
9934 (propagated-inputs
9935 (list r-crayon
9936 r-magrittr
9937 r-nortest
9938 r-sjmisc
9939 r-stringr
9940 r-survival))
9941 (native-inputs
9942 (list r-knitr))
9943 (home-page "https://github.com/cardiomoon/moonBook")
9944 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
9945 (description
9946 "This package provides several analysis-related functions for the book
9947 entitled \"R statistics and graph for medical articles\" (written in Korean),
9948 version 1, by Keon-Woong Moon with Korean demographic data with several plot
9949 functions.")
9950 (license license:gpl2)))
9951
9952 (define-public r-flextable
9953 (package
9954 (name "r-flextable")
9955 (version "0.7.0")
9956 (source
9957 (origin
9958 (method url-fetch)
9959 (uri (cran-uri "flextable" version))
9960 (sha256
9961 (base32
9962 "15vr5lb87712mymsvv01kz9s1fb54sx5kybsa2x547k5g10dbrbm"))))
9963 (build-system r-build-system)
9964 (propagated-inputs
9965 (list r-base64enc
9966 r-data-table
9967 r-gdtools
9968 r-htmltools
9969 r-knitr
9970 r-officer
9971 r-rlang
9972 r-rmarkdown
9973 r-uuid
9974 r-xml2))
9975 (native-inputs
9976 (list r-knitr))
9977 (home-page "https://davidgohel.github.io/flextable")
9978 (synopsis "Functions for tabular reporting")
9979 (description
9980 "This package provides tools to create pretty tables for HTML documents
9981 and other formats. Functions are provided to let users create tables, modify
9982 and format their content. It extends the @code{officer} package and can be
9983 used within R markdown documents when rendering to HTML and to Word
9984 documents.")
9985 (license license:gpl3)))
9986
9987 (define-public r-writexl
9988 (package
9989 (name "r-writexl")
9990 (version "1.4.0")
9991 (source
9992 (origin
9993 (method url-fetch)
9994 (uri (cran-uri "writexl" version))
9995 (sha256
9996 (base32
9997 "0mfzyn8n5x5x5gf382bqgq61zpw9dymrp5kzdm2sbszplmxf6xry"))))
9998 (build-system r-build-system)
9999 (inputs (list zlib))
10000 (home-page "https://github.com/ropensci/writexl")
10001 (synopsis "Export data frames to xlsx format")
10002 (description
10003 "This package provides a data frame to xlsx exporter based on
10004 libxlsxwriter.")
10005 (license license:bsd-2)))
10006
10007 (define-public r-biasedurn
10008 (package
10009 (name "r-biasedurn")
10010 (version "1.07")
10011 (source
10012 (origin
10013 (method url-fetch)
10014 (uri (cran-uri "BiasedUrn" version))
10015 (sha256
10016 (base32
10017 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
10018 (properties `((upstream-name . "BiasedUrn")))
10019 (build-system r-build-system)
10020 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
10021 (synopsis "Biased Urn model distributions")
10022 (description
10023 "This package provides statistical models of biased sampling in the form
10024 of univariate and multivariate noncentral hypergeometric distributions,
10025 including Wallenius' noncentral hypergeometric distribution and Fisher's
10026 noncentral hypergeometric distribution (also called extended hypergeometric
10027 distribution).")
10028 (license license:gpl3)))
10029
10030 (define-public r-goplot
10031 (package
10032 (name "r-goplot")
10033 (version "1.0.2")
10034 (source
10035 (origin
10036 (method url-fetch)
10037 (uri (cran-uri "GOplot" version))
10038 (sha256
10039 (base32
10040 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
10041 (properties `((upstream-name . "GOplot")))
10042 (build-system r-build-system)
10043 (propagated-inputs
10044 (list r-ggdendro r-ggplot2 r-gridextra r-rcolorbrewer))
10045 (home-page "https://github.com/wencke/wencke.github.io")
10046 (synopsis "Visualization of functional analysis data")
10047 (description
10048 "This package provides an implementation of multilayered visualizations
10049 for enhanced graphical representation of functional analysis data. It
10050 combines and integrates omics data derived from expression and functional
10051 annotation enrichment analyses. Its plotting functions have been developed
10052 with an hierarchical structure in mind: starting from a general overview to
10053 identify the most enriched categories (modified bar plot, bubble plot) to a
10054 more detailed one displaying different types of relevant information for the
10055 molecules in a given set of categories (circle plot, chord plot, cluster plot,
10056 Venn diagram, heatmap).")
10057 (license license:gpl2)))
10058
10059 (define-public r-getopt
10060 (package
10061 (name "r-getopt")
10062 (version "1.20.3")
10063 (source
10064 (origin
10065 (method url-fetch)
10066 (uri (cran-uri "getopt" version))
10067 (sha256
10068 (base32
10069 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
10070 (build-system r-build-system)
10071 (home-page "https://github.com/trevorld/getopt")
10072 (synopsis "Command-line option processor for R")
10073 (description
10074 "This package is designed to be used with Rscript to write shebang
10075 scripts that accept short and long options. Many users will prefer to
10076 use the packages @code{optparse} or @code{argparse} which add extra
10077 features like automatically generated help options and usage texts,
10078 support for default values, positional argument support, etc.")
10079 (license license:gpl2+)))
10080
10081 (define-public r-findpython
10082 (package
10083 (name "r-findpython")
10084 (version "1.0.7")
10085 (source
10086 (origin
10087 (method url-fetch)
10088 (uri (cran-uri "findpython" version))
10089 (sha256
10090 (base32
10091 "0jf10jpqla90x03kl3k77gnd255zmw9rvr8d724vb17cqawh9yar"))))
10092 (build-system r-build-system)
10093 (home-page "https://github.com/trevorld/findpython")
10094 (synopsis "Functions to find an acceptable Python binary")
10095 (description
10096 "This package was designed to find an acceptable Python binary that
10097 matches version and feature constraints.")
10098 (license license:expat)))
10099
10100 ;; This in not the same as "r-argparser"
10101 (define-public r-argparse
10102 (package
10103 (name "r-argparse")
10104 (version "2.1.5")
10105 (source
10106 (origin
10107 (method url-fetch)
10108 (uri (cran-uri "argparse" version))
10109 (sha256
10110 (base32
10111 "13b5halfxc7nr57vkz3qmkkcpw1hr4xdk1mjh2cq8cvpnjz15qc3"))))
10112 (build-system r-build-system)
10113 (inputs (list python))
10114 (propagated-inputs
10115 (list r-findpython r-jsonlite r-r6))
10116 (native-inputs
10117 (list r-knitr))
10118 (home-page "https://github.com/trevorld/argparse")
10119 (synopsis "Command line optional and positional argument parser")
10120 (description
10121 "This package provides a command line parser to be used with Rscript to
10122 write shebang scripts that gracefully accept positional and optional arguments
10123 and automatically generate usage notices.")
10124 (license license:gpl2+)))
10125
10126 (define-public r-hash
10127 (package
10128 (name "r-hash")
10129 (version "2.2.6.2")
10130 (source
10131 (origin
10132 (method url-fetch)
10133 (uri (cran-uri "hash" version))
10134 (sha256
10135 (base32
10136 "17scs675a86c34hjbxmwi8kny4yyv97x3515s449zafj2i0ad8vm"))))
10137 (build-system r-build-system)
10138 (home-page "https://cran.r-project.org/web/packages/hash/")
10139 (synopsis "Implementation of hash/associated arrays/dictionaries")
10140 (description
10141 "This package implements a data structure similar to hashes in Perl and
10142 dictionaries in Python but with a purposefully R flavor. For objects of
10143 appreciable size, access using hashes outperforms native named lists and
10144 vectors.")
10145 (license license:gpl2+)))
10146
10147 (define-public r-orddom
10148 (package
10149 (name "r-orddom")
10150 (version "3.1")
10151 (source
10152 (origin
10153 (method url-fetch)
10154 (uri (cran-uri "orddom" version))
10155 (sha256
10156 (base32
10157 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
10158 (build-system r-build-system)
10159 (propagated-inputs (list r-psych))
10160 (home-page "https://cran.r-project.org/web/packages/orddom/")
10161 (synopsis "Ordinal dominance statistics")
10162 (description
10163 "This package provides tools to compute ordinal, statistics and effect
10164 sizes as an alternative to mean comparison: Cliff's delta or success rate
10165 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
10166 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
10167 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
10168 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
10169 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
10170 Group (Non-)Overlap considerations.")
10171 (license license:gpl2)))
10172
10173 (define-public r-deriv
10174 (package
10175 (name "r-deriv")
10176 (version "4.1.3")
10177 (source
10178 (origin
10179 (method url-fetch)
10180 (uri (cran-uri "Deriv" version))
10181 (sha256
10182 (base32
10183 "130g3mv0z9sqs6y23a0a94512iiw05yr6fp378vhdxxbignzbnyv"))))
10184 (properties `((upstream-name . "Deriv")))
10185 (build-system r-build-system)
10186 (home-page "https://cran.r-project.org/web/packages/Deriv")
10187 (synopsis "Symbolic differentiation")
10188 (description
10189 "This package provides an R-based solution for symbolic differentiation.
10190 It admits user-defined functions as well as function substitution in arguments
10191 of functions to be differentiated. Some symbolic simplification is part of
10192 the work.")
10193 (license license:gpl3+)))
10194
10195 (define-public r-doby
10196 (package
10197 (name "r-doby")
10198 (version "4.6.13")
10199 (source
10200 (origin
10201 (method url-fetch)
10202 (uri (cran-uri "doBy" version))
10203 (sha256
10204 (base32
10205 "0qnfcw4rg5kd1mll3rq6vchz3lgdqfif9469p8x6ixsgrxxpivbz"))))
10206 (properties `((upstream-name . "doBy")))
10207 (build-system r-build-system)
10208 (propagated-inputs
10209 (list r-broom
10210 r-deriv
10211 r-dplyr
10212 r-ggplot2
10213 r-magrittr
10214 r-mass
10215 r-matrix
10216 r-microbenchmark
10217 r-pbkrtest
10218 r-tibble))
10219 (native-inputs
10220 (list r-knitr))
10221 (home-page "https://people.math.aau.dk/~sorenh/software/doBy/")
10222 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
10223 (description
10224 "This package contains:
10225
10226 @itemize
10227 @item facilities for working with grouped data: @code{do}
10228 something to data stratified @code{by} some variables.
10229 @item implementations of least-squares means, general linear contrasts, and
10230 @item miscellaneous other utilities.
10231 @end itemize\n")
10232 (license license:gpl2+)))
10233
10234 (define-public r-refgenome
10235 (package
10236 (name "r-refgenome")
10237 (version "1.7.7")
10238 (source
10239 (origin
10240 (method url-fetch)
10241 (uri (cran-uri "refGenome" version))
10242 (sha256
10243 (base32
10244 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
10245 (properties `((upstream-name . "refGenome")))
10246 (build-system r-build-system)
10247 (propagated-inputs
10248 (list r-dbi r-doby r-rsqlite))
10249 (home-page "https://cran.r-project.org/web/packages/refGenome/")
10250 (synopsis
10251 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
10252 (description
10253 "This package contains functionality for importing and managing of
10254 downloaded genome annotation data from the Ensembl genome browser (European
10255 Bioinformatics Institute) and from the UCSC genome browser (University of
10256 California, Santa Cruz) and annotation routines for genomic positions and
10257 splice site positions.")
10258 (license license:gpl2)))
10259
10260 (define-public r-basix
10261 (package
10262 (name "r-basix")
10263 (version "1.1")
10264 (source
10265 (origin
10266 (method url-fetch)
10267 (uri (cran-uri "BASIX" version))
10268 (sha256
10269 (base32
10270 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
10271 (properties `((upstream-name . "BASIX")))
10272 (build-system r-build-system)
10273 (home-page "https://cran.r-project.org/web/packages/BASIX/")
10274 (synopsis "Efficient C/C++ toolset for R")
10275 (description
10276 "BASIX provides some efficient C/C++ implementations of native R
10277 procedures to speed up calculations in R.")
10278 (license license:gpl2)))
10279
10280 (define-public r-blockfest
10281 (package
10282 (name "r-blockfest")
10283 (version "2.0")
10284 (source
10285 (origin
10286 (method url-fetch)
10287 (uri (cran-uri "BlockFeST" version))
10288 (sha256
10289 (base32
10290 "1fcl3yc1cf09znqbj787d3fd2kl5rp63la7pxawsgmap7nxwkp65"))))
10291 (properties `((upstream-name . "BlockFeST")))
10292 (build-system r-build-system)
10293 (propagated-inputs (list r-basix))
10294 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
10295 (synopsis "Bayesian calculation of region-specific fixation index")
10296 (description
10297 "This package provides an R implementation of an extension of the
10298 BayeScan software for codominant markers, adding the option to group
10299 individual SNPs into pre-defined blocks. A typical application of this new
10300 approach is the identification of genomic regions, genes, or gene sets
10301 containing one or more SNPs that evolved under directional selection.")
10302 (license license:gpl2)))
10303
10304 (define-public r-proc
10305 (package
10306 (name "r-proc")
10307 (version "1.18.0")
10308 (source
10309 (origin
10310 (method url-fetch)
10311 (uri (cran-uri "pROC" version))
10312 (sha256
10313 (base32
10314 "1abvbzdss12n64pp9vlgnn0q3abh0nj4n0a8cinwwvhphjrm9vym"))))
10315 (properties `((upstream-name . "pROC")))
10316 (build-system r-build-system)
10317 (propagated-inputs
10318 (list r-plyr r-rcpp))
10319 (home-page "https://web.expasy.org/pROC/")
10320 (synopsis "Display and analyze ROC curves")
10321 (description
10322 "This package provides tools for visualizing, smoothing and comparing
10323 receiver operating characteristic (ROC curves). The area under the
10324 curve (AUC) can be compared with statistical tests based on U-statistics or
10325 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
10326 (license license:gpl3+)))
10327
10328 (define-public r-rootsolve
10329 (package
10330 (name "r-rootsolve")
10331 (version "1.8.2.3")
10332 (source
10333 (origin
10334 (method url-fetch)
10335 (uri (cran-uri "rootSolve" version))
10336 (sha256
10337 (base32
10338 "182bb727sgqi5f3pzmw8jnn328wdjrgj9lfvg49gv8s22rjd3cxm"))))
10339 (properties `((upstream-name . "rootSolve")))
10340 (build-system r-build-system)
10341 (native-inputs (list gfortran))
10342 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
10343 (synopsis "Tools for the analysis of ordinary differential equations")
10344 (description
10345 "This package provides routines to find the root of nonlinear functions,
10346 and to perform steady-state and equilibrium analysis of @dfn{ordinary
10347 differential equations} (ODE). It includes routines that:
10348
10349 @enumerate
10350 @item generate gradient and jacobian matrices (full and banded),
10351 @item find roots of non-linear equations by the Newton-Raphson method,
10352 @item estimate steady-state conditions of a system of (differential) equations
10353 in full, banded or sparse form, using the Newton-Raphson method, or by
10354 dynamically running,
10355 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
10356 and 3-D partial differential equations, that have been converted to ordinary
10357 differential equations by numerical differencing (using the method-of-lines
10358 approach).
10359 @end enumerate\n")
10360 (license license:gpl2+)))
10361
10362 (define-public r-abcanalysis
10363 (package
10364 (name "r-abcanalysis")
10365 (version "1.2.1")
10366 (source
10367 (origin
10368 (method url-fetch)
10369 (uri (cran-uri "ABCanalysis" version))
10370 (sha256
10371 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
10372 (properties `((upstream-name . "ABCanalysis")))
10373 (build-system r-build-system)
10374 (propagated-inputs (list r-plotrix))
10375 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
10376 (synopsis "Computed ABC Analysis")
10377 (description
10378 "Multivariate data sets often differ in several factors or derived statistical
10379 parameters, which have to be selected for a valid interpretation. Basing this
10380 selection on traditional statistical limits leads occasionally to the perception
10381 of losing information from a data set. This package provides tools to calculate
10382 these limits on the basis of the mathematical properties of the distribution of
10383 the analyzed items.")
10384 (license license:gpl3)))
10385
10386 (define-public r-slam
10387 (package
10388 (name "r-slam")
10389 (version "0.1-50")
10390 (source
10391 (origin
10392 (method url-fetch)
10393 (uri (cran-uri "slam" version))
10394 (sha256
10395 (base32 "1ggqcf8l1z2hpi7qy4mg0d2ps48bjjb8z1y1xz6fq162cqrbz6bq"))))
10396 (build-system r-build-system)
10397 (home-page "https://cran.r-project.org/web/packages/slam/")
10398 (synopsis "Sparse lightweight arrays and matrices")
10399 (description
10400 "This package contains data structures and algorithms for sparse arrays and matrices,
10401 based on index arrays and simple triplet representations, respectively.")
10402 (license license:gpl2)))
10403
10404 (define-public r-manipulatewidget
10405 (package
10406 (name "r-manipulatewidget")
10407 (version "0.11.1")
10408 (source
10409 (origin
10410 (method url-fetch)
10411 (uri (cran-uri "manipulateWidget" version))
10412 (sha256
10413 (base32 "1dpgzmiv08afm57yxr017b014lfn9h3pa4w65prk5k3dgn6p4wsv"))))
10414 (properties
10415 `((upstream-name . "manipulateWidget")))
10416 (build-system r-build-system)
10417 (propagated-inputs
10418 (list r-base64enc
10419 r-codetools
10420 r-htmltools
10421 r-htmlwidgets
10422 r-knitr
10423 r-miniui
10424 r-shiny
10425 r-shinyjs
10426 r-webshot))
10427 (native-inputs
10428 (list r-knitr))
10429 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
10430 (synopsis "Add even more interactivity to interactive charts")
10431 (description
10432 "This package lets you create in just a few lines of R code a nice user interface to
10433 modify the data or the graphical parameters of one or multiple interactive
10434 charts. It is useful to quickly explore visually some data or for package
10435 developers to generate user interfaces easy to maintain.")
10436 (license license:gpl2+)))
10437
10438 (define-public r-a3
10439 (package
10440 (name "r-a3")
10441 (version "1.0.0")
10442 (source
10443 (origin
10444 (method url-fetch)
10445 (uri (cran-uri "A3" version))
10446 (sha256
10447 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
10448 (properties `((upstream-name . "A3")))
10449 (build-system r-build-system)
10450 (propagated-inputs
10451 (list r-pbapply r-xtable))
10452 (home-page "https://cran.r-project.org/web/packages/A3/")
10453 (synopsis "Error metrics for predictive models")
10454 (description
10455 "This package supplies tools for tabulating and analyzing the results of predictive
10456 models. The methods employed are applicable to virtually any predictive model
10457 and make comparisons between different methodologies straightforward.")
10458 (license license:gpl2+)))
10459
10460 (define-public r-infotheo
10461 (package
10462 (name "r-infotheo")
10463 (version "1.2.0.1")
10464 (source
10465 (origin
10466 (method url-fetch)
10467 (uri (cran-uri "infotheo" version))
10468 (sha256
10469 (base32
10470 "1m1979vf8rvq3534mp1hihfadikhxrg3p6ac3hirz96kgb4qxyy0"))))
10471 (build-system r-build-system)
10472 (home-page "http://homepage.meyerp.com/software")
10473 (synopsis "Information-theoretic measures")
10474 (description
10475 "This package implements various measures of information theory based on
10476 several entropy estimators.")
10477 (license license:gpl3+)))
10478
10479 (define-public r-nsprcomp
10480 (package
10481 (name "r-nsprcomp")
10482 (version "0.5.1-2")
10483 (source
10484 (origin
10485 (method url-fetch)
10486 (uri (cran-uri "nsprcomp" version))
10487 (sha256
10488 (base32
10489 "1zlc1ximx96f235c0l8qfs6vbp1kpnbf943wxsfahnnlnxvwi59f"))))
10490 (properties `((upstream-name . "nsprcomp")))
10491 (build-system r-build-system)
10492 (home-page "https://sigg-iten.ch/research/")
10493 (synopsis "Non-negative and sparse PCA")
10494 (description
10495 "This package implements two methods for performing a constrained
10496 principal component analysis (PCA), where non-negativity and/or sparsity
10497 constraints are enforced on the principal axes (PAs). The function
10498 @code{nsprcomp} computes one principal component (PC) after the other. Each
10499 PA is optimized such that the corresponding PC has maximum additional variance
10500 not explained by the previous components. In contrast, the function
10501 @code{nscumcomp} jointly computes all PCs such that the cumulative variance is
10502 maximal. Both functions have the same interface as the @code{prcomp} function
10503 from the @code{stats} package (plus some extra parameters).")
10504 (license license:gpl2+)))
10505
10506 (define-public r-cmplot
10507 (package
10508 (name "r-cmplot")
10509 (version "4.1.0")
10510 (source
10511 (origin
10512 (method url-fetch)
10513 (uri (cran-uri "CMplot" version))
10514 (sha256
10515 (base32
10516 "1h09prpiw7l32mr7jarp8ddrddg1431nfn4kw3bznfnv0sr78zfg"))))
10517 (properties `((upstream-name . "CMplot")))
10518 (build-system r-build-system)
10519 (home-page "https://github.com/YinLiLin/CMplot")
10520 (synopsis "Circle Manhattan plot")
10521 (description
10522 "Circle Manhattan Plot is an R package that can lay out genome-wide
10523 association study P-value results in both traditional rectangular patterns,
10524 QQ-plot and novel circular ones. United in only one bull's eye style plot,
10525 association results from multiple traits can be compared interactively,
10526 thereby to reveal both similarities and differences between signals.
10527 Additional functions include: highlight signals, a group of SNPs, chromosome
10528 visualization and candidate genes around SNPs.")
10529 (license license:gpl2+)))
10530
10531 (define-public r-precrec
10532 (package
10533 (name "r-precrec")
10534 (version "0.12.9")
10535 (source
10536 (origin
10537 (method url-fetch)
10538 (uri (cran-uri "precrec" version))
10539 (sha256
10540 (base32
10541 "1dfz2rqx2ww2l5r40ahg0qdj3rjrwiwh427mw7j5ynhpcj21j2qm"))))
10542 (properties `((upstream-name . "precrec")))
10543 (build-system r-build-system)
10544 (propagated-inputs
10545 (list r-assertthat
10546 r-data-table
10547 r-ggplot2
10548 r-gridextra
10549 r-rcpp
10550 r-withr))
10551 (native-inputs (list r-knitr))
10552 (home-page "https://evalclass.github.io/precrec/")
10553 (synopsis "Calculate accurate precision-recall and ROC curves")
10554 (description
10555 "This package provides tools for accurate calculations and visualization
10556 of precision-recall and ROC (Receiver Operator Characteristics) curves.")
10557 (license license:gpl3)))
10558
10559 (define-public r-netrep
10560 (package
10561 (name "r-netrep")
10562 (version "1.2.4")
10563 (source
10564 (origin
10565 (method url-fetch)
10566 (uri (cran-uri "NetRep" version))
10567 (sha256
10568 (base32
10569 "1swlb2k9bc7whvslxbklz864j9ynvna73hvq5rhv61cv5vy05ksd"))))
10570 (properties `((upstream-name . "NetRep")))
10571 (build-system r-build-system)
10572 (propagated-inputs
10573 (list r-abind
10574 r-bh
10575 r-foreach
10576 r-rcolorbrewer
10577 r-rcpp
10578 r-rcpparmadillo
10579 r-rhpcblasctl
10580 r-statmod))
10581 (native-inputs (list r-knitr))
10582 (home-page "https://cran.r-project.org/package=NetRep")
10583 (synopsis "Permutation testing network module preservation across datasets")
10584 (description
10585 "This package provides functions for assessing the
10586 replication/preservation of a network module's topology across datasets
10587 through permutation testing.")
10588 (license license:gpl2)))
10589
10590 (define-public r-intergraph
10591 (package
10592 (name "r-intergraph")
10593 (version "2.0-2")
10594 (source
10595 (origin
10596 (method url-fetch)
10597 (uri (cran-uri "intergraph" version))
10598 (sha256
10599 (base32
10600 "18a7xgb2rp0w9jl2rkh8nzyjprrs5w7h2iidvc8c38bzx3qpggkc"))))
10601 (properties `((upstream-name . "intergraph")))
10602 (build-system r-build-system)
10603 (propagated-inputs
10604 (list r-igraph r-network))
10605 (native-inputs
10606 (list r-knitr))
10607 (home-page "http://mbojan.github.io/intergraph")
10608 (synopsis "Coercion routines for network data objects")
10609 (description
10610 "Functions implemented in this package allow coercing (i.e. convert)
10611 network data between classes provided by other R packages. Currently
10612 supported classes are those defined in packages @code{network} and
10613 @code{igraph}.")
10614 (license license:gpl3)))
10615
10616 (define-public r-abcoptim
10617 (package
10618 (name "r-abcoptim")
10619 (version "0.15.0")
10620 (source
10621 (origin
10622 (method url-fetch)
10623 (uri (cran-uri "ABCoptim" version))
10624 (sha256
10625 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
10626 (properties `((upstream-name . "ABCoptim")))
10627 (build-system r-build-system)
10628 (propagated-inputs (list r-rcpp))
10629 (home-page "https://github.com/gvegayon/ABCoptim/")
10630 (synopsis "Optimization of Artificial Bee Colony algorithm")
10631 (description
10632 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
10633 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
10634 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
10635 algorithms, and uses only common control parameters such as colony size and
10636 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
10637 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
10638 This version is a work-in-progress and is written in R code.")
10639 (license license:expat)))
10640
10641 (define-public r-abcp2
10642 (package
10643 (name "r-abcp2")
10644 (version "1.2")
10645 (source
10646 (origin
10647 (method url-fetch)
10648 (uri (cran-uri "ABCp2" version))
10649 (sha256
10650 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
10651 (properties `((upstream-name . "ABCp2")))
10652 (build-system r-build-system)
10653 (propagated-inputs (list r-mass))
10654 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
10655 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
10656 (description
10657 "This package tests the goodness of fit of a distribution of offspring to the Normal,
10658 Poisson, and Gamma distribution and estimates the proportional paternity of the
10659 second male (P2) based on the best fit distribution.")
10660 (license license:gpl2)))
10661
10662 (define-public r-abcrf
10663 (package
10664 (name "r-abcrf")
10665 (version "1.8.1")
10666 (source
10667 (origin
10668 (method url-fetch)
10669 (uri (cran-uri "abcrf" version))
10670 (sha256
10671 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
10672 (build-system r-build-system)
10673 (propagated-inputs
10674 (list r-doparallel
10675 r-foreach
10676 r-mass
10677 r-matrixstats
10678 r-ranger
10679 r-rcpp
10680 r-rcpparmadillo
10681 r-readr
10682 r-stringr))
10683 (home-page "https://cran.r-project.org/web/packages/abcrf/")
10684 (synopsis "Approximate bayesian computation via random forests")
10685 (description
10686 "This package performs approximate bayesian computation (ABC) model choice and
10687 parameter inference via random forests. This machine learning tool named random
10688 forests (RF) can conduct selection among the highly complex models covered by
10689 ABC algorithms.")
10690 (license license:gpl2+)))
10691
10692 (define-public r-abctools
10693 (package
10694 (name "r-abctools")
10695 (version "1.1.3")
10696 (source
10697 (origin
10698 (method url-fetch)
10699 (uri (cran-uri "abctools" version))
10700 (sha256
10701 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
10702 (build-system r-build-system)
10703 (propagated-inputs
10704 (list r-abc r-abind r-hmisc r-plyr))
10705 (home-page "https://github.com/dennisprangle/abctools/")
10706 (synopsis "Tools for ABC analyses")
10707 (description
10708 "This @code{r-abctools} package provides tools for approximate Bayesian computation
10709 including summary statistic selection and assessing coverage. This includes
10710 recent dimension reduction algorithms to tune the choice of summary statistics,
10711 and coverage methods to tune the choice of threshold.")
10712 (license license:gpl2+)))
10713
10714 (define-public r-ggstance
10715 (package
10716 (name "r-ggstance")
10717 (version "0.3.5")
10718 (source
10719 (origin
10720 (method url-fetch)
10721 (uri (cran-uri "ggstance" version))
10722 (sha256
10723 (base32 "0jz9vvnmcc6a38n8nzr458r65sna23bgn5r8mxdhzdlyqibihr7d"))))
10724 (build-system r-build-system)
10725 (propagated-inputs
10726 (list r-ggplot2 r-plyr r-rlang r-withr))
10727 (home-page "https://cran.r-project.org/web/packages/ggstance/")
10728 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
10729 (description
10730 "This package is a @code{r-ggplot2} extension that provides flipped components:
10731 @enumerate
10732 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
10733 @item vertical versions of @code{r-ggplot2} positions.
10734 @end enumerate")
10735 (license license:gpl3)))
10736
10737 (define-public r-ggnetwork
10738 (package
10739 (name "r-ggnetwork")
10740 (version "0.5.10")
10741 (source
10742 (origin
10743 (method url-fetch)
10744 (uri (cran-uri "ggnetwork" version))
10745 (sha256
10746 (base32
10747 "0gqdgy5yh700dg0f7xb80hczlnqfisn8l55j7amd1n7fp2x5sr8v"))))
10748 (properties `((upstream-name . "ggnetwork")))
10749 (build-system r-build-system)
10750 (propagated-inputs
10751 (list r-ggplot2 r-ggrepel r-igraph r-network r-sna))
10752 (native-inputs (list r-knitr))
10753 (home-page "https://github.com/briatte/ggnetwork")
10754 (synopsis "Geometries to plot networks with ggplot2")
10755 (description
10756 "This package provides geometries to plot network objects with the
10757 ggplot2 package.")
10758 (license license:gpl3)))
10759
10760 (define-public r-cvauc
10761 (package
10762 (name "r-cvauc")
10763 (version "1.1.4")
10764 (source
10765 (origin
10766 (method url-fetch)
10767 (uri (cran-uri "cvAUC" version))
10768 (sha256
10769 (base32
10770 "1m2y50a1yapf1c74km9a4r47ds2z2bfp4wwwkqin7swv9v1s7d28"))))
10771 (properties `((upstream-name . "cvAUC")))
10772 (build-system r-build-system)
10773 (propagated-inputs
10774 (list r-data-table r-rocr))
10775 (home-page "https://github.com/ledell/cvAUC")
10776 (synopsis "Cross-validated area under the ROC curve confidence intervals")
10777 (description
10778 "This package contains various tools for working with and evaluating
10779 cross-validated area under the ROC curve (AUC) estimators. The primary
10780 functions of the package are @code{ci.cvAUC} and @code{ci.pooled.cvAUC}, which
10781 report cross-validated AUC and compute confidence intervals for
10782 cross-validated AUC estimates based on influence curves for i.i.d. and pooled
10783 repeated measures data, respectively.")
10784 (license license:asl2.0)))
10785
10786 (define-public r-gam
10787 (package
10788 (name "r-gam")
10789 (version "1.20.1")
10790 (source
10791 (origin
10792 (method url-fetch)
10793 (uri (cran-uri "gam" version))
10794 (sha256
10795 (base32
10796 "1bbxiqfgi7jc9vw1hspw5q41d69nlw2v6k91zqlvmam5pvxcd1sp"))))
10797 (properties `((upstream-name . "gam")))
10798 (build-system r-build-system)
10799 (propagated-inputs
10800 (list r-foreach))
10801 (native-inputs
10802 (list gfortran))
10803 (home-page "https://cran.r-project.org/package=gam")
10804 (synopsis "Generalized additive models")
10805 (description
10806 "This package provides functions for fitting and working with generalized
10807 additive models, as described in chapter 7 of \"Statistical Models in
10808 S\" (Chambers and Hastie (eds), 1991), and \"Generalized Additive
10809 Models\" (Hastie and Tibshirani, 1990).")
10810 (license license:gpl2)))
10811
10812 (define-public r-superlearner
10813 (package
10814 (name "r-superlearner")
10815 (version "2.0-28")
10816 (source
10817 (origin
10818 (method url-fetch)
10819 (uri (cran-uri "SuperLearner" version))
10820 (sha256
10821 (base32
10822 "00any24msgflyagy87nznpfjz5g9v15frqda6c679wa8plx26hjz"))))
10823 (properties `((upstream-name . "SuperLearner")))
10824 (build-system r-build-system)
10825 (propagated-inputs
10826 (list r-cvauc r-gam r-nnls))
10827 (native-inputs
10828 (list r-knitr))
10829 (home-page "https://github.com/ecpolley/SuperLearner")
10830 (synopsis "Super learner prediction")
10831 (description
10832 "This package implements the super learner prediction method and contains
10833 a library of prediction algorithms to be used in the super learner.")
10834 (license license:gpl3)))
10835
10836 (define-public r-drtmle
10837 (package
10838 (name "r-drtmle")
10839 (version "1.1.1")
10840 (source
10841 (origin
10842 (method url-fetch)
10843 (uri (cran-uri "drtmle" version))
10844 (sha256
10845 (base32
10846 "12vplpz9bg5444jy29mbdr70hqby073vb3iw76v2csrwy3ws3f21"))))
10847 (properties `((upstream-name . "drtmle")))
10848 (build-system r-build-system)
10849 (propagated-inputs
10850 (list r-future-apply r-np r-superlearner))
10851 (native-inputs
10852 (list r-knitr))
10853 (home-page "https://github.com/benkeser/drtmle")
10854 (synopsis "Doubly-robust nonparametric estimation and inference")
10855 (description
10856 "This package implements targeted minimum loss-based estimators of
10857 counterfactual means and causal effects that are doubly-robust with respect
10858 both to consistency and asymptotic normality.")
10859 (license license:expat)))
10860
10861 (define-public r-dofuture
10862 (package
10863 (name "r-dofuture")
10864 (version "0.12.2")
10865 (source
10866 (origin
10867 (method url-fetch)
10868 (uri (cran-uri "doFuture" version))
10869 (sha256
10870 (base32
10871 "0w07pmzpsfq4kvfc745s1i9b6dfn1df1wrfi4s9ys4ir3g2s8nk1"))))
10872 (properties `((upstream-name . "doFuture")))
10873 (build-system r-build-system)
10874 (arguments
10875 '(#:phases
10876 (modify-phases %standard-phases
10877 (add-after 'unpack 'set-HOME
10878 (lambda _ (setenv "HOME" "/tmp"))))))
10879 (propagated-inputs
10880 (list r-foreach r-future r-globals r-iterators))
10881 (native-inputs
10882 (list r-r-rsp)) ; vignette builder
10883 (home-page "https://github.com/HenrikBengtsson/doFuture")
10884 (synopsis "Foreach parallel adapter using the future API")
10885 (description
10886 "This package provides a @code{%dopar%} adapter such that any type of
10887 futures can be used as backends for the @code{foreach} framework.")
10888 (license license:lgpl2.1+)))
10889
10890 (define-public r-superheat
10891 (package
10892 (name "r-superheat")
10893 (version "0.1.0")
10894 (source
10895 (origin
10896 (method url-fetch)
10897 (uri (cran-uri "superheat" version))
10898 (sha256
10899 (base32
10900 "01v8s6px1k5fajlm6py3ksr1i853kwwlky1yryzhy3p1cxhwgg83"))))
10901 (properties `((upstream-name . "superheat")))
10902 (build-system r-build-system)
10903 (propagated-inputs
10904 (list r-dplyr
10905 r-ggdendro
10906 r-ggplot2
10907 r-gtable
10908 r-magrittr
10909 r-plyr
10910 r-scales))
10911 (home-page "https://cran.r-project.org/package=superheat")
10912 (synopsis "Graphical tool for exploring complex datasets using heatmaps")
10913 (description
10914 "This package provides a system for generating extendable and
10915 customizable heatmaps for exploring complex datasets, including big data and
10916 data with multiple data types.")
10917 (license license:cc0)))
10918
10919 (define-public r-qualv
10920 (package
10921 (name "r-qualv")
10922 (version "0.3-4")
10923 (source
10924 (origin
10925 (method url-fetch)
10926 (uri (cran-uri "qualV" version))
10927 (sha256
10928 (base32
10929 "0rkjzva2h158d5c631jmjjh7qjibbyisl0503san80rk9fgxl45b"))))
10930 (properties `((upstream-name . "qualV")))
10931 (build-system r-build-system)
10932 (propagated-inputs
10933 (list r-kernsmooth))
10934 (home-page "http://qualV.R-Forge.R-Project.org/")
10935 (synopsis "Qualitative Validation Methods")
10936 (description
10937 "This package provides qualitative methods for the validation of dynamic
10938 models. It contains
10939
10940 @enumerate
10941 @item an orthogonal set of deviance measures for absolute, relative and
10942 ordinal scale and
10943 @item approaches accounting for time shifts.
10944 @end enumerate
10945
10946 The first approach transforms time to take time delays and speed differences
10947 into account. The second divides the time series into interval units
10948 according to their main features and finds the @dfn{longest common
10949 subsequence} (LCS) using a dynamic programming algorithm.")
10950 (license license:gpl2+)))
10951
10952 (define-public r-mosaiccore
10953 (package
10954 (name "r-mosaiccore")
10955 (version "0.9.0")
10956 (source
10957 (origin
10958 (method url-fetch)
10959 (uri (cran-uri "mosaicCore" version))
10960 (sha256
10961 (base32 "1h3ixzna4xy42rdnd89jj0v9q0riy3fnkd33z6l5c0zaidzm58fz"))))
10962 (properties `((upstream-name . "mosaicCore")))
10963 (build-system r-build-system)
10964 (propagated-inputs
10965 (list r-dplyr r-mass r-rlang r-tidyr))
10966 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
10967 (synopsis "Common utilities for mosaic family packages")
10968 (description
10969 "Common utilities used in other Mosaic family packages are collected here.")
10970 (license license:gpl2+)))
10971
10972 (define-public r-labelled
10973 (package
10974 (name "r-labelled")
10975 (version "2.9.1")
10976 (source
10977 (origin
10978 (method url-fetch)
10979 (uri (cran-uri "labelled" version))
10980 (sha256
10981 (base32
10982 "0h7scbyzh7kr51gds222rkhld2b3k36s86hj8rrzpwv4bwj0pccy"))))
10983 (properties `((upstream-name . "labelled")))
10984 (build-system r-build-system)
10985 (propagated-inputs
10986 (list r-dplyr
10987 r-haven
10988 r-lifecycle
10989 r-rlang
10990 r-stringr
10991 r-tidyr
10992 r-vctrs))
10993 (native-inputs
10994 (list r-knitr))
10995 (home-page "http://larmarange.github.io/labelled/")
10996 (synopsis "Manipulating labelled data")
10997 (description
10998 "This package provides useful functions to deal with the
10999 @code{haven_labelled} and @code{haven_labelled_spss} classes introduced by the
11000 haven package.")
11001 (license license:gpl3)))
11002
11003 (define-public r-ggformula
11004 (package
11005 (name "r-ggformula")
11006 (version "0.10.1")
11007 (source
11008 (origin
11009 (method url-fetch)
11010 (uri (cran-uri "ggformula" version))
11011 (sha256
11012 (base32 "1ph5jd8svk8hmshi894vmmpq3zwgdmf4yn3gmdlkad68z8jynhsp"))))
11013 (build-system r-build-system)
11014 (propagated-inputs
11015 (list r-ggforce
11016 r-ggplot2
11017 r-ggridges
11018 r-ggstance
11019 r-labelled
11020 r-magrittr
11021 r-mosaiccore
11022 r-rlang
11023 r-scales
11024 r-stringr
11025 r-tibble))
11026 (native-inputs
11027 (list r-knitr))
11028 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
11029 (synopsis "Formula interface for the @code{r-ggplot2}")
11030 (description
11031 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
11032 gf_density(), and so on, bring the formula interface to ggplot(). This captures
11033 and extends the excellent simplicity of the lattice-graphics formula interface,
11034 while providing the intuitive capabilities of @code{r-ggplot2}.")
11035 (license license:expat)))
11036
11037 (define-public r-mosaicdata
11038 (package
11039 (name "r-mosaicdata")
11040 (version "0.20.2")
11041 (source
11042 (origin
11043 (method url-fetch)
11044 (uri (cran-uri "mosaicData" version))
11045 (sha256
11046 (base32 "0h3f5fgzkzjfgf3ml0qa5j52921y6wy6jgggxmhs31bs8fd4srg4"))))
11047 (properties `((upstream-name . "mosaicData")))
11048 (build-system r-build-system)
11049 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
11050 (synopsis "Data sets for project Mosaic")
11051 (description
11052 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
11053 used to teach mathematics, statistics, computation and modeling.")
11054 (license license:gpl2+)))
11055
11056 (define-public r-raster
11057 (package
11058 (name "r-raster")
11059 (version "3.5-15")
11060 (source
11061 (origin
11062 (method url-fetch)
11063 (uri (cran-uri "raster" version))
11064 (sha256
11065 (base32
11066 "11fnznymwavpph733dayklhcx4phpjgrijfxlaszi122sg2x7ir9"))))
11067 (build-system r-build-system)
11068 (propagated-inputs
11069 (list r-rcpp r-sp r-terra))
11070 (home-page "https://www.rspatial.org/")
11071 (synopsis "Geographic data analysis and modeling")
11072 (description
11073 "The package implements basic and high-level functions for reading,
11074 writing, manipulating, analyzing and modeling of gridded spatial data.
11075 Processing of very large files is supported.")
11076 (license license:gpl3+)))
11077
11078 (define-public r-mosaic
11079 (package
11080 (name "r-mosaic")
11081 (version "1.8.3")
11082 (source
11083 (origin
11084 (method url-fetch)
11085 (uri (cran-uri "mosaic" version))
11086 (sha256
11087 (base32 "1y0isqbva0vi5zlx1xvixbq87n4xp66ljh43qnd0cpzaz0mn21cg"))))
11088 (build-system r-build-system)
11089 (propagated-inputs
11090 (list r-broom
11091 r-dplyr
11092 r-ggdendro
11093 r-ggformula
11094 r-ggplot2
11095 r-ggrepel
11096 r-ggridges
11097 r-ggstance
11098 r-glue
11099 r-gridextra
11100 r-lattice
11101 r-latticeextra
11102 r-leaflet
11103 r-mass
11104 r-matrix
11105 r-mosaiccore
11106 r-mosaicdata
11107 r-readr
11108 r-rlang
11109 r-tidyr))
11110 (native-inputs
11111 (list r-knitr))
11112 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
11113 (synopsis "Mathematics, statistics, and computation teaching utilities")
11114 (description
11115 "This package contain data sets and utilities from
11116 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
11117 statistics, computation and modeling. Project MOSAIC is a community of
11118 educators working to tie together aspects of quantitative work that students
11119 in science, technology, engineering and mathematics will need in their
11120 professional lives, but which are usually taught in isolation, if at all.")
11121 (license license:gpl2+)))
11122
11123 (define-public r-abd
11124 (package
11125 (name "r-abd")
11126 (version "0.2-8")
11127 (source
11128 (origin
11129 (method url-fetch)
11130 (uri (cran-uri "abd" version))
11131 (sha256
11132 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
11133 (build-system r-build-system)
11134 (propagated-inputs
11135 (list r-lattice r-mosaic r-nlme))
11136 (home-page "https://cran.r-project.org/web/packages/abd/")
11137 (synopsis "Analysis of biological data")
11138 (description
11139 "The @code{r-abd} package contains data sets and sample code for the Analysis of
11140 biological data by Michael Whitlock and Dolph Schluter.")
11141 (license license:gpl2)))
11142
11143 (define-public r-svgui
11144 (package
11145 (name "r-svgui")
11146 (version "1.0.1")
11147 (source
11148 (origin
11149 (method url-fetch)
11150 (uri (cran-uri "svGUI" version))
11151 (sha256
11152 (base32 "0ch5gdfk834xj9w3vxpm3x4770fz3nnlyn8b0jsw9f3n2as7g979"))))
11153 (properties `((upstream-name . "svGUI")))
11154 (build-system r-build-system)
11155 (native-inputs
11156 (list r-knitr))
11157 (home-page "https://github.com/SciViews/svGUI/")
11158 (synopsis "Functions for managing GUI clients in R")
11159 (description
11160 "The SciViews @code{svGUI} package eases the management of Graphical User
11161 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
11162 centralizes info about GUI elements currently used, and it dispatches GUI
11163 calls to the particular toolkits in use in function of the context.")
11164 (license license:gpl2)))
11165
11166 (define-public r-svdialogs
11167 (package
11168 (name "r-svdialogs")
11169 (version "1.1.0")
11170 (source
11171 (origin
11172 (method url-fetch)
11173 (uri (cran-uri "svDialogs" version))
11174 (sha256
11175 (base32 "0z3a5glsi0ab43mdk2yvslxyzg12nbqqqc35jvgzj475mpkbgjif"))))
11176 (properties `((upstream-name . "svDialogs")))
11177 (build-system r-build-system)
11178 (inputs
11179 (list yad zenity))
11180 (propagated-inputs
11181 (list r-rstudioapi r-svgui))
11182 (native-inputs
11183 (list r-knitr))
11184 (home-page "https://github.com/SciViews/svDialogs/")
11185 (synopsis "Portable dialog boxes")
11186 (description
11187 "This package helps to construct standard dialog boxes for your GUI, including
11188 message boxes, input boxes, list, file or directory selection, and others. In
11189 case R cannot display GUI dialog boxes, a simpler command line version of these
11190 interactive elements is also provided as a fallback solution.")
11191 (license license:gpl2)))
11192
11193 (define-public r-abe
11194 (package
11195 (name "r-abe")
11196 (version "3.0.1")
11197 (source
11198 (origin
11199 (method url-fetch)
11200 (uri (cran-uri "abe" version))
11201 (sha256
11202 (base32
11203 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
11204 (build-system r-build-system)
11205 (home-page "https://cran.r-project.org/web/packages/abe/")
11206 (synopsis "Augmented backward elimination")
11207 (description
11208 "This package performs augmented backward elimination and checks the
11209 stability of the obtained model. Augmented backward elimination combines
11210 significance or information based criteria with the change in estimate to
11211 either select the optimal model for prediction purposes or to serve as a tool
11212 to obtain a practically sound, highly interpretable model.")
11213 (license license:gpl2+)))
11214
11215 (define-public r-abf2
11216 (package
11217 (name "r-abf2")
11218 (version "0.7-1")
11219 (source
11220 (origin
11221 (method url-fetch)
11222 (uri (cran-uri "abf2" version))
11223 (sha256
11224 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
11225 (build-system r-build-system)
11226 (home-page "https://cran.r-project.org/web/packages/abf2/")
11227 (synopsis "Load gap-free axon @code{r-abf2} files")
11228 (description
11229 "This package loads electrophysiology data from ABF2 files, as created by
11230 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
11231 mode are currently supported.")
11232 (license license:artistic2.0)))
11233
11234 (define-public r-abhgenotyper
11235 (package
11236 (name "r-abhgenotyper")
11237 (version "1.0.1")
11238 (source
11239 (origin
11240 (method url-fetch)
11241 (uri (cran-uri "ABHgenotypeR" version))
11242 (sha256
11243 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
11244 (properties `((upstream-name . "ABHgenotypeR")))
11245 (build-system r-build-system)
11246 (propagated-inputs
11247 (list r-ggplot2 r-reshape2))
11248 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
11249 (synopsis "Visualize and manipulate ABH genotypes")
11250 (description
11251 "The @code{r-abhgenotyper} package provides simple imputation,
11252 error-correction and plotting capacities for genotype data. The package is
11253 supposed to serve as an intermediate but independent analysis tool between the
11254 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
11255 not found in either TASSEL or @code{r-qtl} in addition to visualization of
11256 genotypes as \"graphical genotypes\".")
11257 (license license:gpl3)))
11258
11259 (define-public r-furrr
11260 (package
11261 (name "r-furrr")
11262 (version "0.3.0")
11263 (source
11264 (origin
11265 (method url-fetch)
11266 (uri (cran-uri "furrr" version))
11267 (sha256
11268 (base32
11269 "117xj66l14r08macwghgyibzm282ljv1afpa133h952gc70irs9z"))))
11270 (build-system r-build-system)
11271 (propagated-inputs
11272 (list r-future
11273 r-globals
11274 r-lifecycle
11275 r-purrr
11276 r-rlang
11277 r-vctrs))
11278 (home-page "https://github.com/DavisVaughan/furrr")
11279 (synopsis "Apply mapping functions in parallel using futures")
11280 (description
11281 "This package provides implementations of the family of @code{map()}
11282 functions from the @code{purrr} package that can be resolved using any
11283 @code{future}-supported backend, e.g. parallel on the local machine or
11284 distributed on a compute cluster.")
11285 (license license:lgpl2.1+)))
11286
11287 (define-public r-abjutils
11288 (package
11289 (name "r-abjutils")
11290 (version "0.3.2")
11291 (source
11292 (origin
11293 (method url-fetch)
11294 (uri (cran-uri "abjutils" version))
11295 (sha256
11296 (base32 "0lmf4va8qnzwg698i2h4fcwvd6dhsgdkqsfh41aa3wg1flimhsr7"))))
11297 (build-system r-build-system)
11298 (propagated-inputs
11299 (list r-dplyr
11300 r-magrittr
11301 r-purrr
11302 r-rlang
11303 r-rstudioapi
11304 r-stringi
11305 r-stringr
11306 r-tidyr))
11307 (home-page "https://github.com/abjur/abjutils/")
11308 (synopsis "Collection of tools for jurimetrical analysis")
11309 (description
11310 "This package implements general purpose tools, such as functions for
11311 sampling and basic manipulation of Brazilian lawsuits identification number.
11312 It also implements functions for text cleaning, such as accentuation
11313 removal.")
11314 (license license:expat)))
11315
11316 (define-public r-abnormality
11317 (package
11318 (name "r-abnormality")
11319 (version "0.1.0")
11320 (source
11321 (origin
11322 (method url-fetch)
11323 (uri (cran-uri "abnormality" version))
11324 (sha256
11325 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
11326 (build-system r-build-system)
11327 (propagated-inputs
11328 (list r-mass r-matrix))
11329 (home-page "https://cran.r-project.org/web/packages/abnormality/")
11330 (synopsis "Measure a subject's abnormality with respect to a reference population")
11331 (description
11332 "This package contains functions to implement the methodology and
11333 considerations laid out by Marks et al. in the article \"Measuring abnormality
11334 in high dimensional spaces: applications in biomechanical gait analysis\".
11335 Using high-dimensional datasets to measure a subject's overall level of
11336 abnormality as compared to a reference population is often needed in outcomes
11337 research.")
11338 (license license:expat)))
11339
11340 (define-public r-abodoutlier
11341 (package
11342 (name "r-abodoutlier")
11343 (version "0.1")
11344 (source
11345 (origin
11346 (method url-fetch)
11347 (uri (cran-uri "abodOutlier" version))
11348 (sha256
11349 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
11350 (properties `((upstream-name . "abodOutlier")))
11351 (build-system r-build-system)
11352 (propagated-inputs
11353 (list r-cluster))
11354 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
11355 (synopsis "Angle-based outlier detection")
11356 (description
11357 "This package performs angle-based outlier detection on a given data
11358 frame. It offers three methods to process data:
11359 @enumerate
11360 @item full but slow implementation using all the data that has cubic
11361 complexity;
11362 @item a fully randomized method;
11363 @item a method using k-nearest neighbours.
11364 @end enumerate
11365 These algorithms are well suited for high dimensional data outlier
11366 detection.")
11367 (license license:expat)))
11368
11369 (define-public r-abps
11370 (package
11371 (name "r-abps")
11372 (version "0.3")
11373 (source
11374 (origin
11375 (method url-fetch)
11376 (uri (cran-uri "ABPS" version))
11377 (sha256
11378 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
11379 (properties `((upstream-name . "ABPS")))
11380 (build-system r-build-system)
11381 (propagated-inputs (list r-kernlab))
11382 (home-page "https://cran.r-project.org/web/packages/ABPS/")
11383 (synopsis "Abnormal blood profile score to detect blood doping")
11384 (description
11385 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
11386 The ABPS is a part of the Athlete biological passport program of the World
11387 anti-doping agency, which combines several blood parameters into a single
11388 score in order to detect blood doping. The package also contains functions to
11389 calculate other scores used in anti-doping programs, such as the ratio of
11390 hemoglobin to reticulocytes (OFF-score), as well as example data.")
11391 (license license:gpl2+)))
11392
11393 (define-public r-parmigene
11394 (package
11395 (name "r-parmigene")
11396 (version "1.1.0")
11397 (source
11398 (origin
11399 (method url-fetch)
11400 (uri (cran-uri "parmigene" version))
11401 (sha256
11402 (base32
11403 "067rqxqyzy1fsjj0s1g7af4527whwdhzjzc5b8a8n7683na59ns4"))))
11404 (build-system r-build-system)
11405 (home-page "https://cran.r-project.org/web/packages/parmigene/")
11406 (synopsis "Mutual information estimation for gene network reconstruction")
11407 (description
11408 "This package provides a parallel estimation of the mutual information
11409 based on entropy estimates from k-nearest neighbors distances and algorithms
11410 for the reconstruction of gene regulatory networks.")
11411 (license license:agpl3+)))
11412
11413 (define-public r-pscl
11414 (package
11415 (name "r-pscl")
11416 (version "1.5.5")
11417 (source
11418 (origin
11419 (method url-fetch)
11420 (uri (cran-uri "pscl" version))
11421 (sha256
11422 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
11423 (build-system r-build-system)
11424 (propagated-inputs
11425 (list r-mass))
11426 (home-page "https://github.com/atahk/pscl/")
11427 (synopsis "Political science computational laboratory")
11428 (description
11429 "The @code{pscl} is an R package providing classes and methods for:
11430 @enumerate
11431 @item Bayesian analysis of roll call data (item-response models);
11432 @item elementary Bayesian statistics;
11433 @item maximum likelihood estimation of zero-inflated and hurdle models for count
11434 data;
11435 @item utility functions.
11436 @end enumerate")
11437 (license license:gpl2)))
11438
11439 (define-public r-accelmissing
11440 (package
11441 (name "r-accelmissing")
11442 (version "1.4")
11443 (source
11444 (origin
11445 (method url-fetch)
11446 (uri (cran-uri "accelmissing" version))
11447 (sha256
11448 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
11449 (build-system r-build-system)
11450 (propagated-inputs
11451 (list r-mice r-pscl))
11452 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
11453 (synopsis "Missing value imputation for accelerometer data")
11454 (description
11455 "This package provides a statistical method to impute the missing values in
11456 accelerometer data. The methodology includes both parametric and
11457 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
11458 model. It also provides multiple functions to preprocess the accelerometer data
11459 previous to the missing data imputation. These include detecting the wearing
11460 and the non-wearing time, selecting valid days and subjects, and creating plots.")
11461 (license license:gpl2+)))
11462
11463 (define-public r-mhsmm
11464 (package
11465 (name "r-mhsmm")
11466 (version "0.4.16")
11467 (source
11468 (origin
11469 (method url-fetch)
11470 (uri (cran-uri "mhsmm" version))
11471 (sha256
11472 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
11473 (build-system r-build-system)
11474 (propagated-inputs (list r-mvtnorm))
11475 (home-page "https://github.com/jaredo/mhsmm/")
11476 (synopsis "Inference for hidden Markov and semi-Markov models")
11477 (description
11478 "The @code{r-mhsmm} package implements estimation and prediction methods for
11479 hidden Markov and semi-Markov models for multiple observation sequences. Such
11480 techniques are of interest when observed data is thought to be dependent on some
11481 unobserved (or hidden) state. Also, this package is suitable for equidistant
11482 time series data, with multivariate and/or missing data. Allows user defined
11483 emission distributions.")
11484 (license license:gpl2+)))
11485
11486 (define-public r-nleqslv
11487 (package
11488 (name "r-nleqslv")
11489 (version "3.3.2")
11490 (source
11491 (origin
11492 (method url-fetch)
11493 (uri (cran-uri "nleqslv" version))
11494 (sha256
11495 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
11496 (build-system r-build-system)
11497 (native-inputs (list gfortran))
11498 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
11499 (synopsis "Solve systems of nonlinear equations")
11500 (description
11501 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
11502 Broyden or a Newton method with a choice of global strategies such as line
11503 search and trust region. There are options for using a numerical or user
11504 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
11505 singular or ill-conditioned Jacobian.")
11506 (license license:gpl2+)))
11507
11508 (define-public r-physicalactivity
11509 (package
11510 (name "r-physicalactivity")
11511 (version "0.2-4")
11512 (source
11513 (origin
11514 (method url-fetch)
11515 (uri (cran-uri "PhysicalActivity" version))
11516 (sha256
11517 (base32 "0b27prkv3x6v2afz0y53ccs9scibpc7nj54n0hpd9fgn1wyg4c40"))))
11518 (properties
11519 `((upstream-name . "PhysicalActivity")))
11520 (build-system r-build-system)
11521 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
11522 (synopsis "Processing accelerometer data for physical activity measurement")
11523 (description
11524 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
11525 for classification of monitored wear and nonwear time intervals in accelerometer
11526 data collected to assess physical activity. The package also contains functions
11527 for making plots of accelerometer data and obtaining the summary of various
11528 information including daily monitor wear time and the mean monitor wear time
11529 during valid days. The revised package version 0.2-1 improved the functions
11530 regarding speed, robustness and add better support for time zones and daylight
11531 saving. In addition, several functions were added:
11532 @enumerate
11533 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
11534 @item the @code{markPAI} can categorize physical activity intensity level based
11535 on user-defined cut-points of accelerometer counts.
11536 @end enumerate
11537 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
11538 @code{queryActigraph} functions.")
11539 (license license:gpl3+)))
11540
11541 (define-public r-acc
11542 (package
11543 (name "r-acc")
11544 (version "1.3.3")
11545 (source
11546 (origin
11547 (method url-fetch)
11548 (uri (cran-uri "acc" version))
11549 (sha256
11550 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
11551 (build-system r-build-system)
11552 (propagated-inputs
11553 (list r-circlize
11554 r-dbi
11555 r-ggplot2
11556 r-iterators
11557 r-mhsmm
11558 r-nleqslv
11559 r-physicalactivity
11560 r-plyr
11561 r-r-utils
11562 r-rcpp
11563 r-rcpparmadillo
11564 r-rsqlite
11565 r-zoo))
11566 (home-page "https://cran.r-project.org/web/packages/acc/")
11567 (synopsis "Exploring accelerometer data")
11568 (description
11569 "This package processes accelerometer data from uni-axial and tri-axial devices
11570 and generates data summaries. Also, includes functions to plot, analyze, and
11571 simulate accelerometer data.")
11572 (license license:gpl2+)))
11573
11574 (define-public r-rbenchmark
11575 (package
11576 (name "r-rbenchmark")
11577 (version "1.0.0")
11578 (source
11579 (origin
11580 (method url-fetch)
11581 (uri (cran-uri "rbenchmark" version))
11582 (sha256
11583 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
11584 (build-system r-build-system)
11585 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
11586 (synopsis "Benchmarking routine for R")
11587 (description
11588 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
11589 and is intended to facilitate benchmarking of arbitrary R code. The library
11590 consists of just one function, benchmark, which is a simple wrapper around
11591 system.time. Given a specification of the benchmarking process (counts of
11592 replications, evaluation environment) and an arbitrary number of expressions,
11593 benchmark evaluates each of the expressions in the specified environment,
11594 replicating the evaluation as many times as specified, and returning the results
11595 conveniently wrapped into a data frame.")
11596 (license license:gpl2+)))
11597
11598 (define-public r-mitools
11599 (package
11600 (name "r-mitools")
11601 (version "2.4")
11602 (source
11603 (origin
11604 (method url-fetch)
11605 (uri (cran-uri "mitools" version))
11606 (sha256
11607 (base32
11608 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
11609 (build-system r-build-system)
11610 (propagated-inputs (list r-dbi))
11611 (home-page "https://cran.r-project.org/web/packages/mitools/")
11612 (synopsis "Tools for multiple imputation of missing data")
11613 (description
11614 "This package provides tools to perform analyses and combine results from
11615 multiple-imputation datasets.")
11616 (license license:gpl2)))
11617
11618 (define-public r-mixsqp
11619 (package
11620 (name "r-mixsqp")
11621 (version "0.3-43")
11622 (source (origin
11623 (method url-fetch)
11624 (uri (cran-uri "mixsqp" version))
11625 (sha256
11626 (base32
11627 "1qics04w0swyp216d6g8dmsph8q2kpadpacp66h2qih3521js12q"))))
11628 (properties `((upstream-name . "mixsqp")))
11629 (build-system r-build-system)
11630 (propagated-inputs
11631 (list r-irlba r-rcpp r-rcpparmadillo))
11632 (native-inputs
11633 (list r-knitr))
11634 (home-page "https://github.com/stephenslab/mixsqp")
11635 (synopsis
11636 "Sequential quadratic programming for maximum-likelihood estimation")
11637 (description
11638 "This package provides an optimization method based on sequential
11639 quadratic programming for maximum likelihood estimation of the mixture
11640 proportions in a finite mixture model where the component densities are
11641 known. The algorithm is expected to obtain solutions that are at least
11642 as accurate as the state-of-the-art MOSEK interior-point solver, and they
11643 are expected to arrive at solutions more quickly when the number of
11644 samples is large and the number of mixture components is not too large.")
11645 (license license:expat)))
11646
11647 (define-public r-magick
11648 (package
11649 (name "r-magick")
11650 (version "2.7.3")
11651 (source
11652 (origin
11653 (method url-fetch)
11654 (uri (cran-uri "magick" version))
11655 (sha256
11656 (base32
11657 "0h942bn7wfnzbbgq9hrs75c7igmg5r1c5sad2v0znhza4cp7p1w3"))))
11658 (build-system r-build-system)
11659 (inputs
11660 (list imagemagick zlib))
11661 (propagated-inputs
11662 (list r-curl r-magrittr r-rcpp))
11663 (native-inputs
11664 (list pkg-config r-knitr))
11665 (home-page "https://github.com/ropensci/magick")
11666 (synopsis "Advanced graphics and image-processing in R")
11667 (description
11668 "This package provides bindings to ImageMagick, a comprehensive image
11669 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
11670 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
11671 operations are vectorized via the Magick++ STL meaning they operate either on
11672 a single frame or a series of frames for working with layers, collages, or
11673 animation. In RStudio, images are automatically previewed when printed to the
11674 console, resulting in an interactive editing environment.")
11675 (license license:expat)))
11676
11677 (define-public r-survey
11678 (package
11679 (name "r-survey")
11680 (version "4.1-1")
11681 (source
11682 (origin
11683 (method url-fetch)
11684 (uri (cran-uri "survey" version))
11685 (sha256
11686 (base32
11687 "0ljsszybzri531q6xab04r6zq11vchfs7y0snjzk57m3g0b9ms05"))))
11688 (build-system r-build-system)
11689 (propagated-inputs
11690 (list r-lattice
11691 r-matrix
11692 r-minqa
11693 r-mitools
11694 r-numderiv
11695 r-survival))
11696 (home-page "http://r-survey.r-forge.r-project.org/survey/")
11697 (synopsis "Analysis of complex survey samples")
11698 (description
11699 "This package provides tools for the analysis of complex survey samples.
11700 The provided features include: summary statistics, two-sample tests, rank
11701 tests, generalised linear models, cumulative link models, Cox models,
11702 loglinear models, and general maximum pseudolikelihood estimation for
11703 multistage stratified, cluster-sampled, unequally weighted survey samples;
11704 variances by Taylor series linearisation or replicate weights;
11705 post-stratification, calibration, and raking; two-phase subsampling designs;
11706 graphics; PPS sampling without replacement; principal components, and factor
11707 analysis.")
11708 ;; Either version of the GPL.
11709 (license (list license:gpl2 license:gpl3))))
11710
11711 (define-public r-gee
11712 (package
11713 (name "r-gee")
11714 (version "4.13-22")
11715 (source
11716 (origin
11717 (method url-fetch)
11718 (uri (cran-uri "gee" version))
11719 (sha256
11720 (base32
11721 "1wbwn7bjqz09l6clh43dy3x5qgv9b9wwn7xnfw9fkkrhn6rvc3rw"))))
11722 (properties `((upstream-name . "gee")))
11723 (build-system r-build-system)
11724 (native-inputs
11725 (list gfortran))
11726 (home-page "https://cran.r-project.org/web/packages/gee/")
11727 (synopsis "Generalized estimation equation solver")
11728 (description
11729 "This package provides a solver for generalized estimation equations.")
11730 (license license:gpl2)))
11731
11732 (define-public r-tab
11733 (package
11734 (name "r-tab")
11735 (version "5.1.1")
11736 (source
11737 (origin
11738 (method url-fetch)
11739 (uri (cran-uri "tab" version))
11740 (sha256
11741 (base32
11742 "1kg8c1safi9klkx2mdkmsf5dn9piy4jljwd4ma7g4jz2rwl4jzhv"))))
11743 (properties `((upstream-name . "tab")))
11744 (build-system r-build-system)
11745 (propagated-inputs
11746 (list r-dplyr r-kableextra r-knitr r-mass r-survey))
11747 (native-inputs
11748 (list r-knitr))
11749 (home-page "https://cran.r-project.org/web/packages/tab/")
11750 (synopsis "Create summary tables for statistical reports")
11751 (description
11752 "This package contains functions for creating various types of summary
11753 tables, e.g. comparing characteristics across levels of a categorical variable
11754 and summarizing fitted generalized linear models, generalized estimating
11755 equations, and Cox proportional hazards models. Functions are available to
11756 handle data from simple random samples as well as complex surveys.")
11757 (license license:gpl3+)))
11758
11759 (define-public r-dvmisc
11760 (package
11761 (name "r-dvmisc")
11762 (version "1.1.4")
11763 (source
11764 (origin
11765 (method url-fetch)
11766 (uri (cran-uri "dvmisc" version))
11767 (sha256
11768 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
11769 (build-system r-build-system)
11770 (propagated-inputs
11771 (list r-cubature
11772 r-data-table
11773 r-dplyr
11774 r-ggplot2
11775 r-mass
11776 r-mvtnorm
11777 r-pracma
11778 r-rbenchmark
11779 r-rcpp
11780 r-survey
11781 r-tab))
11782 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
11783 (synopsis "Faster computation of common statistics and miscellaneous functions")
11784 (description
11785 "This package implements faster versions of base R functions (e.g. mean, standard
11786 deviation, covariance, weighted mean), mostly written in C++, along with
11787 miscellaneous functions for various purposes (e.g. create the histogram with
11788 fitted probability density function or probability mass function curve, create
11789 the body mass index groups, assess the linearity assumption in logistic
11790 regression).")
11791 (license license:gpl2)))
11792
11793 (define-public r-accelerometry
11794 (package
11795 (name "r-accelerometry")
11796 (version "3.1.2")
11797 (source
11798 (origin
11799 (method url-fetch)
11800 (uri (cran-uri "accelerometry" version))
11801 (sha256
11802 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
11803 (build-system r-build-system)
11804 (propagated-inputs
11805 (list r-dvmisc r-rcpp))
11806 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
11807 (synopsis "Functions for processing accelerometer data")
11808 (description
11809 "This package provides a collection of functions that perform operations on
11810 time-series accelerometer data, such as identify the non-wear time, flag minutes
11811 that are part of an activity bout, and find the maximum 10-minute average count
11812 value. The functions are generally very flexible, allowing for a variety of
11813 algorithms to be implemented.")
11814 (license license:gpl3)))
11815
11816 (define-public r-absim
11817 (package
11818 (name "r-absim")
11819 (version "0.2.6")
11820 (source
11821 (origin
11822 (method url-fetch)
11823 (uri (cran-uri "AbSim" version))
11824 (sha256
11825 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
11826 (properties `((upstream-name . "AbSim")))
11827 (build-system r-build-system)
11828 (propagated-inputs
11829 (list r-ape r-powerlaw))
11830 (home-page "https://cran.r-project.org/web/packages/AbSim/")
11831 (synopsis "Time resolved simulations of antibody repertoires")
11832 (description
11833 "This package provides simulation methods for the evolution of antibody repertoires.
11834 The heavy and light chain variable region of both human and C57BL/6 mice can
11835 be simulated in a time-dependent fashion. Both single lineages using one set of
11836 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
11837 with an initial V-D-J recombination event, starting the first phylogenetic tree.
11838 Upon completion, the main loop of the algorithm begins, with each iteration
11839 representing one simulated time step. Various mutation events are possible at
11840 each time step, contributing to a diverse final repertoire.")
11841 (license license:gpl2)))
11842
11843 (define-public r-quic
11844 (package
11845 (name "r-quic")
11846 (version "1.1")
11847 (source
11848 (origin
11849 (method url-fetch)
11850 (uri (cran-uri "QUIC" version))
11851 (sha256
11852 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
11853 (properties `((upstream-name . "QUIC")))
11854 (build-system r-build-system)
11855 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
11856 (synopsis "Regularized sparse inverse covariance matrix estimation")
11857 (description
11858 "This package implements the regularized Gaussian maximum likelihood
11859 estimation of the inverse of a covariance matrix. It uses Newton's method and
11860 coordinate descent to solve the regularized inverse covariance matrix
11861 estimation problem.")
11862 ;; The project home page states that the release is under GPLv3 or later.
11863 ;; The CRAN page only says GPL-3.
11864 (license license:gpl3+)))
11865
11866 (define-public r-abundant
11867 (package
11868 (name "r-abundant")
11869 (version "1.2")
11870 (source
11871 (origin
11872 (method url-fetch)
11873 (uri (cran-uri "abundant" version))
11874 (sha256
11875 (base32 "15m3ngj5aipjg961yy5kvdg9xlfcpliw30dq6gchzxabhnfzcipd"))))
11876 (build-system r-build-system)
11877 (propagated-inputs
11878 (list r-glasso))
11879 (home-page "https://cran.r-project.org/web/packages/abundant/")
11880 (synopsis "Abundant regression and high-dimensional principal fitted components")
11881 (description
11882 "This package provides tools to fit and predict with the high-dimensional
11883 principal fitted components model. This model is described by Cook, Forzani,
11884 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
11885 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
11886 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
11887 (license license:gpl2+)))
11888
11889 (define-public r-ac3net
11890 (package
11891 (name "r-ac3net")
11892 (version "1.2.2")
11893 (source
11894 (origin
11895 (method url-fetch)
11896 (uri (cran-uri "Ac3net" version))
11897 (sha256
11898 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
11899 (properties `((upstream-name . "Ac3net")))
11900 (build-system r-build-system)
11901 (propagated-inputs
11902 (list r-data-table))
11903 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
11904 (synopsis "Inferring directional conservative causal core gene networks")
11905 (description "This package infers directional Conservative causal core
11906 (gene) networks (C3NET). This is a version of the algorithm C3NET with
11907 directional network.")
11908 (license license:gpl3+)))
11909
11910 (define-public r-aca
11911 (package
11912 (name "r-aca")
11913 (version "1.1")
11914 (source
11915 (origin
11916 (method url-fetch)
11917 (uri (cran-uri "ACA" version))
11918 (sha256
11919 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
11920 (properties `((upstream-name . "ACA")))
11921 (build-system r-build-system)
11922 (home-page "https://cran.r-project.org/web/packages/ACA/")
11923 (synopsis "Abrupt change-point or aberration detection in point series")
11924 (description
11925 "This package offers an interactive function for the detection of breakpoints in
11926 series.")
11927 ;; Any version of the GPL
11928 (license (list license:gpl2+ license:gpl3+))))
11929
11930 (define-public r-acceptancesampling
11931 (package
11932 (name "r-acceptancesampling")
11933 (version "1.0-8")
11934 (source
11935 (origin
11936 (method url-fetch)
11937 (uri (cran-uri "AcceptanceSampling" version))
11938 (sha256
11939 (base32 "1ja1g0v8qvf7yj81x37wc6i7fkwpc573756jgvazazi8yf1gm12p"))))
11940 (properties
11941 `((upstream-name . "AcceptanceSampling")))
11942 (build-system r-build-system)
11943 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
11944 (synopsis "Creation and evaluation of acceptance sampling plans")
11945 (description
11946 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
11947 acceptance sampling plans. Acceptance sampling is a methodology commonly used
11948 in quality control and improvement. International standards of acceptance
11949 sampling provide sampling plans for specific circumstances. The aim of this
11950 package is to provide an easy-to-use interface to visualize single, double or
11951 multiple sampling plans. In addition, methods have been provided to enable the
11952 user to assess sampling plans against pre-specified levels of performance, as
11953 measured by the probability of acceptance for a given level of quality in the
11954 lot.")
11955 (license license:gpl3+)))
11956
11957 (define-public r-acclma
11958 (package
11959 (name "r-acclma")
11960 (version "1.0")
11961 (source
11962 (origin
11963 (method url-fetch)
11964 (uri (cran-uri "ACCLMA" version))
11965 (sha256
11966 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
11967 (properties `((upstream-name . "ACCLMA")))
11968 (build-system r-build-system)
11969 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
11970 (synopsis "ACC & LMA graph plotting")
11971 (description
11972 "This package contains a function that imports data from a @acronym{CSV,
11973 Comma-Separated Values} file, or uses manually entered data from the format (x,
11974 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
11975 Curve} vs @acronym{LOI, Line of Independence} graph and
11976 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
11977 function is @code{plotLMA} (source file, header) that takes a data set and plots the
11978 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
11979 string) was passed, a manual data entry window is opened. The header parameter
11980 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
11981 a header row or not. The dataset should contain only one independent variable
11982 (x) and one dependent variable (y) and can contain a weight for each
11983 observation.")
11984 (license license:gpl2)))
11985
11986 (define-public r-aspi
11987 (package
11988 (name "r-aspi")
11989 (version "0.2.0")
11990 (source
11991 (origin
11992 (method url-fetch)
11993 (uri (cran-uri "aspi" version))
11994 (sha256
11995 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
11996 (build-system r-build-system)
11997 (home-page
11998 "https://cran.r-project.org/web/packages/aspi/")
11999 (synopsis
12000 "Analysis of symmetry of parasitic infections")
12001 (description
12002 "This package provides tools for the analysis and visualization of bilateral
12003 asymmetry in parasitic infections.")
12004 (license license:gpl3+)))
12005
12006 (define-public r-sandwich
12007 (package
12008 (name "r-sandwich")
12009 (version "3.0-1")
12010 (source
12011 (origin
12012 (method url-fetch)
12013 (uri (cran-uri "sandwich" version))
12014 (sha256
12015 (base32
12016 "12aa5083k3sfrfq1jy3l94wffss9h0rga8j71jy3n8pkhiq4nn7n"))))
12017 (build-system r-build-system)
12018 (propagated-inputs
12019 (list r-zoo))
12020 (home-page "https://cran.r-project.org/web/packages/sandwich/")
12021 (synopsis "Robust Covariance Matrix Estimators")
12022 (description
12023 "This package provides model-robust standard error estimators for
12024 cross-sectional, time series, clustered, panel, and longitudinal data.")
12025 ;; Either version of the license.
12026 (license (list license:gpl2 license:gpl3))))
12027
12028 (define-public r-th-data
12029 (package
12030 (name "r-th-data")
12031 (version "1.1-1")
12032 (source
12033 (origin
12034 (method url-fetch)
12035 (uri (cran-uri "TH.data" version))
12036 (sha256
12037 (base32
12038 "0ynxacnz002bjsp2ybql7rdqw4zd14af8r7w44nwbx22n4bapwzd"))))
12039 (properties `((upstream-name . "TH.data")))
12040 (build-system r-build-system)
12041 (propagated-inputs
12042 (list r-mass r-survival))
12043 (native-inputs
12044 (list r-knitr))
12045 (home-page "https://cran.r-project.org/web/packages/TH.data/")
12046 (synopsis "Shared data sets")
12047 (description
12048 "This package contains supporting data sets that are used in other
12049 packages maintained by Torsten Hothorn.")
12050 (license license:gpl3)))
12051
12052 (define-public r-multcomp
12053 (package
12054 (name "r-multcomp")
12055 (version "1.4-19")
12056 (source
12057 (origin
12058 (method url-fetch)
12059 (uri (cran-uri "multcomp" version))
12060 (sha256
12061 (base32
12062 "0mz5wdqrqpp2gqijfpp9rgfbq8yvxki4is8fbbc4qwdwryqp6d7h"))))
12063 (build-system r-build-system)
12064 (propagated-inputs
12065 (list r-codetools r-mvtnorm r-sandwich r-survival r-th-data))
12066 (home-page "https://cran.r-project.org/web/packages/multcomp/")
12067 (synopsis "Simultaneous inference in general parametric models")
12068 (description
12069 "Simultaneous tests and confidence intervals for general linear
12070 hypotheses in parametric models, including linear, generalized linear, linear
12071 mixed effects, and survival models. The package includes demos reproducing
12072 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
12073 Hothorn, Westfall, 2010, CRC Press).")
12074 (license license:gpl2)))
12075
12076 (define-public r-multcompview
12077 (package
12078 (name "r-multcompview")
12079 (version "0.1-8")
12080 (source
12081 (origin
12082 (method url-fetch)
12083 (uri (cran-uri "multcompView" version))
12084 (sha256
12085 (base32 "1rfq9wvvrghq0542ff40wy8vdmsyd8spzz6ihcywcvxdfa8m6g8j"))))
12086 (properties `((upstream-name . "multcompView")))
12087 (build-system r-build-system)
12088 (home-page "https://cran.r-project.org/package=multcompView")
12089 (synopsis "Visualizations of paired comparisons")
12090 (description
12091 "Convert a logical vector or a vector of p-values or a correlation,
12092 difference, or distance matrix into a display identifying the pairs for which
12093 the differences were not significantly different.")
12094 ;; Any version of the GPL.
12095 (license license:gpl3+)))
12096
12097 (define-public r-emmeans
12098 (package
12099 (name "r-emmeans")
12100 (version "1.7.4-1")
12101 (source
12102 (origin
12103 (method url-fetch)
12104 (uri (cran-uri "emmeans" version))
12105 (sha256
12106 (base32
12107 "08g7ifqhwqa00hc850nwx03dp7isz0281ig6kvixc4xdahmkm8zp"))))
12108 (build-system r-build-system)
12109 (propagated-inputs
12110 (list r-estimability r-mvtnorm r-numderiv r-xtable))
12111 (native-inputs
12112 (list r-knitr))
12113 (home-page "https://github.com/rvlenth/emmeans")
12114 (synopsis "Estimated marginal means, aka least-squares means")
12115 (description
12116 "This package provides tools to obtain @dfn{estimated marginal
12117 means} (EMMs) for many linear, generalized linear, and mixed models. It can
12118 be used to compute contrasts or linear functions of EMMs, trends, and
12119 comparisons of slopes.")
12120 ;; Either version of the license.
12121 (license (list license:gpl2 license:gpl3))))
12122
12123 (define-public r-pwr
12124 (package
12125 (name "r-pwr")
12126 (version "1.3-0")
12127 (source
12128 (origin
12129 (method url-fetch)
12130 (uri (cran-uri "pwr" version))
12131 (sha256
12132 (base32
12133 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
12134 (build-system r-build-system)
12135 (native-inputs
12136 (list r-knitr))
12137 (home-page "https://github.com/heliosdrm/pwr")
12138 (synopsis "Basic functions for power analysis")
12139 (description
12140 "This package provides power analysis functions along the lines of
12141 Cohen (1988).")
12142 (license license:gpl3+)))
12143
12144 (define-public r-libcoin
12145 (package
12146 (name "r-libcoin")
12147 (version "1.0-9")
12148 (source
12149 (origin
12150 (method url-fetch)
12151 (uri (cran-uri "libcoin" version))
12152 (sha256
12153 (base32 "1syrcdj5qg5m3zd3dlxgpfklswbalfg42w058dr09hnzqsvx0z9d"))))
12154 (build-system r-build-system)
12155 (propagated-inputs (list r-mvtnorm))
12156 (home-page "https://cran.r-project.org/web/packages/libcoin")
12157 (synopsis "Linear test statistics for permutation inference")
12158 (description
12159 "This package provides basic infrastructure for linear test statistics
12160 and permutation inference in the framework of Strasser and Weber (1999).")
12161 (license license:gpl2)))
12162
12163 (define-public r-coin
12164 (package
12165 (name "r-coin")
12166 (version "1.4-2")
12167 (source
12168 (origin
12169 (method url-fetch)
12170 (uri (cran-uri "coin" version))
12171 (sha256
12172 (base32
12173 "1cpv7jx840inzg98bkhrb5yscx0gpag6br237r5qpnc2gbrd2ikm"))))
12174 (build-system r-build-system)
12175 (propagated-inputs
12176 (list r-libcoin
12177 r-matrixstats
12178 r-modeltools
12179 r-multcomp
12180 r-mvtnorm
12181 r-survival))
12182 (home-page "http://coin.r-forge.r-project.org")
12183 (synopsis "Conditional inference procedures in a permutation test framework")
12184 (description
12185 "This package provides conditional inference procedures for the general
12186 independence problem including two-sample, K-sample (non-parametric ANOVA),
12187 correlation, censored, ordered and multivariate problems.")
12188 (license license:gpl2)))
12189
12190 (define-public r-bayesplot
12191 (package
12192 (name "r-bayesplot")
12193 (version "1.9.0")
12194 (source
12195 (origin
12196 (method url-fetch)
12197 (uri (cran-uri "bayesplot" version))
12198 (sha256
12199 (base32
12200 "0hqy597ang53phxnl084hak35ffqz9lw9hygax7370gpkjws908a"))))
12201 (build-system r-build-system)
12202 (inputs
12203 (list pandoc))
12204 (native-inputs
12205 (list r-knitr))
12206 (propagated-inputs
12207 (list r-dplyr
12208 r-ggplot2
12209 r-ggridges
12210 r-glue
12211 r-posterior
12212 r-reshape2
12213 r-rlang
12214 r-tibble
12215 r-tidyselect))
12216 (home-page "https://mc-stan.org/bayesplot")
12217 (synopsis "Plotting for Bayesian models")
12218 (description
12219 "This package provides plotting functions for posterior analysis, model
12220 checking, and MCMC diagnostics. The package is designed not only to provide
12221 convenient functionality for users, but also a common set of functions that
12222 can be easily used by developers working on a variety of R packages for
12223 Bayesian modeling.")
12224 (license license:gpl3+)))
12225
12226 (define-public r-tmb
12227 (package
12228 (name "r-tmb")
12229 (version "1.9.0")
12230 (source
12231 (origin
12232 (method url-fetch)
12233 (uri (cran-uri "TMB" version))
12234 (sha256
12235 (base32
12236 "1mr5vwamw6ag1fhd83jyy6015296908qwshwq0fcphhiv60x579c"))))
12237 (properties `((upstream-name . "TMB")))
12238 (build-system r-build-system)
12239 (propagated-inputs
12240 (list r-matrix r-rcppeigen))
12241 (home-page "http://tmb-project.org")
12242 (synopsis "Template model builder: a general random effect tool")
12243 (description
12244 "With this tool, a user should be able to quickly implement complex
12245 random effect models through simple C++ templates. The package combines
12246 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
12247 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
12248 from R) to obtain an efficient implementation of the applied Laplace
12249 approximation with exact derivatives. Key features are: Automatic sparseness
12250 detection, parallelism through BLAS and parallel user templates.")
12251 (license license:gpl2)))
12252
12253 (define-public r-sjstats
12254 (package
12255 (name "r-sjstats")
12256 (version "0.18.1")
12257 (source
12258 (origin
12259 (method url-fetch)
12260 (uri (cran-uri "sjstats" version))
12261 (sha256
12262 (base32 "1cv80yjnyh6qihxf57zivihhia20gibr5f03x8aspy6382wnwlka"))))
12263 (build-system r-build-system)
12264 (propagated-inputs
12265 (list r-bayestestr
12266 r-broom
12267 r-dplyr
12268 r-effectsize
12269 r-emmeans
12270 r-insight
12271 r-lme4
12272 r-magrittr
12273 r-mass
12274 r-modelr
12275 r-parameters
12276 r-performance
12277 r-purrr
12278 r-rlang
12279 r-sjlabelled
12280 r-sjmisc
12281 r-tidyr))
12282 (home-page "https://github.com/strengejacke/sjstats")
12283 (synopsis "Functions for common statistical computations")
12284 (description
12285 "This package provides a collection of convenient functions for common
12286 statistical computations, which are not directly provided by R's @code{base}
12287 or @code{stats} packages. This package aims at providing, first, shortcuts
12288 for statistical measures, which otherwise could only be calculated with
12289 additional effort. Second, these shortcut functions are generic, and can be
12290 applied not only to vectors, but also to other objects as well. The focus of
12291 most functions lies on summary statistics or fit measures for regression
12292 models, including generalized linear models, mixed effects models and Bayesian
12293 models.")
12294 (license license:gpl3)))
12295
12296 (define-public r-glmmtmb
12297 (package
12298 (name "r-glmmtmb")
12299 (version "1.1.3")
12300 (source
12301 (origin
12302 (method url-fetch)
12303 (uri (cran-uri "glmmTMB" version))
12304 (sha256
12305 (base32
12306 "0xdjc3gx0cj098rrjzlsy9cccxzfvn029xh4ycpya4xjhxsykldr"))))
12307 (properties `((upstream-name . "glmmTMB")))
12308 (build-system r-build-system)
12309 (propagated-inputs
12310 (list r-lme4
12311 r-matrix
12312 r-nlme
12313 r-numderiv
12314 r-rcppeigen
12315 r-tmb))
12316 (native-inputs
12317 (list r-knitr r-rmarkdown)) ; for vignettes
12318 (home-page "https://github.com/glmmTMB")
12319 (synopsis "Generalized linear mixed models")
12320 (description
12321 "Fit linear and generalized linear mixed models with various extensions,
12322 including zero-inflation. The models are fitted using maximum likelihood
12323 estimation via the Template Model Builder. Random effects are assumed to be
12324 Gaussian on the scale of the linear predictor and are integrated out using the
12325 Laplace approximation. Gradients are calculated using automatic
12326 differentiation.")
12327 (license license:agpl3+)))
12328
12329 (define-public r-bayestestr
12330 (package
12331 (name "r-bayestestr")
12332 (version "0.12.1")
12333 (source
12334 (origin
12335 (method url-fetch)
12336 (uri (cran-uri "bayestestR" version))
12337 (sha256
12338 (base32
12339 "1fbkpagc5zznrafy7h68nhx43a1yg4v7242pbqjkd0h2481c101z"))))
12340 (properties `((upstream-name . "bayestestR")))
12341 (build-system r-build-system)
12342 (propagated-inputs
12343 (list r-datawizard r-insight))
12344 (native-inputs
12345 (list r-knitr))
12346 (home-page "https://github.com/easystats/bayestestR")
12347 (synopsis "Describe Bayesian models and posterior distributions")
12348 (description
12349 "This package provides utilities to understand and describe posterior
12350 distributions and Bayesian models. It includes point-estimates such as
12351 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
12352 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
12353 ROPE percentage and pd).")
12354 (license license:gpl3)))
12355
12356 (define-public r-performance
12357 (package
12358 (name "r-performance")
12359 (version "0.9.0")
12360 (source
12361 (origin
12362 (method url-fetch)
12363 (uri (cran-uri "performance" version))
12364 (sha256
12365 (base32
12366 "1znr4i1pjv6z3lj6qrma2i3l94rz1z29w92mrxxfy3ch0s71crww"))))
12367 (build-system r-build-system)
12368 (propagated-inputs
12369 (list r-bayestestr r-datawizard r-insight))
12370 (home-page "https://easystats.github.io/performance/")
12371 (synopsis "Assessment of regression models performance")
12372 (description
12373 "This package provides utilities for computing measures to assess model
12374 quality, which are not directly provided by R's @code{base} or @code{stats}
12375 packages. These include e.g. measures like r-squared, intraclass correlation
12376 coefficient, root mean squared error or functions to check models for
12377 overdispersion, singularity or zero-inflation and more. Functions apply to a
12378 large variety of regression models, including generalized linear models, mixed
12379 effects models and Bayesian models.")
12380 (license license:gpl3)))
12381
12382 (define-public r-ggeffects
12383 (package
12384 (name "r-ggeffects")
12385 (version "1.1.2")
12386 (source
12387 (origin
12388 (method url-fetch)
12389 (uri (cran-uri "ggeffects" version))
12390 (sha256
12391 (base32
12392 "01yyfw7fkbxrp0gpwni5y8m4w9l3xckwc3crnvy1fqs1d6gwx3xx"))))
12393 (build-system r-build-system)
12394 (propagated-inputs
12395 (list r-insight r-mass r-sjlabelled))
12396 (native-inputs
12397 (list r-knitr))
12398 (home-page "https://github.com/strengejacke/ggeffects")
12399 (synopsis "Create tidy data frames of marginal effects for ggplot")
12400 (description
12401 "This package provides tools to compute marginal effects from statistical
12402 models and return the result as tidy data frames. These data frames are ready
12403 to use with the @code{ggplot2} package. Marginal effects can be calculated
12404 for many different models. Interaction terms, splines and polynomial terms
12405 are also supported. The two main functions are @code{ggpredict()} and
12406 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
12407 results using @code{ggplot2}.")
12408 (license license:gpl3)))
12409
12410 (define-public r-effectsize
12411 (package
12412 (name "r-effectsize")
12413 (version "0.7.0")
12414 (source
12415 (origin
12416 (method url-fetch)
12417 (uri (cran-uri "effectsize" version))
12418 (sha256
12419 (base32
12420 "07dbj7n9vwjkb7xrdj224lzc3ppr3jjdgyyilkj7gpkvgjgfrqhz"))))
12421 (properties `((upstream-name . "effectsize")))
12422 (build-system r-build-system)
12423 (propagated-inputs
12424 (list r-bayestestr r-datawizard r-insight r-parameters
12425 r-performance))
12426 (native-inputs
12427 (list r-knitr))
12428 (home-page "https://github.com/easystats/effectsize")
12429 (synopsis "Indices of effect size and standardized parameters")
12430 (description
12431 "This package provides utilities to work with indices of effect size and
12432 standardized parameters for a wide variety of models, allowing computation and
12433 conversion of indices such as Cohen's d, r, odds, etc.")
12434 (license license:gpl3)))
12435
12436 (define-public r-sjplot
12437 (package
12438 (name "r-sjplot")
12439 (version "2.8.10")
12440 (source
12441 (origin
12442 (method url-fetch)
12443 (uri (cran-uri "sjPlot" version))
12444 (sha256
12445 (base32 "1rnwhh271xj8xgvvlpqw9ain56mfz37fvl7f6jq9nzx9jxx95bjd"))))
12446 (properties `((upstream-name . "sjPlot")))
12447 (build-system r-build-system)
12448 (propagated-inputs
12449 (list r-bayestestr
12450 r-datawizard
12451 r-dplyr
12452 r-effectsize
12453 r-ggeffects
12454 r-ggplot2
12455 r-insight
12456 r-knitr
12457 r-mass
12458 r-parameters
12459 r-performance
12460 r-purrr
12461 r-rlang
12462 r-scales
12463 r-sjlabelled
12464 r-sjmisc
12465 r-sjstats
12466 r-tidyr))
12467 (native-inputs
12468 (list r-knitr))
12469 (home-page "https://strengejacke.github.io/sjPlot/")
12470 (synopsis "Data visualization for statistics in social science")
12471 (description
12472 "This package represents a collection of plotting and table output
12473 functions for data visualization. Results of various statistical
12474 analyses (that are commonly used in social sciences) can be visualized using
12475 this package, including simple and cross tabulated frequencies, histograms,
12476 box plots, (generalized) linear models, mixed effects models, principal
12477 component analysis and correlation matrices, cluster analyses, scatter plots,
12478 stacked scales, effects plots of regression models (including interaction
12479 terms) and much more. This package supports labelled data.")
12480 (license license:gpl3)))
12481
12482 (define-public r-ini
12483 (package
12484 (name "r-ini")
12485 (version "0.3.1")
12486 (source
12487 (origin
12488 (method url-fetch)
12489 (uri (cran-uri "ini" version))
12490 (sha256
12491 (base32
12492 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
12493 (build-system r-build-system)
12494 (home-page "https://github.com/dvdscripter/ini")
12495 (synopsis "Read and write configuration files")
12496 (description
12497 "This package provides tools to parse simple @code{.ini} configuration
12498 files to an structured list. Users can manipulate this resulting list with
12499 @code{lapply()} functions. This same structured list can be used to write
12500 back to file after modifications.")
12501 (license license:gpl3)))
12502
12503 (define-public r-gillespiessa2
12504 (package
12505 (name "r-gillespiessa2")
12506 (version "0.2.8")
12507 (source
12508 (origin
12509 (method url-fetch)
12510 (uri (cran-uri "GillespieSSA2" version))
12511 (sha256
12512 (base32 "03ym8qx5yc1a6j9l973lc0rjzs8hiax8fq13j7m1fcb1pvnbvar5"))))
12513 (properties `((upstream-name . "GillespieSSA2")))
12514 (build-system r-build-system)
12515 (propagated-inputs
12516 (list r-assertthat
12517 r-dplyr
12518 r-dynutils
12519 r-matrix
12520 r-purrr
12521 r-rcpp
12522 r-rcppxptrutils
12523 r-readr
12524 r-rlang
12525 r-stringr
12526 r-tidyr))
12527 (native-inputs (list r-knitr))
12528 (home-page "https://github.com/rcannood/GillespieSSA2")
12529 (synopsis "Gillespie's stochastic simulation algorithm")
12530 (description
12531 "This package provides a fast, scalable, and versatile framework for
12532 simulating large systems with Gillespie's @dfn{Stochastic Simulation
12533 Algorithm} (SSA). This package is the spiritual successor to the GillespieSSA
12534 package. Benefits of this package include major speed improvements (>100x),
12535 easier to understand documentation, and many unit tests that try to ensure the
12536 package works as intended.")
12537 (license license:gpl3+)))
12538
12539 (define-public r-gitcreds
12540 (package
12541 (name "r-gitcreds")
12542 (version "0.1.1")
12543 (source
12544 (origin
12545 (method url-fetch)
12546 (uri (cran-uri "gitcreds" version))
12547 (sha256
12548 (base32
12549 "1snzn7nxy0rwz0bzjsg6k04c0n811dgn8gn9cmn2v78aj57ayjmi"))))
12550 (properties `((upstream-name . "gitcreds")))
12551 (build-system r-build-system)
12552 (inputs (list git-minimal))
12553 (native-inputs (list r-knitr))
12554 (home-page "https://github.com/r-lib/gitcreds")
12555 (synopsis "Query git credentials from R")
12556 (description
12557 "Query, set, and delete credentials from the git credential store.
12558 Manage GitHub tokens and other git credentials. This package is to be used by
12559 other packages that need to authenticate to GitHub and/or other git
12560 repositories.")
12561 (license license:expat)))
12562
12563 (define-public r-gh
12564 (package
12565 (name "r-gh")
12566 (version "1.3.0")
12567 (source
12568 (origin
12569 (method url-fetch)
12570 (uri (cran-uri "gh" version))
12571 (sha256
12572 (base32
12573 "077drbxz3rx7idv6w24ipj1p6jnzv86a3iyryab699cc9q2kjh54"))))
12574 (build-system r-build-system)
12575 (propagated-inputs
12576 (list r-cli r-gitcreds r-httr r-ini r-jsonlite))
12577 (native-inputs
12578 (list r-knitr))
12579 (home-page "https://github.com/r-lib/gh#readme")
12580 (synopsis "Access the GitHub API via R")
12581 (description
12582 "This package provides a minimal R client to access the GitHub API.")
12583 (license license:expat)))
12584
12585 (define-public r-fs
12586 (package
12587 (name "r-fs")
12588 (version "1.5.2")
12589 (source
12590 (origin
12591 (method url-fetch)
12592 (uri (cran-uri "fs" version))
12593 (sha256
12594 (base32
12595 "11qr3v0xn65vfhgcxl4l6yv48s4w0w3ldp3anpzc25vd3mwd3jim"))))
12596 (build-system r-build-system)
12597 (native-inputs
12598 (list r-knitr))
12599 (home-page "https://fs.r-lib.org")
12600 (synopsis "Cross-platform file system operations based on libuv")
12601 (description
12602 "This package provides a cross-platform interface to file system
12603 operations, built on top of the libuv C library.")
12604 (license license:gpl3)))
12605
12606 (define-public r-clisymbols
12607 (package
12608 (name "r-clisymbols")
12609 (version "1.2.0")
12610 (source
12611 (origin
12612 (method url-fetch)
12613 (uri (cran-uri "clisymbols" version))
12614 (sha256
12615 (base32
12616 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
12617 (build-system r-build-system)
12618 (home-page "https://github.com/gaborcsardi/clisymbols")
12619 (synopsis "Unicode symbols at the R prompt")
12620 (description
12621 "This package provides a small subset of Unicode symbols, that are useful
12622 when building command line applications. They fall back to alternatives on
12623 terminals that do not support Unicode.")
12624 (license license:expat)))
12625
12626 (define-public r-credentials
12627 (package
12628 (name "r-credentials")
12629 (version "1.3.2")
12630 (source
12631 (origin
12632 (method url-fetch)
12633 (uri (cran-uri "credentials" version))
12634 (sha256
12635 (base32
12636 "1f18j3zrq8c9kah57xwahmmljsjg5qphlgamvx507ynvpq8pryig"))))
12637 (properties `((upstream-name . "credentials")))
12638 (build-system r-build-system)
12639 (arguments
12640 `(#:phases
12641 (modify-phases %standard-phases
12642 (add-after 'unpack 'setenv-HOME
12643 (lambda _
12644 ;; This is necessary because git looks for $HOME/.gitconfig
12645 (setenv "HOME" "/tmp"))))))
12646 (inputs
12647 (list git-minimal))
12648 (propagated-inputs
12649 (list r-askpass r-curl r-jsonlite r-openssl r-sys))
12650 (native-inputs
12651 (list r-knitr))
12652 (home-page "https://docs.ropensci.org/credentials/")
12653 (synopsis "Tools for managing SSH and Git credentials")
12654 (description
12655 "This package assists you in setting up and retrieving of HTTPS and SSH
12656 credentials for use with git and other services. For HTTPS remotes the
12657 package interfaces the @command{git-credential} utility which @command{git}
12658 uses to store HTTP usernames and passwords. For SSH remotes this package
12659 provides convenient functions to find or generate appropriate SSH keys. The
12660 package both helps the user to setup a local git installation, and also
12661 provides a back-end for git/ssh client libraries to authenticate with existing
12662 user credentials.")
12663 (license license:expat)))
12664
12665 (define-public r-gert
12666 (package
12667 (name "r-gert")
12668 (version "1.6.0")
12669 (source
12670 (origin
12671 (method url-fetch)
12672 (uri (cran-uri "gert" version))
12673 (sha256
12674 (base32
12675 "0r19vi77yyjw5gbhgjibdysjlszlw2095v14f6sv675zpbp0li4c"))))
12676 (properties `((upstream-name . "gert")))
12677 (build-system r-build-system)
12678 (inputs
12679 (list libgit2 zlib))
12680 (propagated-inputs
12681 (list r-askpass
12682 r-credentials
12683 r-openssl
12684 r-rstudioapi
12685 r-sys
12686 r-zip))
12687 (native-inputs
12688 (list pkg-config r-knitr))
12689 (home-page "https://docs.ropensci.org/gert/")
12690 (synopsis "Simple Git client for R")
12691 (description
12692 "This package provides a simple git client for R based on libgit2 with
12693 support for SSH and HTTPS remotes. All functions in gert use basic R data
12694 types (such as vectors and data-frames) for their arguments and return values.
12695 User credentials are shared with command line git through the
12696 @code{git-credential} store and SSH keys stored on disk or ssh-agent.")
12697 (license license:expat)))
12698
12699 (define-public r-usethis
12700 (package
12701 (name "r-usethis")
12702 (version "2.1.6")
12703 (source
12704 (origin
12705 (method url-fetch)
12706 (uri (cran-uri "usethis" version))
12707 (sha256
12708 (base32
12709 "0638dzl4nm4c36990sf2biy74hjr2fzlqzfb98fsqrbhaw3ngp1i"))))
12710 (build-system r-build-system)
12711 (propagated-inputs
12712 (list r-cli
12713 r-clipr
12714 r-crayon
12715 r-curl
12716 r-desc
12717 r-fs
12718 r-gert
12719 r-gh
12720 r-glue
12721 r-jsonlite
12722 r-lifecycle
12723 r-purrr
12724 r-rappdirs
12725 r-rlang
12726 r-rprojroot
12727 r-rstudioapi
12728 r-whisker
12729 r-withr
12730 r-yaml))
12731 (home-page "https://github.com/r-lib/usethis")
12732 (synopsis "Automate R package and project setup")
12733 (description
12734 "This package helps you to automate R package and project setup tasks
12735 that are otherwise performed manually. This includes setting up unit testing,
12736 test coverage, continuous integration, Git, GitHub integration, licenses,
12737 Rcpp, RStudio projects, and more.")
12738 (license license:gpl3)))
12739
12740 (define-public r-sessioninfo
12741 (package
12742 (name "r-sessioninfo")
12743 (version "1.2.2")
12744 (source
12745 (origin
12746 (method url-fetch)
12747 (uri (cran-uri "sessioninfo" version))
12748 (sha256
12749 (base32
12750 "1jy7n37qnrb4fgzmn8s8yf7kv29yw27x8zklwf8qdb2kgj2q6qpm"))))
12751 (build-system r-build-system)
12752 (propagated-inputs
12753 (list r-cli))
12754 (home-page "https://github.com/r-lib/sessioninfo#readme")
12755 (synopsis "R session information")
12756 (description
12757 "This package provides tools to query and print information about the
12758 current R session. It is similar to @code{utils::sessionInfo()}, but includes
12759 more information about packages, and where they were installed from.")
12760 (license license:gpl2)))
12761
12762 (define-public r-remotes
12763 (package
12764 (name "r-remotes")
12765 (version "2.4.2")
12766 (source
12767 (origin
12768 (method url-fetch)
12769 (uri (cran-uri "remotes" version))
12770 (sha256
12771 (base32
12772 "05m5dgv0nba5vhjbdkd8z5lbhpfxgkw31j58am7vz1d44igqgvzj"))))
12773 (build-system r-build-system)
12774 (native-inputs
12775 (list r-knitr))
12776 (home-page "https://github.com/r-lib/remotes#readme")
12777 (synopsis "R package installation from remote repositories")
12778 (description
12779 "Download and install R packages stored in GitHub, BitBucket, or plain
12780 subversion or git repositories. This package is a lightweight replacement of
12781 the @code{install_*} functions in the @code{devtools} package. Indeed most of
12782 the code was copied over from @code{devtools}.")
12783 (license license:gpl2+)))
12784
12785 (define-public r-xopen
12786 (package
12787 (name "r-xopen")
12788 (version "1.0.0")
12789 (source
12790 (origin
12791 (method url-fetch)
12792 (uri (cran-uri "xopen" version))
12793 (sha256
12794 (base32
12795 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
12796 (build-system r-build-system)
12797 (propagated-inputs
12798 (list r-processx))
12799 (home-page "https://github.com/r-lib/xopen#readme")
12800 (synopsis "Open system files, URLs, anything")
12801 (description
12802 "This package provides a cross-platform solution to open files,
12803 directories or URLs with their associated programs.")
12804 (license license:expat)))
12805
12806 (define-public r-rcmdcheck
12807 (package
12808 (name "r-rcmdcheck")
12809 (version "1.4.0")
12810 (source
12811 (origin
12812 (method url-fetch)
12813 (uri (cran-uri "rcmdcheck" version))
12814 (sha256
12815 (base32
12816 "1l696byn3kjq2xvz4wxybzaj6ink85h4lz3a35v2132ba5yyzm5v"))))
12817 (build-system r-build-system)
12818 (propagated-inputs
12819 (list r-callr
12820 r-cli
12821 r-curl
12822 r-desc
12823 r-digest
12824 r-pkgbuild
12825 r-prettyunits
12826 r-r6
12827 r-rprojroot
12828 r-sessioninfo
12829 r-withr
12830 r-xopen))
12831 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
12832 (synopsis "Run R CMD check from R and capture results")
12833 (description
12834 "Run @code{R CMD check} from R programmatically, and capture the results
12835 of the individual checks.")
12836 (license license:expat)))
12837
12838 (define-public r-rapportools
12839 (package
12840 (name "r-rapportools")
12841 (version "1.1")
12842 (source
12843 (origin
12844 (method url-fetch)
12845 (uri (cran-uri "rapportools" version))
12846 (sha256
12847 (base32
12848 "0qr86idng12g6hdd764j0wmli700v7rjhw7jdjxj0ka8xm5v7ymm"))))
12849 (build-system r-build-system)
12850 (propagated-inputs
12851 (list r-mass r-pander r-plyr r-reshape2))
12852 (home-page "https://cran.r-project.org/web/packages/rapportools/")
12853 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
12854 (description
12855 "This package provides helper functions that act as wrappers to more
12856 advanced statistical methods with the advantage of having sane defaults for
12857 quick reporting.")
12858 (license license:agpl3+)))
12859
12860 (define-public r-pander
12861 (package
12862 (name "r-pander")
12863 (version "0.6.5")
12864 (source
12865 (origin
12866 (method url-fetch)
12867 (uri (cran-uri "pander" version))
12868 (sha256
12869 (base32
12870 "144zkq5w7v6fpzk3x40i0baybbp0y6x2ckh4b9qljryas9mhgp9a"))))
12871 (build-system r-build-system)
12872 (propagated-inputs
12873 (list r-digest r-rcpp))
12874 (native-inputs
12875 (list r-knitr))
12876 (home-page "https://rapporter.github.io/pander")
12877 (synopsis "Render R objects into Pandoc's markdown")
12878 (description
12879 "The main aim of the pander R package is to provide a minimal and easy
12880 tool for rendering R objects into Pandoc's markdown. The package is also
12881 capable of exporting/converting complex Pandoc documents (reports) in various
12882 ways.")
12883 ;; This package is licensed under either the AGPLv3+ or the very rarely
12884 ;; used OSL 3.0.
12885 (license license:agpl3+)))
12886
12887 (define-public r-summarytools
12888 (package
12889 (name "r-summarytools")
12890 (version "1.0.1")
12891 (source
12892 (origin
12893 (method url-fetch)
12894 (uri (cran-uri "summarytools" version))
12895 (sha256
12896 (base32
12897 "0gr95cd1ja8di6s0xghk6w7nj3bh3z4g7j7ixdy7f88q681aixgx"))))
12898 (build-system r-build-system)
12899 (propagated-inputs
12900 (list r-base64enc
12901 r-checkmate
12902 r-dplyr
12903 r-htmltools
12904 r-lubridate
12905 r-magick
12906 r-matrixstats
12907 r-pander
12908 r-pryr
12909 r-rapportools
12910 r-tibble
12911 r-tidyr))
12912 (native-inputs
12913 (list r-knitr))
12914 (home-page "https://github.com/dcomtois/summarytools")
12915 (synopsis "Tools to quickly and neatly summarize data")
12916 (description
12917 "This package provides tools for data frame summaries, cross-tabulations,
12918 weight-enabled frequency tables and common univariate statistics in concise
12919 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
12920 good point-of-entry for exploring data, both for experienced and new R
12921 users.")
12922 (license license:gpl2)))
12923
12924 (define-public r-lsei
12925 (package
12926 (name "r-lsei")
12927 (version "1.3-0")
12928 (source
12929 (origin
12930 (method url-fetch)
12931 (uri (cran-uri "lsei" version))
12932 (sha256
12933 (base32
12934 "1dka0rigfw4vj809qma2dkiwjb3nw5635ynnba5cm299cn7hb2b2"))))
12935 (build-system r-build-system)
12936 (native-inputs
12937 (list gfortran))
12938 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
12939 (synopsis "Solve regression problems under equality/inequality constraints")
12940 (description
12941 "It contains functions that solve least squares linear regression
12942 problems under linear equality/inequality constraints. Functions for solving
12943 quadratic programming problems are also available, which transform such
12944 problems into least squares ones first.")
12945 (license license:gpl2+)))
12946
12947 (define-public r-npsurv
12948 (package
12949 (name "r-npsurv")
12950 (version "0.5-0")
12951 (source
12952 (origin
12953 (method url-fetch)
12954 (uri (cran-uri "npsurv" version))
12955 (sha256
12956 (base32
12957 "1ihxhb42cga1hssj2jv4ah0f4hlwsky899ij5261fzh1wxvdp1xw"))))
12958 (build-system r-build-system)
12959 (propagated-inputs
12960 (list r-lsei))
12961 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
12962 (synopsis "Nonparametric survival analysis")
12963 (description
12964 "This package contains functions for non-parametric survival analysis of
12965 exact and interval-censored observations.")
12966 (license license:gpl2+)))
12967
12968 (define-public r-clusteval
12969 (package
12970 (name "r-clusteval")
12971 (version "0.1")
12972 (source
12973 (origin
12974 (method url-fetch)
12975 (uri (cran-uri "clusteval" version))
12976 (sha256
12977 (base32
12978 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
12979 (build-system r-build-system)
12980 (propagated-inputs
12981 (list r-mvtnorm r-rcpp))
12982 (home-page "https://cran.r-project.org/web/packages/clusteval/")
12983 (synopsis "Evaluation of clustering algorithms")
12984 (description
12985 "This R package provides a suite of tools to evaluate clustering
12986 algorithms, clusterings, and individual clusters.")
12987 (license license:expat)))
12988
12989 (define-public r-tweedie
12990 (package
12991 (name "r-tweedie")
12992 (version "2.3.3")
12993 (source
12994 (origin
12995 (method url-fetch)
12996 (uri (cran-uri "tweedie" version))
12997 (sha256
12998 (base32
12999 "1nfhaqblvm62j8gfkyrgba5ai0pb2fsnrxp63637mhys2bawlcm0"))))
13000 (build-system r-build-system)
13001 (native-inputs (list gfortran))
13002 (home-page "https://cran.r-project.org/web/packages/tweedie/")
13003 (synopsis "Evaluation of Tweedie exponential family models")
13004 (description
13005 "Maximum likelihood computations for Tweedie families, including the
13006 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
13007 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
13008 and related methods.")
13009 (license license:gpl2+)))
13010
13011 (define-public r-rcppgsl
13012 (package
13013 (name "r-rcppgsl")
13014 (version "0.3.11")
13015 (source
13016 (origin
13017 (method url-fetch)
13018 (uri (cran-uri "RcppGSL" version))
13019 (sha256
13020 (base32 "1a5dms0axlzgpv1z2bhfrb77497h0ch1yslq0gidj14vr4kfm57h"))))
13021 (properties `((upstream-name . "RcppGSL")))
13022 (build-system r-build-system)
13023 (propagated-inputs
13024 (list r-rcpp gsl))
13025 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
13026 (synopsis "Rcpp integration for GSL vectors and matrices")
13027 (description
13028 "The GNU Scientific Library (or GSL) is a collection of numerical
13029 routines for scientific computing. It is particularly useful for C and C++
13030 programs as it provides a standard C interface to a wide range of mathematical
13031 routines. There are over 1000 functions in total with an extensive test
13032 suite. The RcppGSL package provides an easy-to-use interface between GSL data
13033 structures and R using concepts from Rcpp which is itself a package that eases
13034 the interfaces between R and C++.")
13035 (license license:gpl2+)))
13036
13037 (define-public r-mvabund
13038 (package
13039 (name "r-mvabund")
13040 (version "4.2.1")
13041 (source
13042 (origin
13043 (method url-fetch)
13044 (uri (cran-uri "mvabund" version))
13045 (sha256
13046 (base32
13047 "01kss9dx4an1ir5zs46jypvhj8sdc8wcs00i1223ai09av4lcsgd"))))
13048 (build-system r-build-system)
13049 (propagated-inputs
13050 (list r-mass r-rcpp r-rcppgsl r-statmod r-tweedie))
13051 (home-page "https://cran.r-project.org/web/packages/mvabund/")
13052 (synopsis "Statistical methods for analysing multivariate abundance data")
13053 (description
13054 "This package provides a set of tools for displaying, modeling and
13055 analysing multivariate abundance data in community ecology.")
13056 (license license:lgpl2.1+)))
13057
13058 (define-public r-afex
13059 (package
13060 (name "r-afex")
13061 (version "1.1-1")
13062 (source
13063 (origin
13064 (method url-fetch)
13065 (uri (cran-uri "afex" version))
13066 (sha256
13067 (base32
13068 "09q426s2zmzxx5ilxy0x5mflpb38pl075ss1s8xvpswkn6cia0b6"))))
13069 (build-system r-build-system)
13070 ;; This is needed for the vignette builder
13071 (arguments
13072 '(#:phases
13073 (modify-phases %standard-phases
13074 (add-after 'unpack 'set-HOME
13075 (lambda _ (setenv "HOME" "/tmp"))))))
13076 (propagated-inputs
13077 (list r-car r-lme4 r-lmertest r-pbkrtest r-reshape2))
13078 (native-inputs
13079 (list r-knitr
13080 r-r-rsp)) ;vignette builder
13081 (home-page "https://afex.singmann.science/")
13082 (synopsis "Analysis of factorial experiments")
13083 (description
13084 "This package provides convenience functions for analyzing factorial
13085 experiments using ANOVA or mixed models.")
13086 (license license:gpl2+)))
13087
13088 (define-public r-lmertest
13089 (package
13090 (name "r-lmertest")
13091 (version "3.1-3")
13092 (source
13093 (origin
13094 (method url-fetch)
13095 (uri (cran-uri "lmerTest" version))
13096 (sha256
13097 (base32
13098 "1zd8gqjkazhxgpnnr484xwsq30p62fq8592nzyc171zjyplpbaim"))))
13099 (properties `((upstream-name . "lmerTest")))
13100 (build-system r-build-system)
13101 (propagated-inputs
13102 (list r-ggplot2 r-lme4 r-mass r-numderiv))
13103 (home-page "https://github.com/runehaubo/lmerTestR")
13104 (synopsis "Tests in linear mixed effects models")
13105 (description
13106 "This package provides p-values in type I, II or III anova and summary
13107 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
13108 method. A Kenward-Roger method is also available via the @code{pbkrtest}
13109 package. Model selection methods include step, drop1 and anova-like tables
13110 for random effects (ranova). Methods for Least-Square means (LS-means) and
13111 tests of linear contrasts of fixed effects are also available.")
13112 (license license:gpl2+)))
13113
13114 (define-public r-r2glmm
13115 (package
13116 (name "r-r2glmm")
13117 (version "0.1.2")
13118 (source
13119 (origin
13120 (method url-fetch)
13121 (uri (cran-uri "r2glmm" version))
13122 (sha256
13123 (base32
13124 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
13125 (build-system r-build-system)
13126 (propagated-inputs
13127 (list r-afex
13128 r-data-table
13129 r-dplyr
13130 r-ggplot2
13131 r-gridextra
13132 r-lmertest
13133 r-mass
13134 r-matrix
13135 r-mgcv
13136 r-pbkrtest))
13137 (home-page "https://github.com/bcjaeger/r2glmm")
13138 (synopsis "Compute R squared for mixed (multilevel) models")
13139 (description
13140 "This package computes model and semi partial R squared with confidence
13141 limits for the linear and generalized linear mixed model (LMM and GLMM). The
13142 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
13143 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
13144 al. (2016)).")
13145 (license license:gpl2)))
13146
13147 (define-public r-cmdfun
13148 (package
13149 (name "r-cmdfun")
13150 (version "1.0.2")
13151 (source
13152 (origin
13153 (method url-fetch)
13154 (uri (cran-uri "cmdfun" version))
13155 (sha256
13156 (base32
13157 "1pbcq7hi2lcmqnghmy3q2fsk0c9fy5m0637acyzmc096fxbx723j"))))
13158 (properties `((upstream-name . "cmdfun")))
13159 (build-system r-build-system)
13160 (propagated-inputs
13161 (list r-magrittr
13162 r-purrr
13163 r-r-utils
13164 r-rlang
13165 r-testthat
13166 r-usethis))
13167 (native-inputs
13168 (list r-knitr))
13169 (home-page "https://snystrom.github.io/cmdfun/")
13170 (synopsis "Framework for building interfaces to shell commands")
13171 (description
13172 "Writing interfaces to command line software is cumbersome. The cmdfun
13173 package provides a framework for building function calls to seamlessly
13174 interface with shell commands by allowing lazy evaluation of command line
13175 arguments. It also provides methods for handling user-specific paths to tool
13176 installs or secrets like API keys. Its focus is to equally serve package
13177 builders who wish to wrap command line software, and to help analysts stay
13178 inside R when they might usually leave to execute non-R software.")
13179 (license license:expat)))
13180
13181 (define-public r-rslurm
13182 (package
13183 (name "r-rslurm")
13184 (version "0.6.1")
13185 (source
13186 (origin
13187 (method url-fetch)
13188 (uri (cran-uri "rslurm" version))
13189 (sha256
13190 (base32
13191 "19451icfh7snjbbmpzpr1hrdf52q8ijv0ag1di3y55r2la3jxxcf"))))
13192 (properties `((upstream-name . "rslurm")))
13193 (build-system r-build-system)
13194 (propagated-inputs (list r-whisker))
13195 (native-inputs (list r-knitr))
13196 (home-page "http://cyberhelp.sesync.org/rslurm/")
13197 (synopsis "Submit R calculations to a Slurm cluster")
13198 (description
13199 "This package provides functions that simplify submitting R scripts to a
13200 Slurm workload manager, in part by automating the division of embarrassingly
13201 parallel calculations across cluster nodes.")
13202 (license license:gpl3)))
13203
13204 (define-public r-chk
13205 (package
13206 (name "r-chk")
13207 (version "0.8.0")
13208 (source
13209 (origin
13210 (method url-fetch)
13211 (uri (cran-uri "chk" version))
13212 (sha256
13213 (base32
13214 "10gcv00mgi88vgxr9jrs0ar67crmdcdi4m9g86cm6pg3ly0v097y"))))
13215 (properties `((upstream-name . "chk")))
13216 (build-system r-build-system)
13217 (propagated-inputs
13218 (list r-lifecycle r-rlang))
13219 (native-inputs (list r-knitr))
13220 (home-page "https://github.com/poissonconsulting/chk")
13221 (synopsis "Check user-supplied function arguments")
13222 (description
13223 "This is a package for developers to check user-supplied function
13224 arguments. It is designed to be simple, fast and customizable. Error
13225 messages follow the tidyverse style guide.")
13226 (license license:expat)))
13227
13228 (define-public r-weights
13229 (package
13230 (name "r-weights")
13231 (version "1.0.4")
13232 (source
13233 (origin
13234 (method url-fetch)
13235 (uri (cran-uri "weights" version))
13236 (sha256
13237 (base32
13238 "1fnchf7f0hyl514bk8sc3l884kg25kb5xm4mc2l28n6hm7l6bgpg"))))
13239 (build-system r-build-system)
13240 (propagated-inputs
13241 (list r-gdata r-hmisc r-lme4 r-mice))
13242 (home-page "https://cran.r-project.org/web/packages/weights/")
13243 (synopsis "Weighting and weighted statistics")
13244 (description "This package Provides a variety of functions for producing
13245 simple weighted statistics, such as weighted Pearson's correlations, partial
13246 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
13247 includes some software for quickly recoding survey data and plotting point
13248 estimates from interaction terms in regressions (and multiply imputed
13249 regressions). NOTE: Weighted partial correlation calculations pulled to
13250 address a bug.")
13251 (license license:gpl2+)))
13252
13253 (define-public r-rcppannoy
13254 (package
13255 (name "r-rcppannoy")
13256 (version "0.0.19")
13257 (source
13258 (origin
13259 (method url-fetch)
13260 (uri (cran-uri "RcppAnnoy" version))
13261 (sha256
13262 (base32
13263 "12k8ny981dmky5js8yl6bih5r5mq3w43f2f9admhkwqn0n80kcl9"))))
13264 (properties `((upstream-name . "RcppAnnoy")))
13265 (build-system r-build-system)
13266 (propagated-inputs
13267 (list r-rcpp))
13268 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
13269 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
13270 (description
13271 "Annoy is a small C++ library for Approximate Nearest Neighbors written
13272 for efficient memory usage as well an ability to load from and save to disk.
13273 This package provides an R interface.")
13274 ;; Annoy is released under ASL 2.0, but this wrapper is released under
13275 ;; GPLv2+.
13276 (license (list license:gpl2+ license:asl2.0))))
13277
13278 (define-public r-rcpphnsw
13279 (package
13280 (name "r-rcpphnsw")
13281 (version "0.3.0")
13282 (source
13283 (origin
13284 (method url-fetch)
13285 (uri (cran-uri "RcppHNSW" version))
13286 (sha256
13287 (base32
13288 "01z0plf1i6dyibw4ica8shmijyk1grpqb886hcga72z2cpm4xsx0"))))
13289 (properties `((upstream-name . "RcppHNSW")))
13290 (build-system r-build-system)
13291 (propagated-inputs (list r-rcpp))
13292 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
13293 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
13294 (description
13295 "Hnswlib is a C++ library for approximate nearest neighbors. This
13296 package provides a minimal R interface by relying on the Rcpp package.")
13297 ;; hnswlib is released under Version 2.0 of the Apache License.
13298 (license (list license:gpl3 license:asl2.0))))
13299
13300 (define-public r-rcppparallel
13301 (package
13302 (name "r-rcppparallel")
13303 (version "5.1.5")
13304 (source
13305 (origin
13306 (method url-fetch)
13307 (uri (cran-uri "RcppParallel" version))
13308 (sha256
13309 (base32
13310 "1sn211ajlb1p12sglxqns175rg078yvww268m8cp0vvd7cmk55k3"))))
13311 (properties `((upstream-name . "RcppParallel")))
13312 (build-system r-build-system)
13313 (home-page "https://rcppcore.github.io/RcppParallel/")
13314 (synopsis "Parallel programming tools for Rcpp")
13315 (description
13316 "This package provides high level functions for parallel programming with
13317 Rcpp. For example, the @code{parallelFor()} function can be used to convert
13318 the work of a standard serial @code{for} loop into a parallel one and the
13319 @code{parallelReduce()} function can be used for accumulating aggregates or
13320 other values.")
13321 (license license:gpl2)))
13322
13323 (define-public r-ncdf4
13324 (package
13325 (name "r-ncdf4")
13326 (version "1.19")
13327 (source
13328 (origin
13329 (method url-fetch)
13330 (uri (cran-uri "ncdf4" version))
13331 (sha256
13332 (base32
13333 "0qzvin2fjzcb7h2knlnw14s6043pwi1nm7yf6p27ax7w269173fb"))))
13334 (build-system r-build-system)
13335 (inputs
13336 (list netcdf zlib))
13337 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
13338 (synopsis "R interface to Unidata netCDF format data files")
13339 (description
13340 "This package provides a high-level R interface to data files written
13341 using Unidata's netCDF library (version 4 or earlier), which are binary data
13342 files that are portable across platforms and include metadata information in
13343 addition to the data sets. Using this package, netCDF files can be opened and
13344 data sets read in easily. It is also easy to create new netCDF dimensions,
13345 variables, and files, in either version 3 or 4 format, and manipulate existing
13346 netCDF files.")
13347 (license license:gpl3+)))
13348
13349 (define-public r-biocmanager
13350 (package
13351 (name "r-biocmanager")
13352 (version "1.30.18")
13353 (source
13354 (origin
13355 (method url-fetch)
13356 (uri (cran-uri "BiocManager" version))
13357 (sha256
13358 (base32 "0dawbd546rznllpw5wq282r0viga4cck398d4s1inkk18mmi4qzp"))))
13359 (properties `((upstream-name . "BiocManager")))
13360 (build-system r-build-system)
13361 (native-inputs
13362 (list r-knitr))
13363 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
13364 (synopsis "Access the Bioconductor project package repository")
13365 (description
13366 "This package provides a convenient tool to install and update
13367 Bioconductor packages.")
13368 (license license:artistic2.0)))
13369
13370 (define-public r-rgl
13371 (package
13372 (name "r-rgl")
13373 (version "0.108.3.2")
13374 (source
13375 (origin
13376 (method url-fetch)
13377 (uri (cran-uri "rgl" version))
13378 (sha256
13379 (base32
13380 "0r9wzhjzl346i37ngs6hqzmizhi53kzqz582lv822v6yxang6fh3"))))
13381 (build-system r-build-system)
13382 (native-inputs
13383 (list pkg-config r-knitr))
13384 (inputs
13385 (list freetype
13386 libpng
13387 glu
13388 libx11
13389 pandoc
13390 zlib))
13391 (propagated-inputs
13392 (list r-htmltools
13393 r-htmlwidgets
13394 r-jsonlite
13395 r-knitr
13396 r-magrittr
13397 r-r6))
13398 (home-page "https://r-forge.r-project.org/projects/rgl/")
13399 (synopsis "3D visualization using OpenGL")
13400 (description
13401 "This package provides medium to high level functions for 3D interactive graphics,
13402 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
13403 as functions for constructing representations of geometric
13404 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
13405 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
13406 image formats, including PNG, Postscript, SVG, PGF.")
13407 ;; Any version of the GPL.
13408 (license (list license:gpl2+ license:gpl3+))))
13409
13410 (define-public r-multicool
13411 (package
13412 (name "r-multicool")
13413 (version "0.1-12")
13414 (source
13415 (origin
13416 (method url-fetch)
13417 (uri (cran-uri "multicool" version))
13418 (sha256
13419 (base32
13420 "0djacq0irfqz4nlnx238kja73yvr1n5qybbfyl6bw1n6qgcjhza8"))))
13421 (build-system r-build-system)
13422 (propagated-inputs (list r-rcpp))
13423 (home-page "https://cran.r-project.org/web/packages/multicool/")
13424 (synopsis "Permutations of multisets in cool-lex order")
13425 (description
13426 "This package provides a set of tools to permute multisets without loops
13427 or hash tables and to generate integer partitions. Cool-lex order is similar
13428 to colexicographical order.")
13429 (license license:gpl2)))
13430
13431 (define-public r-misc3d
13432 (package
13433 (name "r-misc3d")
13434 (version "0.9-1")
13435 (source
13436 (origin
13437 (method url-fetch)
13438 (uri (cran-uri "misc3d" version))
13439 (sha256
13440 (base32
13441 "0r9x57s63kx9f6dgam2nhbziq8nrs9wd8pk7g76hds2kw46vnyx0"))))
13442 (build-system r-build-system)
13443 (home-page "https://cran.r-project.org/web/packages/misc3d/")
13444 (synopsis "Miscellaneous 3D Plots")
13445 (description
13446 "This package provides a collection of miscellaneous 3d plots, including
13447 isosurfaces.")
13448 ;; Any version of the GPL.
13449 (license (list license:gpl2+ license:gpl3+))))
13450
13451 (define-public r-ks
13452 (package
13453 (name "r-ks")
13454 (version "1.13.5")
13455 (source
13456 (origin
13457 (method url-fetch)
13458 (uri (cran-uri "ks" version))
13459 (sha256
13460 (base32 "05bqrjkbx2kn5aax0hy3xd6pf7nxka9bm1sp8ll1cc2gf1nx1i6i"))))
13461 (build-system r-build-system)
13462 (propagated-inputs
13463 (list r-fnn
13464 r-kernlab
13465 r-kernsmooth
13466 r-matrix
13467 r-mclust
13468 r-mgcv
13469 r-multicool
13470 r-mvtnorm
13471 r-plot3d
13472 r-pracma))
13473 (home-page "https://www.mvstat.net/tduong/")
13474 (synopsis "Kernel smoothing")
13475 (description
13476 "This package provides kernel smoothers for univariate and multivariate
13477 data, including density functions, density derivatives, cumulative
13478 distributions, modal clustering, discriminant analysis, and two-sample
13479 hypothesis testing.")
13480 ;; Either version of the GPL.
13481 (license (list license:gpl2 license:gpl3))))
13482
13483 (define-public r-feature
13484 (package
13485 (name "r-feature")
13486 (version "1.2.15")
13487 (source
13488 (origin
13489 (method url-fetch)
13490 (uri (cran-uri "feature" version))
13491 (sha256
13492 (base32
13493 "0yzn1w1sasilcp8v0pcjnxjv9l6lspkskqi412i6h040gqmjjf6y"))))
13494 (build-system r-build-system)
13495 (propagated-inputs
13496 (list r-ks r-plot3d))
13497 (native-inputs
13498 (list r-knitr))
13499 (home-page "https://www.mvstat.net/tduong/")
13500 (synopsis "Inferential feature significance for kernel density estimation")
13501 (description
13502 "The feature package contains functions to display and compute kernel
13503 density estimates, significant gradient and significant curvature regions.
13504 Significant gradient and/or curvature regions often correspond to significant
13505 features (e.g. local modes).")
13506 ;; Either version of the GPL.
13507 (license (list license:gpl2 license:gpl3))))
13508
13509 (define-public r-arm
13510 (package
13511 (name "r-arm")
13512 (version "1.12-2")
13513 (source
13514 (origin
13515 (method url-fetch)
13516 (uri (cran-uri "arm" version))
13517 (sha256
13518 (base32
13519 "0pagrc1vkaz460d0lvrgb4xj6gcd920f4mrc8zpzw07c3v1s2sw1"))))
13520 (build-system r-build-system)
13521 (propagated-inputs
13522 (list r-abind
13523 r-coda
13524 r-lme4
13525 r-mass
13526 r-matrix
13527 r-nlme))
13528 (home-page "https://cran.r-project.org/web/packages/arm/")
13529 (synopsis "Data analysis using regression and multilevel/hierarchical models")
13530 (description
13531 "This package provides functions to accompany A. Gelman and J. Hill,
13532 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
13533 University Press, 2007.")
13534 (license license:gpl3+)))
13535
13536 (define-public r-circular
13537 (package
13538 (name "r-circular")
13539 (version "0.4-95")
13540 (source
13541 (origin
13542 (method url-fetch)
13543 (uri (cran-uri "circular" version))
13544 (sha256
13545 (base32
13546 "1qmwj1pf37lc2s5r83y7nqckscznqhbsv66bdfgfbby7x4qkwga8"))))
13547 (build-system r-build-system)
13548 (propagated-inputs
13549 (list r-boot r-mvtnorm))
13550 (native-inputs
13551 (list gfortran))
13552 (home-page "https://cran.r-project.org/web/packages/circular/")
13553 (synopsis "Circular statistics")
13554 (description
13555 "This package provides tools for circular statistics, from \"Topics in
13556 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
13557 Scientific.")
13558 (license license:gpl2+)))
13559
13560 (define-public r-activity
13561 (package
13562 (name "r-activity")
13563 (version "1.3.2")
13564 (source
13565 (origin
13566 (method url-fetch)
13567 (uri (cran-uri "activity" version))
13568 (sha256
13569 (base32
13570 "11n6wmqz7p3428rr615f92m61a5gb908xpn4l8q484h61bwg38c3"))))
13571 (build-system r-build-system)
13572 (propagated-inputs
13573 (list r-insol r-pbapply))
13574 (home-page "https://cran.r-project.org/web/packages/activity/")
13575 (synopsis "Animal activity statistics")
13576 (description
13577 "This package provides functions to fit kernel density functions to
13578 animal activity time data; plot activity distributions; quantify overall
13579 levels of activity; statistically compare activity metrics through
13580 bootstrapping; and evaluate variation in linear variables with time (or other
13581 circular variables).")
13582 (license license:gpl3)))
13583
13584 (define-public r-ouch
13585 (package
13586 (name "r-ouch")
13587 (version "2.18")
13588 (source
13589 (origin
13590 (method url-fetch)
13591 (uri (cran-uri "ouch" version))
13592 (sha256
13593 (base32
13594 "119s9llpjy0b4q830xig2xr66fq6izp6mr2k4k79ggmf3gxww8as"))))
13595 (build-system r-build-system)
13596 (propagated-inputs (list r-subplex))
13597 (home-page "https://kingaa.github.io/ouch/")
13598 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
13599 (description
13600 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
13601 for evolution along a phylogenetic tree.")
13602 (license license:gpl2+)))
13603
13604 (define-public r-fmsb
13605 (package
13606 (name "r-fmsb")
13607 (version "0.7.3")
13608 (source
13609 (origin
13610 (method url-fetch)
13611 (uri (cran-uri "fmsb" version))
13612 (sha256
13613 (base32
13614 "1gi94xr0b1yk9xzwfprfafxi25yic1lcivd66p73n6iqfzdaimbk"))))
13615 (build-system r-build-system)
13616 (home-page "http://minato.sip21c.org/msb/")
13617 (synopsis "Functions for medical statistics book with demographic data")
13618 (description
13619 "This package provides several utility functions for the book entitled
13620 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
13621 Japan, 2007) with Japanese demographic data and some demographic analysis
13622 related functions.")
13623 (license license:gpl2+)))
13624
13625 (define-public r-stabledist
13626 (package
13627 (name "r-stabledist")
13628 (version "0.7-1")
13629 (source
13630 (origin
13631 (method url-fetch)
13632 (uri (cran-uri "stabledist" version))
13633 (sha256
13634 (base32
13635 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
13636 (build-system r-build-system)
13637 (home-page "https://www.rmetrics.org")
13638 (synopsis "Stable distribution functions")
13639 (description
13640 "This package provides density, probability and quantile functions, and
13641 random number generation for (skew) stable distributions, using the
13642 parametrizations of Nolan.")
13643 (license license:gpl2+)))
13644
13645 (define-public r-gsl
13646 (package
13647 (name "r-gsl")
13648 (version "2.1-7.1")
13649 (source
13650 (origin
13651 (method url-fetch)
13652 (uri (cran-uri "gsl" version))
13653 (sha256
13654 (base32
13655 "118rj9kjx9rzlynvhrly19qz3yxg8jzws35971ssgzrp5lwd367f"))))
13656 (build-system r-build-system)
13657 (inputs
13658 (list gsl))
13659 (home-page "https://cran.r-project.org/web/packages/gsl")
13660 (synopsis "Wrapper for the GNU Scientific Library")
13661 (description
13662 "This package provides an R wrapper for the special functions and quasi
13663 random number generators of the GNU Scientific Library.")
13664 (license license:gpl2+)))
13665
13666 (define-public r-adgoftest
13667 (package
13668 (name "r-adgoftest")
13669 (version "0.3")
13670 (source
13671 (origin
13672 (method url-fetch)
13673 (uri (cran-uri "ADGofTest" version))
13674 (sha256
13675 (base32
13676 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
13677 (properties `((upstream-name . "ADGofTest")))
13678 (build-system r-build-system)
13679 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
13680 (synopsis "Anderson-Darling GoF test")
13681 (description
13682 "This package provides an implementation of the Anderson-Darling GoF test
13683 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
13684 Anderson-Darling Distribution\".")
13685 ;; Any version of the GPL.
13686 (license license:gpl3+)))
13687
13688 (define-public r-admisc
13689 (package
13690 (name "r-admisc")
13691 (version "0.27")
13692 (source
13693 (origin
13694 (method url-fetch)
13695 (uri (cran-uri "admisc" version))
13696 (sha256
13697 (base32 "07hfrhv3pcldsffnyfzpa1q3x32gxr1386r8fik1nhql2w46mm13"))))
13698 (properties `((upstream-name . "admisc")))
13699 (build-system r-build-system)
13700 (home-page "https://github.com/dusadrian/admisc")
13701 (synopsis "Adrian Dusa's miscellaneous")
13702 (description
13703 "This package contains miscellaneous functions used to interpret and
13704 translate, factorize and negate Sum of Products expressions, for both binary
13705 and multi-value crisp sets, and to extract information (set names, set values)
13706 from those expressions. Other functions perform various other checks if
13707 possibly numeric (even if all numbers reside in a character vector) and coerce
13708 to numeric, or check if the numbers are whole. It also offers, among many
13709 others, a highly flexible recoding routine and a more flexible alternative to
13710 the base function @code{with()}.")
13711 (license license:gpl3+)))
13712
13713 (define-public r-sodium
13714 (package
13715 (name "r-sodium")
13716 (version "1.2.0")
13717 (source
13718 (origin
13719 (method url-fetch)
13720 (uri (cran-uri "sodium" version))
13721 (sha256
13722 (base32
13723 "0x4jb3cf1nv1spz1jc9xp8hly2b4a7nj48xr4s33jnfcpdjkmn5q"))))
13724 (properties `((upstream-name . "sodium")))
13725 (build-system r-build-system)
13726 (inputs
13727 (list libsodium))
13728 (native-inputs
13729 (list pkg-config r-knitr))
13730 (home-page "https://github.com/jeroen/sodium")
13731 (synopsis "R bindings to the libsodium crypto library")
13732 (description
13733 "This package provides bindings to libsodium: a library for encryption,
13734 decryption, signatures, password hashing and more. Sodium uses curve25519, a
13735 Diffie-Hellman function by Daniel Bernstein, which has become very popular
13736 after it was discovered that the NSA had backdoored Dual EC DRBG.")
13737 (license license:expat)))
13738
13739 (define-public r-softimpute
13740 (package
13741 (name "r-softimpute")
13742 (version "1.4-1")
13743 (source
13744 (origin
13745 (method url-fetch)
13746 (uri (cran-uri "softImpute" version))
13747 (sha256
13748 (base32
13749 "1v2a4d688ij5zcvkzpra9yx40xckdfnllnfnyq2450zf3n1kjk7a"))))
13750 (properties `((upstream-name . "softImpute")))
13751 (build-system r-build-system)
13752 (propagated-inputs
13753 (list r-matrix))
13754 (native-inputs
13755 (list gfortran r-knitr))
13756 (home-page "https://cran.r-project.org/web/packages/softImpute")
13757 (synopsis "Matrix completion via iterative soft-thresholded SVD")
13758 (description
13759 "This package provides iterative methods for matrix completion that use
13760 nuclear-norm regularization. The package includes procedures for centering
13761 and scaling rows, columns or both, and for computing low-rank @dfn{single
13762 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
13763 components).")
13764 (license license:gpl2)))
13765
13766 (define-public r-fftwtools
13767 (package
13768 (name "r-fftwtools")
13769 (version "0.9-11")
13770 (source
13771 (origin
13772 (method url-fetch)
13773 (uri (cran-uri "fftwtools" version))
13774 (sha256
13775 (base32
13776 "0zrchp4l0jdbir2gibjf00x225y9giqk80zvqmr2yyvc12lwkw7i"))))
13777 (build-system r-build-system)
13778 (inputs (list fftw))
13779 (native-inputs
13780 (list pkg-config))
13781 (home-page "https://github.com/krahim/fftwtools")
13782 (synopsis "Wrapper for FFTW3")
13783 (description
13784 "This package provides a wrapper for several FFTW functions. It provides
13785 access to the two-dimensional FFT, the multivariate FFT, and the
13786 one-dimensional real to complex FFT using the FFTW3 library. The package
13787 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
13788 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
13789 The FFT functions have a parameter that allows them to not return the
13790 redundant complex conjugate when the input is real data.")
13791 (license license:gpl2+)))
13792
13793 (define-public r-tiff
13794 (package
13795 (name "r-tiff")
13796 (version "0.1-11")
13797 (source
13798 (origin
13799 (method url-fetch)
13800 (uri (cran-uri "tiff" version))
13801 (sha256
13802 (base32
13803 "0xgc7vyndxxahfhc2qqzmwi56bnfyl0pn72l820jz5sd24aymhxq"))))
13804 (build-system r-build-system)
13805 (inputs
13806 (list libtiff libjpeg-turbo zlib))
13807 (native-inputs
13808 (list pkg-config))
13809 (home-page "https://www.rforge.net/tiff/")
13810 (synopsis "Read and write TIFF images")
13811 (description
13812 "This package provides an easy and simple way to read, write and display
13813 bitmap images stored in the TIFF format. It can read and write both files and
13814 in-memory raw vectors.")
13815 ;; Either of these two license versions.
13816 (license (list license:gpl2 license:gpl3))))
13817
13818 (define-public r-nlp
13819 (package
13820 (name "r-nlp")
13821 (version "0.2-1")
13822 (source
13823 (origin
13824 (method url-fetch)
13825 (uri (cran-uri "NLP" version))
13826 (sha256
13827 (base32
13828 "1dpj04fmld2lnhg072ahgjbhmciqqy9h1lrz0wf32mr7mm9s9sh5"))))
13829 (properties `((upstream-name . "NLP")))
13830 (build-system r-build-system)
13831 (home-page "https://cran.r-project.org/web/packages/NLP/")
13832 (synopsis "Natural language processing infrastructure")
13833 (description
13834 "This package provides basic classes and methods for Natural Language
13835 Processing.")
13836 (license license:gpl3)))
13837
13838 (define-public r-tm
13839 (package
13840 (name "r-tm")
13841 (version "0.7-8")
13842 (source
13843 (origin
13844 (method url-fetch)
13845 (uri (cran-uri "tm" version))
13846 (sha256
13847 (base32
13848 "0mk2lsplynms15nw92vbdgsafg4bw1m0ik31gch1mnsnv61idsxi"))))
13849 (properties `((upstream-name . "tm")))
13850 (build-system r-build-system)
13851 (propagated-inputs
13852 (list r-bh r-nlp r-rcpp r-slam r-xml2))
13853 (home-page "http://tm.r-forge.r-project.org/")
13854 (synopsis "Text mining package")
13855 (description
13856 "This package provides a framework for text mining applications within R.")
13857 (license license:gpl3)))
13858
13859 (define-public r-waveslim
13860 (package
13861 (name "r-waveslim")
13862 (version "1.8.2")
13863 (source
13864 (origin
13865 (method url-fetch)
13866 (uri (cran-uri "waveslim" version))
13867 (sha256
13868 (base32
13869 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
13870 (build-system r-build-system)
13871 (native-inputs
13872 (list gfortran))
13873 (home-page "http://waveslim.blogspot.com")
13874 (synopsis "Basic wavelet routines for signal processing")
13875 (description
13876 "This package provides basic wavelet routines for time series (1D),
13877 image (2D) and array (3D) analysis. The code provided here is based on
13878 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
13879 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
13880 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
13881 pairs (Selesnick 2001, 2002).")
13882 (license license:bsd-3)))
13883
13884 (define-public r-wordcloud
13885 (package
13886 (name "r-wordcloud")
13887 (version "2.6")
13888 (source
13889 (origin
13890 (method url-fetch)
13891 (uri (cran-uri "wordcloud" version))
13892 (sha256
13893 (base32
13894 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
13895 (build-system r-build-system)
13896 (propagated-inputs
13897 (list r-rcolorbrewer r-rcpp
13898 ;; The "tm" package is only "suggested" according to CRAN, but the
13899 ;; wordcloud package cannot be loaded without it.
13900 r-tm))
13901 (home-page "https://cran.r-project.org/web/packages/wordcloud")
13902 (synopsis "Word clouds")
13903 (description
13904 "This package provides functionality to create pretty word clouds,
13905 visualize differences and similarity between documents, and avoid
13906 over-plotting in scatter plots with text.")
13907 (license license:lgpl2.1)))
13908
13909 (define-public r-colorramps
13910 (package
13911 (name "r-colorramps")
13912 (version "2.3.1")
13913 (source
13914 (origin
13915 (method url-fetch)
13916 (uri (cran-uri "colorRamps" version))
13917 (sha256
13918 (base32
13919 "12jnkj50yh2hc5l7j56lrrrmn58akrj9dwj98vzf42iq4h42kwb1"))))
13920 (properties `((upstream-name . "colorRamps")))
13921 (build-system r-build-system)
13922 (home-page "https://cran.r-project.org/web/packages/colorRamps")
13923 (synopsis "Build color tables")
13924 (description "This package provides features to build gradient color
13925 maps.")
13926 ;; Any version of the GPL
13927 (license license:gpl3+)))
13928
13929 (define-public r-tidytree
13930 (package
13931 (name "r-tidytree")
13932 (version "0.3.9")
13933 (source
13934 (origin
13935 (method url-fetch)
13936 (uri (cran-uri "tidytree" version))
13937 (sha256
13938 (base32 "1prfv2jy6z4zp4gyi9krzbysipsbnjrkxcccflm4nwsd9i7mshqj"))))
13939 (build-system r-build-system)
13940 (propagated-inputs
13941 (list r-ape
13942 r-dplyr
13943 r-lazyeval
13944 r-magrittr
13945 r-pillar
13946 r-rlang
13947 r-tibble
13948 r-tidyr
13949 r-tidyselect
13950 r-yulab-utils))
13951 (native-inputs
13952 (list r-knitr))
13953 (home-page "https://github.com/GuangchuangYu/tidytree")
13954 (synopsis "Tidy tool for phylogenetic tree data manipulation")
13955 (description
13956 "Phylogenetic trees generally contain multiple components including nodes,
13957 edges, branches and associated data. This package provides an approach to
13958 convert tree objects to tidy data frames. It also provides tidy interfaces to
13959 manipulate tree data.")
13960 (license license:artistic2.0)))
13961
13962 (define-public r-rvcheck
13963 (package
13964 (name "r-rvcheck")
13965 (version "0.2.1")
13966 (source
13967 (origin
13968 (method url-fetch)
13969 (uri (cran-uri "rvcheck" version))
13970 (sha256
13971 (base32 "09khjklvzbafd7r55496by01a9g3y291d87hpy43w44dmz9fzn9a"))))
13972 (build-system r-build-system)
13973 (propagated-inputs
13974 (list r-biocmanager r-yulab-utils))
13975 (home-page "https://cran.r-project.org/web/packages/rvcheck")
13976 (synopsis "R package version check")
13977 (description
13978 "This package provides tools to check the latest release version of R and
13979 R packages (on CRAN, Bioconductor or Github).")
13980 (license license:artistic2.0)))
13981
13982 (define-public r-docopt
13983 (package
13984 (name "r-docopt")
13985 (version "0.7.1")
13986 (source
13987 (origin
13988 (method url-fetch)
13989 (uri (cran-uri "docopt" version))
13990 (sha256
13991 (base32
13992 "1zxhwizs916qm5by7nfslqnarl2q5202xc2azlhrnzk0wj3khiwz"))))
13993 (build-system r-build-system)
13994 (home-page "https://github.com/docopt/docopt.R")
13995 (synopsis "Command-line interface specification language")
13996 (description
13997 "This package enables you to define a command-line interface by just
13998 giving it a description in the specific format.")
13999 (license license:expat)))
14000
14001 (define-public r-sparsesvd
14002 (package
14003 (name "r-sparsesvd")
14004 (version "0.2")
14005 (source
14006 (origin
14007 (method url-fetch)
14008 (uri (cran-uri "sparsesvd" version))
14009 (sha256
14010 (base32
14011 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
14012 (build-system r-build-system)
14013 (propagated-inputs (list r-matrix))
14014 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
14015 (synopsis "Sparse truncated singular value decomposition")
14016 (description
14017 "This package provides a Wrapper around the SVDLIBC library
14018 for (truncated) singular value decomposition of a sparse matrix. Currently,
14019 only sparse real matrices in Matrix package format are supported.")
14020 ;; SVDLIBC is released under BSD-2. The R interface is released under
14021 ;; BSD-3.
14022 (license (list license:bsd-3 license:bsd-2))))
14023
14024 (define-public r-speedglm
14025 (package
14026 (name "r-speedglm")
14027 (version "0.3-4")
14028 (source
14029 (origin
14030 (method url-fetch)
14031 (uri (cran-uri "speedglm" version))
14032 (sha256
14033 (base32
14034 "1kj662nfkfhvx37jrbvxd4dyjclz5cm3xh50z7s5rbzapiyxn4hs"))))
14035 (build-system r-build-system)
14036 (propagated-inputs
14037 (list r-mass r-matrix))
14038 (home-page "https://cran.r-project.org/web/packages/speedglm")
14039 (synopsis "Fit linear and generalized linear models to large data sets")
14040 (description
14041 "This package provides tools for fitting linear models and generalized
14042 linear models to large data sets by updating algorithms.")
14043 ;; Any version of the GPL
14044 (license license:gpl2+)))
14045
14046 (define-public r-densityclust
14047 (package
14048 (name "r-densityclust")
14049 (version "0.3.2")
14050 (source
14051 (origin
14052 (method url-fetch)
14053 (uri (cran-uri "densityClust" version))
14054 (sha256
14055 (base32
14056 "05x2fi1zdnkrg2nimf8k904j3lpyw0f7nmk6ax5p7x7a98wb2iqs"))))
14057 (properties `((upstream-name . "densityClust")))
14058 (build-system r-build-system)
14059 (propagated-inputs
14060 (list r-fnn
14061 r-ggplot2
14062 r-ggrepel
14063 r-gridextra
14064 r-rcolorbrewer
14065 r-rcpp
14066 r-rtsne))
14067 (home-page "https://cran.r-project.org/web/packages/densityClust")
14068 (synopsis "Clustering by fast search and find of density peaks")
14069 (description
14070 "This package provides an improved implementation (based on k-nearest
14071 neighbors) of the density peak clustering algorithm, originally described by
14072 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
14073 large datasets (> 100,000 samples) very efficiently.")
14074 (license license:gpl2+)))
14075
14076 (define-public r-combinat
14077 (package
14078 (name "r-combinat")
14079 (version "0.0-8")
14080 (source
14081 (origin
14082 (method url-fetch)
14083 (uri (cran-uri "combinat" version))
14084 (sha256
14085 (base32
14086 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
14087 (build-system r-build-system)
14088 (home-page "https://cran.r-project.org/web/packages/combinat")
14089 (synopsis "Combinatorics utilities")
14090 (description "This package provides assorted routines for combinatorics.")
14091 (license license:gpl2)))
14092
14093 (define-public r-qlcmatrix
14094 (package
14095 (name "r-qlcmatrix")
14096 (version "0.9.7")
14097 (source
14098 (origin
14099 (method url-fetch)
14100 (uri (cran-uri "qlcMatrix" version))
14101 (sha256
14102 (base32
14103 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
14104 (properties `((upstream-name . "qlcMatrix")))
14105 (build-system r-build-system)
14106 (propagated-inputs
14107 (list r-docopt r-matrix r-slam r-sparsesvd))
14108 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
14109 (synopsis "Sparse matrix functions for quantitative language comparison")
14110 (description
14111 "This package provides an extension of the functionality of the Matrix
14112 package for using sparse matrices. Some of the functions are very general,
14113 while other are highly specific for the special data format used for
14114 @dfn{quantitative language comparison} (QLC).")
14115 (license license:gpl3)))
14116
14117 (define-public r-ddrtree
14118 (package
14119 (name "r-ddrtree")
14120 (version "0.1.5")
14121 (source
14122 (origin
14123 (method url-fetch)
14124 (uri (cran-uri "DDRTree" version))
14125 (sha256
14126 (base32
14127 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
14128 (properties `((upstream-name . "DDRTree")))
14129 (build-system r-build-system)
14130 (propagated-inputs
14131 (list r-bh r-irlba r-rcpp r-rcppeigen))
14132 (home-page "https://cran.r-project.org/web/packages/DDRTree")
14133 (synopsis "Learning principal graphs with DDRTree")
14134 (description
14135 "This package provides an implementation of the framework of
14136 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
14137 dimensional space while constructs a principal tree which passes through the
14138 middle of the data simultaneously. DDRTree shows superiority to
14139 alternatives (Wishbone, DPT) for inferring the ordering as well as the
14140 intrinsic structure of single cell genomics data. In general, it could be
14141 used to reconstruct the temporal progression as well as the bifurcation
14142 structure of any data type.")
14143 (license license:asl2.0)))
14144
14145 (define-public r-corpcor
14146 (package
14147 (name "r-corpcor")
14148 (version "1.6.10")
14149 (source
14150 (origin
14151 (method url-fetch)
14152 (uri (cran-uri "corpcor" version))
14153 (sha256
14154 (base32
14155 "028fw61n61i79fhnaqx7gmdifdpbvp3yiaq9vvfrbv4k7i84r83i"))))
14156 (build-system r-build-system)
14157 (home-page "http://strimmerlab.org/software/corpcor/")
14158 (synopsis "Efficient estimation of covariance and (partial) correlation")
14159 (description
14160 "This package implements a James-Stein-type shrinkage estimator for the
14161 covariance matrix, with separate shrinkage for variances and correlations.
14162 Furthermore, functions are available for fast singular value decomposition,
14163 for computing the pseudoinverse, and for checking the rank and positive
14164 definiteness of a matrix.")
14165 (license license:gpl3+)))
14166
14167 (define-public r-rspectra
14168 (package
14169 (name "r-rspectra")
14170 (version "0.16-1")
14171 (source
14172 (origin
14173 (method url-fetch)
14174 (uri (cran-uri "RSpectra" version))
14175 (sha256
14176 (base32
14177 "16ij84wgpsmqmnxqiii8dgihy3bfxazry9znmckhwzba7m0d79fb"))))
14178 (properties `((upstream-name . "RSpectra")))
14179 (build-system r-build-system)
14180 (propagated-inputs
14181 (list r-matrix r-rcpp r-rcppeigen))
14182 (native-inputs
14183 (list r-knitr))
14184 (home-page "https://github.com/yixuan/RSpectra")
14185 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
14186 (description
14187 "This package provides an R interface to the Spectra library for
14188 large-scale eigenvalue and SVD problems. It is typically used to compute a
14189 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
14190 which is usually more efficient than @code{eigen()} if k << n.")
14191 ;; MPL 2 or later.
14192 (license license:mpl2.0)))
14193
14194 (define-public r-vbsr
14195 (package
14196 (name "r-vbsr")
14197 (version "0.0.5")
14198 (source
14199 (origin
14200 (method url-fetch)
14201 (uri (cran-uri "vbsr" version))
14202 (sha256
14203 (base32
14204 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
14205 (build-system r-build-system)
14206 (home-page "https://cran.r-project.org/web/packages/vbsr")
14207 (synopsis "Variational Bayes spike regression regularized linear models")
14208 (description
14209 "This package provides an efficient algorithm for solving ultra-sparse
14210 regularized regression models using a variational Bayes algorithm with a spike
14211 prior. The algorithm is solved on a path, with coordinate updates, and is
14212 capable of generating very sparse models. Very general model
14213 diagnostics for controlling type-1 errors are also provided.")
14214 (license license:gpl2)))
14215
14216 (define-public r-flare
14217 (package
14218 (name "r-flare")
14219 (version "1.7.0.1")
14220 (source
14221 (origin
14222 (method url-fetch)
14223 (uri (cran-uri "flare" version))
14224 (sha256
14225 (base32
14226 "1xvrbvq2y7zfp98ijal3z8y1w2xbzfcdykzw4pqc3mnh0qrhq2d5"))))
14227 (build-system r-build-system)
14228 (propagated-inputs
14229 (list r-igraph r-lattice r-mass r-matrix))
14230 (home-page "https://cran.r-project.org/web/packages/flare")
14231 (synopsis "Family of Lasso regression implementations")
14232 (description
14233 "This package provides implementations of a family of Lasso variants
14234 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
14235 high dimensional sparse linear models.")
14236 (license license:gpl2)))
14237
14238 (define-public r-lassopv
14239 (package
14240 (name "r-lassopv")
14241 (version "0.2.0")
14242 (source
14243 (origin
14244 (method url-fetch)
14245 (uri (cran-uri "lassopv" version))
14246 (sha256
14247 (base32
14248 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
14249 (build-system r-build-system)
14250 (propagated-inputs (list r-lars))
14251 (home-page "https://github.com/lingfeiwang/lassopv")
14252 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
14253 (description
14254 "This package enables you to estimate the p-values for predictors x
14255 against target variable y in Lasso regression, using the regularization
14256 strength when each predictor enters the active set of regularization path for
14257 the first time as the statistic.")
14258 (license license:gpl3)))
14259
14260 (define-public r-splitstackshape
14261 (package
14262 (name "r-splitstackshape")
14263 (version "1.4.8")
14264 (source
14265 (origin
14266 (method url-fetch)
14267 (uri (cran-uri "splitstackshape" version))
14268 (sha256
14269 (base32
14270 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
14271 (build-system r-build-system)
14272 (propagated-inputs
14273 (list r-data-table))
14274 (home-page "https://github.com/mrdwab/splitstackshape")
14275 (synopsis "Stack and reshape datasets after splitting concatenated values")
14276 (description
14277 "Online data collection tools like Google Forms often export
14278 multiple-response questions with data concatenated in cells. The
14279 @code{concat.split} (cSplit) family of functions provided by this package
14280 splits such data into separate cells. This package also includes functions to
14281 stack groups of columns and to reshape wide data, even when the data are
14282 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
14283 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
14284 handle.")
14285 (license license:gpl3)))
14286
14287 (define-public r-tfmpvalue
14288 (package
14289 (name "r-tfmpvalue")
14290 (version "0.0.8")
14291 (source
14292 (origin
14293 (method url-fetch)
14294 (uri (cran-uri "TFMPvalue" version))
14295 (sha256
14296 (base32
14297 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
14298 (properties `((upstream-name . "TFMPvalue")))
14299 (build-system r-build-system)
14300 (propagated-inputs (list r-rcpp))
14301 (home-page "https://github.com/ge11232002/TFMPvalue")
14302 (synopsis "P-value computation for position weight matrices")
14303 (description
14304 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
14305 identification from sequence/alignments, we are interested in the significance
14306 of certain match scores. TFMPvalue provides the accurate calculation of a
14307 p-value with a score threshold for position weight matrices, or the score with
14308 a given p-value. It is an interface to code originally made available by
14309 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
14310 Touzet and Varre (2007).")
14311 (license license:gpl2)))
14312
14313 (define-public r-rncl
14314 (package
14315 (name "r-rncl")
14316 (version "0.8.6")
14317 (source (origin
14318 (method url-fetch)
14319 (uri (cran-uri "rncl" version))
14320 (sha256
14321 (base32
14322 "1ywgwqn82z8h6zpcxxq4hgngdpfa6dj0lr7bfq4cwfml9z075jgw"))))
14323 (build-system r-build-system)
14324 (propagated-inputs
14325 (list r-progress r-rcpp))
14326 (home-page "https://github.com/fmichonneau/rncl")
14327 (synopsis "Interface to the Nexus class library")
14328 (description "This package provides an interface to the Nexus class
14329 library which allows parsing of NEXUS, Newick and other phylogenetic tree
14330 file formats. It provides elements of the file that can be used to build
14331 phylogenetic objects such as @code{ape}'s @code{phylo} or @code{phylobase}'s
14332 @code{phylo4(d)}. This functionality is demonstrated with
14333 @code{read_newick_phylo()} and @code{read_nexus_phylo()}.")
14334 (license license:bsd-2)))
14335
14336 (define-public r-phylobase
14337 (package
14338 (name "r-phylobase")
14339 (version "0.8.10")
14340 (source (origin
14341 (method url-fetch)
14342 (uri (cran-uri "phylobase" version))
14343 (sha256
14344 (base32
14345 "0jzr1gdvmi4l640hwwzh9bxqmpja69bn3ygnaqx37awvyh7khi2s"))))
14346 (build-system r-build-system)
14347 (propagated-inputs
14348 (list r-ade4 r-ape r-rcpp r-rncl r-rnexml))
14349 (native-inputs
14350 (list r-knitr))
14351 (home-page "https://github.com/fmichonneau/phylobase")
14352 (synopsis "Base package for phylogenetic structures and comparative data")
14353 (description "This package provides a base @code{S4} class for comparative
14354 methods, incorporating one or more trees and trait data.")
14355 (license license:gpl2+)))
14356
14357 (define-public r-rnexml
14358 (package
14359 (name "r-rnexml")
14360 (version "2.4.7")
14361 (source (origin
14362 (method url-fetch)
14363 (uri (cran-uri "RNeXML" version))
14364 (sha256
14365 (base32
14366 "1zp6pijsc73jx8cmxb1hng36nvaf5wnhldnzlqhmba9kv9niscfb"))))
14367 (build-system r-build-system)
14368 (propagated-inputs
14369 (list r-ape
14370 r-dplyr
14371 r-httr
14372 r-lazyeval
14373 r-plyr
14374 r-reshape2
14375 r-rlang
14376 r-stringi
14377 r-stringr
14378 r-tidyr
14379 r-uuid
14380 r-xml
14381 r-xml2))
14382 (native-inputs
14383 (list r-knitr))
14384 (home-page "https://docs.ropensci.org/RNeXML/")
14385 (synopsis "Semantically rich I/O for the NeXML Format")
14386 (description "This package provides access to phyloinformatic data in
14387 NeXML format. The package should add new functionality to R such as the
14388 possibility to manipulate NeXML objects in more various and refined way
14389 and compatibility with @code{ape} objects.")
14390 (license license:bsd-3)))
14391
14392 (define-public r-rnifti
14393 (package
14394 (name "r-rnifti")
14395 (version "1.4.0")
14396 (source
14397 (origin
14398 (method url-fetch)
14399 (uri (cran-uri "RNifti" version))
14400 (sha256
14401 (base32
14402 "0kkj9dby85iwnlqb7zwrh1xidlvqip7i1mbgckb5qg4b0a3zgibc"))))
14403 (properties `((upstream-name . "RNifti")))
14404 (build-system r-build-system)
14405 (inputs (list zlib))
14406 (propagated-inputs (list r-rcpp))
14407 (home-page "https://github.com/jonclayden/RNifti")
14408 (synopsis "Fast R and C++ access to NIfTI images")
14409 (description
14410 "This package provides very fast read and write access to images stored
14411 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
14412 compiled C and interpreted R code. It also provides a C/C++ API that can be
14413 used by other packages.")
14414 (license license:gpl2)))
14415
14416 (define-public r-shades
14417 (package
14418 (name "r-shades")
14419 (version "1.4.0")
14420 (source
14421 (origin
14422 (method url-fetch)
14423 (uri (cran-uri "shades" version))
14424 (sha256
14425 (base32
14426 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
14427 (build-system r-build-system)
14428 (home-page "https://github.com/jonclayden/shades")
14429 (synopsis "Simple color manipulation")
14430 (description
14431 "This package provides functions for easily manipulating colors,
14432 creating color scales and calculating color distances.")
14433 (license license:bsd-3)))
14434
14435 (define-public r-ore
14436 (package
14437 (name "r-ore")
14438 (version "1.7.1.1")
14439 (source
14440 (origin
14441 (method url-fetch)
14442 (uri (cran-uri "ore" version))
14443 (sha256
14444 (base32 "0rs5r5h11x4l4nsbl4xqzbl4ahajd5374fq05abcmfjnjr9j64w5"))))
14445 (build-system r-build-system)
14446 (home-page "https://github.com/jonclayden/ore")
14447 (synopsis "R interface to the Onigmo regular expression library")
14448 (description
14449 "This package provides an alternative to R's built-in functionality for
14450 handling regular expressions, based on the Onigmo library. It offers
14451 first-class compiled regex objects, partial matching and function-based
14452 substitutions, amongst other features.")
14453 (license license:bsd-3)))
14454
14455 (define-public r-reportr
14456 (package
14457 (name "r-reportr")
14458 (version "1.3.0")
14459 (source
14460 (origin
14461 (method url-fetch)
14462 (uri (cran-uri "reportr" version))
14463 (sha256
14464 (base32
14465 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
14466 (build-system r-build-system)
14467 (propagated-inputs (list r-ore))
14468 (home-page "https://github.com/jonclayden/reportr")
14469 (synopsis "General message and error reporting system")
14470 (description
14471 "This package provides a system for reporting messages, which offers
14472 certain useful features over the standard R system, such as the incorporation
14473 of output consolidation, message filtering, assertions, expression
14474 substitution, automatic generation of stack traces for debugging, and
14475 conditional reporting based on the current \"output level\".")
14476 (license license:gpl2)))
14477
14478 (define-public r-tractor-base
14479 (package
14480 (name "r-tractor-base")
14481 (version "3.3.3.1")
14482 (source
14483 (origin
14484 (method url-fetch)
14485 (uri (cran-uri "tractor.base" version))
14486 (sha256
14487 (base32
14488 "0w5jw7pf77npkgig7667yikpbwv4dfk1dcq63qm88l409ga2f95p"))))
14489 (properties `((upstream-name . "tractor.base")))
14490 (build-system r-build-system)
14491 (propagated-inputs
14492 (list r-ore r-reportr r-rnifti r-shades))
14493 (home-page "https://www.tractor-mri.org.uk")
14494 (synopsis "Read, manipulate and visualize magnetic resonance images")
14495 (description
14496 "This package provides functions for working with magnetic resonance
14497 images. It supports reading and writing of popular file formats (DICOM,
14498 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
14499 visualization; flexible image manipulation; metadata and sparse image
14500 handling.")
14501 (license license:gpl2)))
14502
14503 (define-public r-grimport
14504 (package
14505 (name "r-grimport")
14506 (version "0.9-5")
14507 (source
14508 (origin
14509 (method url-fetch)
14510 (uri (cran-uri "grImport" version))
14511 (sha256
14512 (base32
14513 "0pbzc45wgp0cpycnw0bzn65ckdszzay0zrp7c7ssxdkifp8bai3a"))))
14514 (properties `((upstream-name . "grImport")))
14515 (build-system r-build-system)
14516 (inputs
14517 (list ghostscript))
14518 (propagated-inputs
14519 (list r-xml))
14520 (home-page "https://cran.r-project.org/web/packages/grImport")
14521 (synopsis "Convert, import, and draw PostScript pictures")
14522 (description
14523 "This package provides functions for converting, importing, and drawing
14524 PostScript pictures in R plots.")
14525 (license license:gpl2+)))
14526
14527 (define-public r-grimport2
14528 (package
14529 (name "r-grimport2")
14530 (version "0.2-0")
14531 (source
14532 (origin
14533 (method url-fetch)
14534 (uri (cran-uri "grImport2" version))
14535 (sha256
14536 (base32
14537 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
14538 (properties `((upstream-name . "grImport2")))
14539 (build-system r-build-system)
14540 (propagated-inputs
14541 (list r-base64enc r-jpeg r-png r-xml))
14542 (home-page "https://cran.r-project.org/web/packages/grImport2/")
14543 (synopsis "Import SVG graphics")
14544 (description
14545 "This package provides functions for importing external vector images and
14546 drawing them as part of R plots. This package is different from the
14547 @code{grImport} package because, where that package imports PostScript format
14548 images, this package imports SVG format images. Furthermore, this package
14549 imports a specific subset of SVG, so external images must be preprocessed
14550 using a package like @code{rsvg} to produce SVG that this package can import.
14551 SVG features that are not supported by R graphics, such as gradient fills, can
14552 be imported and then exported via the @code{gridSVG} package.")
14553 (license license:gpl2+)))
14554
14555 (define-public r-kohonen
14556 (package
14557 (name "r-kohonen")
14558 (version "3.0.11")
14559 (source
14560 (origin
14561 (method url-fetch)
14562 (uri (cran-uri "kohonen" version))
14563 (sha256
14564 (base32
14565 "1bk3j0n8w4fhffv89rgyn4n21c0wcx6lr8jv4wbagpxprl585381"))))
14566 (build-system r-build-system)
14567 (propagated-inputs
14568 (list r-rcpp))
14569 (home-page "https://cran.r-project.org/web/packages/kohonen")
14570 (synopsis "Supervised and unsupervised self-organising maps")
14571 (description
14572 "This package provides functions to train @dfn{self-organising
14573 maps} (SOMs). Also interrogation of the maps and prediction using trained
14574 maps are supported. The name of the package refers to Teuvo Kohonen, the
14575 inventor of the SOM.")
14576 (license license:gpl2+)))
14577
14578 (define-public r-nnls
14579 (package
14580 (name "r-nnls")
14581 (version "1.4")
14582 (source
14583 (origin
14584 (method url-fetch)
14585 (uri (cran-uri "nnls" version))
14586 (sha256
14587 (base32
14588 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
14589 (build-system r-build-system)
14590 (native-inputs (list gfortran))
14591 (home-page "https://cran.r-project.org/web/packages/nnls")
14592 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
14593 (description
14594 "This package provides an R interface to the Lawson-Hanson implementation
14595 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
14596 the combination of non-negative and non-positive constraints.")
14597 (license license:gpl2+)))
14598
14599 (define-public r-iso
14600 (package
14601 (name "r-iso")
14602 (version "0.0-18.1")
14603 (source
14604 (origin
14605 (method url-fetch)
14606 (uri (cran-uri "Iso" version))
14607 (sha256
14608 (base32
14609 "0vy6jdyvp751430sf2f690yhasjr70cpk3p3lnaaxjq3fs5gg99g"))))
14610 (properties `((upstream-name . "Iso")))
14611 (build-system r-build-system)
14612 (native-inputs (list gfortran))
14613 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
14614 (synopsis "Functions to perform isotonic regression")
14615 (description
14616 "This package provides support for linear order and unimodal
14617 order (univariate) isotonic regression and bivariate isotonic regression with
14618 linear order on both variables.")
14619 (license license:gpl2+)))
14620
14621 (define-public r-chemometricswithr
14622 (package
14623 (name "r-chemometricswithr")
14624 (version "0.1.13")
14625 (source
14626 (origin
14627 (method url-fetch)
14628 (uri (cran-uri "ChemometricsWithR" version))
14629 (sha256
14630 (base32
14631 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
14632 (properties
14633 `((upstream-name . "ChemometricsWithR")))
14634 (build-system r-build-system)
14635 (propagated-inputs
14636 (list r-devtools r-kohonen r-mass r-pls))
14637 (home-page "https://github.com/rwehrens/CWR")
14638 (synopsis "Chemometrics with R")
14639 (description
14640 "This package provides functions and scripts used in the book
14641 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
14642 Life Sciences\" by Ron Wehrens, Springer (2011).")
14643 (license license:gpl2+)))
14644
14645 (define-public r-als
14646 (package
14647 (name "r-als")
14648 (version "0.0.6")
14649 (source
14650 (origin
14651 (method url-fetch)
14652 (uri (cran-uri "ALS" version))
14653 (sha256
14654 (base32
14655 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
14656 (properties `((upstream-name . "ALS")))
14657 (build-system r-build-system)
14658 (propagated-inputs
14659 (list r-iso r-nnls))
14660 (home-page "https://cran.r-project.org/web/packages/ALS")
14661 (synopsis "Multivariate curve resolution alternating least squares")
14662 (description
14663 "Alternating least squares is often used to resolve components
14664 contributing to data with a bilinear structure; the basic technique may be
14665 extended to alternating constrained least squares. This package provides an
14666 implementation of @dfn{multivariate curve resolution alternating least
14667 squares} (MCR-ALS).
14668
14669 Commonly applied constraints include unimodality, non-negativity, and
14670 normalization of components. Several data matrices may be decomposed
14671 simultaneously by assuming that one of the two matrices in the bilinear
14672 decomposition is shared between datasets.")
14673 (license license:gpl2+)))
14674
14675 (define-public r-strucchange
14676 (package
14677 (name "r-strucchange")
14678 (version "1.5-2")
14679 (source
14680 (origin
14681 (method url-fetch)
14682 (uri (cran-uri "strucchange" version))
14683 (sha256
14684 (base32
14685 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
14686 (build-system r-build-system)
14687 (propagated-inputs
14688 (list r-sandwich r-zoo))
14689 (home-page "https://cran.r-project.org/web/packages/strucchange")
14690 (synopsis "Testing, monitoring, and dating structural changes")
14691 (description
14692 "This package provides tools for testing, monitoring and dating
14693 structural changes in (linear) regression models. It features tests/methods
14694 from the generalized fluctuation test framework as well as from the F
14695 test (Chow test) framework. This includes methods to fit, plot and test
14696 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
14697 statistics, respectively. It is possible to monitor incoming data online
14698 using fluctuation processes. Finally, the breakpoints in regression models
14699 with structural changes can be estimated together with confidence intervals.
14700 Emphasis is always given to methods for visualizing the data.")
14701 ;; Either of these two GPL versions
14702 (license (list license:gpl2 license:gpl3))))
14703
14704 (define-public r-pixmap
14705 (package
14706 (name "r-pixmap")
14707 (version "0.4-12")
14708 (source
14709 (origin
14710 (method url-fetch)
14711 (uri (cran-uri "pixmap" version))
14712 (sha256
14713 (base32
14714 "1v1a1adsgh5jlvvi98j4nhb1h681s97ip76zdrga12rlsjaahfw9"))))
14715 (build-system r-build-system)
14716 (home-page "https://cran.r-project.org/web/packages/pixmap")
14717 (synopsis "Tools for bitmap images")
14718 (description
14719 "This package provides functions for importing, exporting, plotting and
14720 other manipulations of bitmapped images.")
14721 (license license:gpl2)))
14722
14723 (define-public r-rapidjsonr
14724 (package
14725 (name "r-rapidjsonr")
14726 (version "1.2.0")
14727 (source
14728 (origin
14729 (method url-fetch)
14730 (uri (cran-uri "rapidjsonr" version))
14731 (sha256
14732 (base32
14733 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
14734 (build-system r-build-system)
14735 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
14736 (synopsis "JSON parser")
14737 (description
14738 "This package provides JSON parsing capability through the Rapidjson
14739 library.")
14740 (license license:expat)))
14741
14742 (define-public r-ontologyindex
14743 (package
14744 (name "r-ontologyindex")
14745 (version "2.7")
14746 (source
14747 (origin
14748 (method url-fetch)
14749 (uri (cran-uri "ontologyIndex" version))
14750 (sha256
14751 (base32
14752 "0j3h1spqwjhh1wbmwivmqcyi042yy7d565c3kxgn70xrmy693x1k"))))
14753 (properties `((upstream-name . "ontologyIndex")))
14754 (build-system r-build-system)
14755 (native-inputs
14756 (list r-knitr))
14757 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
14758 (synopsis "Functions for processing ontologies in R")
14759 (description
14760 "This package provides functions for reading ontologies into R as lists
14761 and manipulating sets of ontological terms.")
14762 (license license:gpl2+)))
14763
14764 (define-public r-gargle
14765 (package
14766 (name "r-gargle")
14767 (version "1.2.0")
14768 (source
14769 (origin
14770 (method url-fetch)
14771 (uri (cran-uri "gargle" version))
14772 (sha256
14773 (base32
14774 "0fypj70c1fjmvs57birik76wfx8a2fs4gzicbb52k57i6clwlijd"))))
14775 (build-system r-build-system)
14776 (propagated-inputs
14777 (list r-cli
14778 r-fs
14779 r-glue
14780 r-httr
14781 r-jsonlite
14782 r-rappdirs
14783 r-rlang
14784 r-rstudioapi
14785 r-withr))
14786 (native-inputs
14787 (list r-knitr))
14788 (home-page "https://gargle.r-lib.org")
14789 (synopsis "Utilities for working with Google APIs")
14790 (description
14791 "This package provides utilities for working with Google APIs. This
14792 includes functions and classes for handling common credential types and for
14793 preparing, executing, and processing HTTP requests.")
14794 (license license:expat)))
14795
14796 (define-public r-bigrquery
14797 (package
14798 (name "r-bigrquery")
14799 (version "1.4.0")
14800 (source
14801 (origin
14802 (method url-fetch)
14803 (uri (cran-uri "bigrquery" version))
14804 (sha256
14805 (base32
14806 "02msq61l7vamzpvbhvalh3qil1aa7pr68pwpsivbb6pvz6p4zyns"))))
14807 (build-system r-build-system)
14808 (propagated-inputs
14809 (list r-assertthat
14810 r-bit64
14811 r-curl
14812 r-dbi
14813 r-gargle
14814 r-glue
14815 r-httr
14816 r-jsonlite
14817 r-lifecycle
14818 r-prettyunits
14819 r-progress
14820 r-rapidjsonr
14821 r-rcpp
14822 r-rlang
14823 r-tibble))
14824 (home-page "https://github.com/rstats-db/bigrquery")
14825 (synopsis "R interface to Google's BigQuery API")
14826 (description
14827 "This package provides an R interface to Google's BigQuery database.")
14828 (license license:gpl3)))
14829
14830 (define-public r-gmp
14831 (package
14832 (name "r-gmp")
14833 (version "0.6-5")
14834 (source
14835 (origin
14836 (method url-fetch)
14837 (uri (cran-uri "gmp" version))
14838 (sha256
14839 (base32
14840 "0llyd1wx606vpgvv7d61m0fv2a5yxsmisd38fhzanbjl2wynzrwa"))))
14841 (build-system r-build-system)
14842 (arguments
14843 '(#:phases
14844 (modify-phases %standard-phases
14845 (add-after 'unpack 'set-CC
14846 (lambda _ (setenv "CC" "gcc") #t)))))
14847 (inputs (list gmp))
14848 (home-page "https://cran.r-project.org/web/packages/gmp")
14849 (synopsis "Multiple precision arithmetic")
14850 (description
14851 "This package supports multiple precision arithmetic (big integers and
14852 rationals, prime number tests, matrix computation), \"arithmetic without
14853 limitations\" using the GNU Multiple Precision library.")
14854 ;; Any version of the GPL.
14855 (license license:gpl3+)))
14856
14857 (define-public r-rmpfr
14858 (package
14859 (name "r-rmpfr")
14860 (version "0.8-7")
14861 (source
14862 (origin
14863 (method url-fetch)
14864 (uri (cran-uri "Rmpfr" version))
14865 (sha256
14866 (base32
14867 "1ljpbxvm4agbxnab5dfffbpw5k964hy3gw57dzydq1gpbxwdphlk"))))
14868 (properties `((upstream-name . "Rmpfr")))
14869 (build-system r-build-system)
14870 (inputs
14871 (list mpfr gmp))
14872 (propagated-inputs
14873 (list r-gmp))
14874 (native-inputs
14875 (list pkg-config))
14876 (home-page "http://rmpfr.r-forge.r-project.org/")
14877 (synopsis "R bindings to the MPFR library")
14878 (description
14879 "This package supports arithmetic (via S4 classes and methods) for
14880 arbitrary precision floating point numbers, including transcendental
14881 functions. To this end, the package interfaces with the @dfn{Multiple
14882 Precision Floating-Point Reliable} (MPFR) library.")
14883 (license license:gpl2+)))
14884
14885 (define-public r-assertive-base
14886 (package
14887 (name "r-assertive-base")
14888 (version "0.0-9")
14889 (source
14890 (origin
14891 (method url-fetch)
14892 (uri (cran-uri "assertive.base" version))
14893 (sha256
14894 (base32
14895 "07m0ddz092bgbl2fn1yk932h0iajdcqkri632477wl5a1q5r3w2b"))))
14896 (properties
14897 `((upstream-name . "assertive.base")))
14898 (build-system r-build-system)
14899 (home-page "https://bitbucket.org/richierocks/assertive.base")
14900 (synopsis "Core of the assertive package")
14901 (description
14902 "This package provides a minimal set of predicates and assertions used by
14903 the assertive package. This is mainly for use by other package developers who
14904 want to include run-time testing features in their own packages.")
14905 (license license:gpl3+)))
14906
14907 (define-public r-assertive-properties
14908 (package
14909 (name "r-assertive-properties")
14910 (version "0.0-5")
14911 (source
14912 (origin
14913 (method url-fetch)
14914 (uri (cran-uri "assertive.properties" version))
14915 (sha256
14916 (base32
14917 "1pgljbwwbvbl4kc5c8mcv0qbzq3k6fzi29k88811yml263sm92dn"))))
14918 (properties
14919 `((upstream-name . "assertive.properties")))
14920 (build-system r-build-system)
14921 (propagated-inputs
14922 (list r-assertive-base))
14923 (home-page "https://bitbucket.org/richierocks/assertive.properties")
14924 (synopsis "Assertions to check properties of variables")
14925 (description
14926 "This package provides a set of predicates and assertions for checking
14927 the properties of variables, such as length, names and attributes. This is
14928 mainly for use by other package developers who want to include run-time
14929 testing features in their own packages.")
14930 (license license:gpl3+)))
14931
14932 (define-public r-assertive-numbers
14933 (package
14934 (name "r-assertive-numbers")
14935 (version "0.0-2")
14936 (source
14937 (origin
14938 (method url-fetch)
14939 (uri (cran-uri "assertive.numbers" version))
14940 (sha256
14941 (base32
14942 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
14943 (properties
14944 `((upstream-name . "assertive.numbers")))
14945 (build-system r-build-system)
14946 (propagated-inputs
14947 (list r-assertive-base))
14948 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
14949 (synopsis "Assertions to check properties of numbers")
14950 (description
14951 "This package provides a set of predicates and assertions for checking
14952 the properties of numbers. This is mainly for use by other package developers
14953 who want to include run-time testing features in their own packages.")
14954 (license license:gpl3+)))
14955
14956 (define-public r-assertive-sets
14957 (package
14958 (name "r-assertive-sets")
14959 (version "0.0-3")
14960 (source
14961 (origin
14962 (method url-fetch)
14963 (uri (cran-uri "assertive.sets" version))
14964 (sha256
14965 (base32
14966 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
14967 (properties
14968 `((upstream-name . "assertive.sets")))
14969 (build-system r-build-system)
14970 (propagated-inputs
14971 (list r-assertive-base))
14972 (home-page "https://bitbucket.org/richierocks/assertive.sets")
14973 (synopsis "Assertions to check properties of sets")
14974 (description
14975 "This package provides a set of predicates and assertions for checking
14976 the properties of sets. This is mainly for use by other package developers
14977 who want to include run-time testing features in their own packages.")
14978 (license license:gpl3+)))
14979
14980 (define-public r-assertive-matrices
14981 (package
14982 (name "r-assertive-matrices")
14983 (version "0.0-2")
14984 (source
14985 (origin
14986 (method url-fetch)
14987 (uri (cran-uri "assertive.matrices" version))
14988 (sha256
14989 (base32
14990 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
14991 (properties
14992 `((upstream-name . "assertive.matrices")))
14993 (build-system r-build-system)
14994 (propagated-inputs
14995 (list r-assertive-base))
14996 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
14997 (synopsis "Assertions to check properties of matrices")
14998 (description
14999 "This package provides a set of predicates and assertions for checking
15000 the properties of matrices. This is mainly for use by other package
15001 developers who want to include run-time testing features in their own
15002 packages.")
15003 (license license:gpl3+)))
15004
15005 (define-public r-assertive-models
15006 (package
15007 (name "r-assertive-models")
15008 (version "0.0-2")
15009 (source
15010 (origin
15011 (method url-fetch)
15012 (uri (cran-uri "assertive.models" version))
15013 (sha256
15014 (base32
15015 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
15016 (properties
15017 `((upstream-name . "assertive.models")))
15018 (build-system r-build-system)
15019 (propagated-inputs
15020 (list r-assertive-base))
15021 (home-page "https://bitbucket.org/richierocks/assertive.models")
15022 (synopsis "Assertions to check properties of models")
15023 (description
15024 "This package provides a set of predicates and assertions for checking
15025 the properties of models. This is mainly for use by other package developers
15026 who want to include run-time testing features in their own packages.")
15027 (license license:gpl3+)))
15028
15029 (define-public r-assertive-reflection
15030 (package
15031 (name "r-assertive-reflection")
15032 (version "0.0-5")
15033 (source
15034 (origin
15035 (method url-fetch)
15036 (uri (cran-uri "assertive.reflection" version))
15037 (sha256
15038 (base32
15039 "1g9lpwzy6r2xmyi2mlbcccnfgyzhzbmx5bsicf3vkffxrlkrpjn2"))))
15040 (properties
15041 `((upstream-name . "assertive.reflection")))
15042 (build-system r-build-system)
15043 (propagated-inputs
15044 (list r-assertive-base))
15045 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
15046 (synopsis "Assertions for checking the state of R")
15047 (description
15048 "This package provides a set of predicates and assertions for checking
15049 the state and capabilities of R, the operating system it is running on, and
15050 the IDE being used. This is mainly for use by other package developers who
15051 want to include run-time testing features in their own packages.")
15052 (license license:gpl3+)))
15053
15054 (define-public r-assertive-types
15055 (package
15056 (name "r-assertive-types")
15057 (version "0.0-3")
15058 (source
15059 (origin
15060 (method url-fetch)
15061 (uri (cran-uri "assertive.types" version))
15062 (sha256
15063 (base32
15064 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
15065 (properties
15066 `((upstream-name . "assertive.types")))
15067 (build-system r-build-system)
15068 (propagated-inputs
15069 (list r-assertive-base r-assertive-properties r-codetools))
15070 (home-page "https://bitbucket.org/richierocks/assertive.types")
15071 (synopsis "Assertions to check types of variables")
15072 (description
15073 "This package provides a set of predicates and assertions for checking
15074 the types of variables. This is mainly for use by other package developers
15075 who want to include run-time testing features in their own packages.")
15076 (license license:gpl3+)))
15077
15078 (define-public r-assertive-files
15079 (package
15080 (name "r-assertive-files")
15081 (version "0.0-2")
15082 (source
15083 (origin
15084 (method url-fetch)
15085 (uri (cran-uri "assertive.files" version))
15086 (sha256
15087 (base32
15088 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
15089 (properties
15090 `((upstream-name . "assertive.files")))
15091 (build-system r-build-system)
15092 (propagated-inputs
15093 (list r-assertive-base r-assertive-numbers))
15094 (home-page "https://bitbucket.org/richierocks/assertive.files")
15095 (synopsis "Assertions to check properties of files")
15096 (description
15097 "This package provides a set of predicates and assertions for checking
15098 the properties of files and connections. This is mainly for use by other
15099 package developers who want to include run-time testing features in their own
15100 packages.")
15101 (license license:gpl3+)))
15102
15103 (define-public r-assertive-code
15104 (package
15105 (name "r-assertive-code")
15106 (version "0.0-3")
15107 (source
15108 (origin
15109 (method url-fetch)
15110 (uri (cran-uri "assertive.code" version))
15111 (sha256
15112 (base32
15113 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
15114 (properties
15115 `((upstream-name . "assertive.code")))
15116 (build-system r-build-system)
15117 (propagated-inputs
15118 (list r-assertive-base r-assertive-properties r-assertive-types))
15119 (home-page "https://bitbucket.org/richierocks/assertive.code")
15120 (synopsis "Assertions to check properties of code")
15121 (description
15122 "This package provides a set of predicates and assertions for checking
15123 the properties of code. This is mainly for use by other package developers
15124 who want to include run-time testing features in their own packages.")
15125 (license license:gpl3+)))
15126
15127 (define-public r-assertive-datetimes
15128 (package
15129 (name "r-assertive-datetimes")
15130 (version "0.0-3")
15131 (source
15132 (origin
15133 (method url-fetch)
15134 (uri (cran-uri "assertive.datetimes" version))
15135 (sha256
15136 (base32
15137 "151d05z8n6dpl44pqsa1jfi0ijbigr3zfc43xlw53nd8ymi22kh1"))))
15138 (properties
15139 `((upstream-name . "assertive.datetimes")))
15140 (build-system r-build-system)
15141 (propagated-inputs
15142 (list r-assertive-base r-assertive-types))
15143 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
15144 (synopsis "Assertions to check properties of dates and times")
15145 (description
15146 "This package provides a set of predicates and assertions for checking
15147 the properties of dates and times. This is mainly for use by other package
15148 developers who want to include run-time testing features in their own
15149 packages.")
15150 (license license:gpl3+)))
15151
15152 (define-public r-assertive-strings
15153 (package
15154 (name "r-assertive-strings")
15155 (version "0.0-3")
15156 (source
15157 (origin
15158 (method url-fetch)
15159 (uri (cran-uri "assertive.strings" version))
15160 (sha256
15161 (base32
15162 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
15163 (properties
15164 `((upstream-name . "assertive.strings")))
15165 (build-system r-build-system)
15166 (propagated-inputs
15167 (list r-assertive-base r-assertive-types r-stringi))
15168 (home-page "https://bitbucket.org/richierocks/assertive.strings")
15169 (synopsis "Assertions to check properties of strings")
15170 (description
15171 "This package provides a set of predicates and assertions for checking
15172 the properties of strings. This is mainly for use by other package developers
15173 who want to include run-time testing features in their own packages.")
15174 (license license:gpl3+)))
15175
15176 (define-public r-assertive-data-us
15177 (package
15178 (name "r-assertive-data-us")
15179 (version "0.0-2")
15180 (source
15181 (origin
15182 (method url-fetch)
15183 (uri (cran-uri "assertive.data.us" version))
15184 (sha256
15185 (base32
15186 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
15187 (properties
15188 `((upstream-name . "assertive.data.us")))
15189 (build-system r-build-system)
15190 (propagated-inputs
15191 (list r-assertive-base r-assertive-strings))
15192 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
15193 (synopsis "Assertions to check properties of strings")
15194 (description
15195 "This package provides a set of predicates and assertions for checking
15196 the properties of US-specific complex data types. This is mainly for use by
15197 other package developers who want to include run-time testing features in
15198 their own packages.")
15199 (license license:gpl3+)))
15200
15201 (define-public r-assertive-data-uk
15202 (package
15203 (name "r-assertive-data-uk")
15204 (version "0.0-2")
15205 (source
15206 (origin
15207 (method url-fetch)
15208 (uri (cran-uri "assertive.data.uk" version))
15209 (sha256
15210 (base32
15211 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
15212 (properties
15213 `((upstream-name . "assertive.data.uk")))
15214 (build-system r-build-system)
15215 (propagated-inputs
15216 (list r-assertive-base r-assertive-strings))
15217 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
15218 (synopsis "Assertions to check properties of strings")
15219 (description
15220 "This package provides a set of predicates and assertions for checking
15221 the properties of UK-specific complex data types. This is mainly for use by
15222 other package developers who want to include run-time testing features in
15223 their own packages.")
15224 (license license:gpl3+)))
15225
15226 (define-public r-assertive-data
15227 (package
15228 (name "r-assertive-data")
15229 (version "0.0-3")
15230 (source
15231 (origin
15232 (method url-fetch)
15233 (uri (cran-uri "assertive.data" version))
15234 (sha256
15235 (base32
15236 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
15237 (properties
15238 `((upstream-name . "assertive.data")))
15239 (build-system r-build-system)
15240 (propagated-inputs
15241 (list r-assertive-base r-assertive-strings))
15242 (home-page "https://bitbucket.org/richierocks/assertive.data")
15243 (synopsis "Assertions to check properties of data")
15244 (description
15245 "This package provides a set of predicates and assertions for checking
15246 the properties of (country independent) complex data types. This is mainly
15247 for use by other package developers who want to include run-time testing
15248 features in their own packages.")
15249 (license license:gpl3+)))
15250
15251 (define-public r-assertive
15252 (package
15253 (name "r-assertive")
15254 (version "0.3-6")
15255 (source
15256 (origin
15257 (method url-fetch)
15258 (uri (cran-uri "assertive" version))
15259 (sha256
15260 (base32
15261 "02palil82idqhhshcdjsfsja9qkqnd0dczqzj5gbccy4hfg1c0y4"))))
15262 (build-system r-build-system)
15263 (propagated-inputs
15264 (list r-assertive-base
15265 r-assertive-code
15266 r-assertive-data
15267 r-assertive-data-uk
15268 r-assertive-data-us
15269 r-assertive-datetimes
15270 r-assertive-files
15271 r-assertive-matrices
15272 r-assertive-models
15273 r-assertive-numbers
15274 r-assertive-properties
15275 r-assertive-reflection
15276 r-assertive-sets
15277 r-assertive-strings
15278 r-assertive-types
15279 r-knitr))
15280 (native-inputs
15281 (list r-knitr))
15282 (home-page "https://bitbucket.org/richierocks/assertive")
15283 (synopsis "Readable check functions to ensure code integrity")
15284 (description
15285 "This package provides lots of predicates (@code{is_*} functions) to
15286 check the state of your variables, and assertions (@code{assert_*} functions)
15287 to throw errors if they aren't in the right form.")
15288 (license license:gpl3+)))
15289
15290 (define-public r-dotcall64
15291 (package
15292 (name "r-dotcall64")
15293 (version "1.0-1")
15294 (source
15295 (origin
15296 (method url-fetch)
15297 (uri (cran-uri "dotCall64" version))
15298 (sha256
15299 (base32
15300 "1im5k8jbviwj2i42mq1kmjskh80isa7jr9w8i0fknidrzzy2h2zi"))))
15301 (properties `((upstream-name . "dotCall64")))
15302 (build-system r-build-system)
15303 (native-inputs (list gfortran))
15304 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
15305 (synopsis "Enhanced foreign function interface supporting long vectors")
15306 (description
15307 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
15308 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
15309 supports long vectors, arguments of type 64-bit integer, and provides a
15310 mechanism to avoid unnecessary copies of read-only and write-only arguments.
15311 This makes it a convenient and fast interface to C/C++ and Fortran code.")
15312 (license license:gpl2+)))
15313
15314 (define-public r-spam
15315 (package
15316 (name "r-spam")
15317 (version "2.8-0")
15318 (source
15319 (origin
15320 (method url-fetch)
15321 (uri (cran-uri "spam" version))
15322 (sha256
15323 (base32 "1ann2a2ifr3z983fcg1c0pkgmbxz6a0ym5q1dmq1r382bd1pg0fr"))))
15324 (build-system r-build-system)
15325 (propagated-inputs
15326 (list r-dotcall64))
15327 (native-inputs
15328 (list gfortran r-knitr))
15329 (home-page "https://www.math.uzh.ch/pages/spam/")
15330 (synopsis "Sparse matrix algebra")
15331 (description
15332 "This package provides a set of functions for sparse matrix algebra.
15333 Differences with other sparse matrix packages are:
15334
15335 @enumerate
15336 @item it only supports (essentially) one sparse matrix format;
15337 @item it is based on transparent and simple structure(s);
15338 @item it is tailored for MCMC calculations within G(M)RF;
15339 @item and it is fast and scalable (with the extension package @code{spam64}).
15340 @end enumerate\n")
15341 ;; Either of these licenses
15342 (license (list license:bsd-3 license:lgpl2.0))))
15343
15344 (define-public r-fields
15345 (package
15346 (name "r-fields")
15347 (version "13.3")
15348 (source
15349 (origin
15350 (method url-fetch)
15351 (uri (cran-uri "fields" version))
15352 (sha256
15353 (base32 "1hs4k5a9hh0r5fsrnpnvs6wvf78xpjzj8a2j6643dsz73a5q6ln6"))))
15354 (build-system r-build-system)
15355 (propagated-inputs
15356 (list r-maps r-spam r-viridis))
15357 (native-inputs
15358 (list gfortran))
15359 (home-page "https://www.image.ucar.edu/fields")
15360 (synopsis "Tools for spatial data")
15361 (description
15362 "This is a package for curve, surface and function fitting with an
15363 emphasis on splines, spatial data and spatial statistics. The major methods
15364 include cubic, and thin plate splines, Kriging, and compactly supported
15365 covariance functions for large data sets.")
15366 (license license:gpl2+)))
15367
15368 (define-public r-spatialextremes
15369 (package
15370 (name "r-spatialextremes")
15371 (version "2.1-0")
15372 (source
15373 (origin
15374 (method url-fetch)
15375 (uri (cran-uri "SpatialExtremes" version))
15376 (sha256
15377 (base32
15378 "0z1swxp1syz8hdskarjxx4sdd7wx835kcnb783bwqm235yh991j3"))))
15379 (properties
15380 `((upstream-name . "SpatialExtremes")))
15381 (build-system r-build-system)
15382 (propagated-inputs
15383 (list r-fields r-maps))
15384 (home-page "http://spatialextremes.r-forge.r-project.org/")
15385 (synopsis "Modelling spatial extremes")
15386 (description
15387 "This package provides tools for the statistical modelling of spatial
15388 extremes using max-stable processes, copula or Bayesian hierarchical models.
15389 More precisely, this package allows (conditional) simulations from various
15390 parametric max-stable models, analysis of the extremal spatial dependence, the
15391 fitting of such processes using composite likelihoods or least square (simple
15392 max-stable processes only), model checking and selection and prediction.")
15393 (license license:gpl2+)))
15394
15395 (define-public r-drc
15396 (package
15397 (name "r-drc")
15398 (version "3.0-1")
15399 (source
15400 (origin
15401 (method url-fetch)
15402 (uri (cran-uri "drc" version))
15403 (sha256
15404 (base32
15405 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
15406 (build-system r-build-system)
15407 (propagated-inputs
15408 (list r-car
15409 r-gtools
15410 r-mass
15411 r-multcomp
15412 r-plotrix
15413 r-scales))
15414 (home-page "https://cran.r-project.org/web/packages/drc")
15415 (synopsis "Analysis of dose-response curves")
15416 (description
15417 "This package provides a suite of flexible and versatile model fitting
15418 and after-fitting functions for the analysis of dose-response data.")
15419 (license license:gpl2+)))
15420
15421 (define-public r-rmeta
15422 (package
15423 (name "r-rmeta")
15424 (version "3.0")
15425 (source
15426 (origin
15427 (method url-fetch)
15428 (uri (cran-uri "rmeta" version))
15429 (sha256
15430 (base32
15431 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
15432 (build-system r-build-system)
15433 (home-page "https://cran.r-project.org/web/packages/rmeta")
15434 (synopsis "Tools for meta-analysis")
15435 (description
15436 "This package provides functions for simple fixed and random effects
15437 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
15438 draws standard summary plots, funnel plots, and computes summaries and tests
15439 for association and heterogeneity.")
15440 (license license:gpl2)))
15441
15442 (define-public r-bootstrap
15443 (package
15444 (name "r-bootstrap")
15445 (version "2019.6")
15446 (source
15447 (origin
15448 (method url-fetch)
15449 (uri (cran-uri "bootstrap" version))
15450 (sha256
15451 (base32
15452 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
15453 (build-system r-build-system)
15454 (native-inputs (list gfortran))
15455 (home-page "https://cran.r-project.org/web/packages/bootstrap")
15456 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
15457 (description
15458 "This package provides software and data for the book \"An Introduction
15459 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
15460 This package is primarily provided for projects already based on it, and for
15461 support of the book. New projects should preferentially use the recommended
15462 package \"boot\".")
15463 (license license:bsd-3)))
15464
15465 (define-public r-survivalroc
15466 (package
15467 (name "r-survivalroc")
15468 (version "1.0.3")
15469 (source
15470 (origin
15471 (method url-fetch)
15472 (uri (cran-uri "survivalROC" version))
15473 (sha256
15474 (base32
15475 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
15476 (properties `((upstream-name . "survivalROC")))
15477 (build-system r-build-system)
15478 (home-page "https://cran.r-project.org/web/packages/survivalROC")
15479 (synopsis "Time-dependent ROC curve estimation from censored survival data")
15480 (description
15481 "Compute time-dependent ROC curve from censored survival data using
15482 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
15483 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
15484 (license license:gpl2+)))
15485
15486 (define-public r-locfdr
15487 (package
15488 (name "r-locfdr")
15489 (version "1.1-8")
15490 (source (origin
15491 (method url-fetch)
15492 (uri (cran-uri "locfdr" version))
15493 (sha256
15494 (base32
15495 "1falkbp2xz07am8jlhwlvyqvxnli4nwl188kd0g58vdfjcjy3mj2"))))
15496 (build-system r-build-system)
15497 (home-page "https://cran.r-project.org/web/packages/locfdr/")
15498 (synopsis "Computes local false discovery rates")
15499 (description "This package can be used to compute local false
15500 discovery rates.")
15501 (license license:gpl2)))
15502
15503 (define-public r-longitudinal
15504 (package
15505 (name "r-longitudinal")
15506 (version "1.1.13")
15507 (source
15508 (origin
15509 (method url-fetch)
15510 (uri (cran-uri "longitudinal" version))
15511 (sha256
15512 (base32
15513 "046w3xbr535c5jyd68adv42a7limxp1mv57b5w6w673w707lmw2p"))))
15514 (build-system r-build-system)
15515 (propagated-inputs (list r-corpcor))
15516 (home-page "http://strimmerlab.org/software/longitudinal/")
15517 (synopsis "Analysis of multiple time course data")
15518 (description
15519 "This package contains general data structures and functions for
15520 longitudinal data with multiple variables, repeated measurements, and
15521 irregularly spaced time points. It also implements a shrinkage estimator of
15522 dynamical correlation and dynamical covariance.")
15523 (license license:gpl3+)))
15524
15525 (define-public r-genenet
15526 (package
15527 (name "r-genenet")
15528 (version "1.2.16")
15529 (source
15530 (origin
15531 (method url-fetch)
15532 (uri (cran-uri "GeneNet" version))
15533 (sha256
15534 (base32
15535 "1r1khga3nxxjghs4vnbymzp0cwb1q17zw2v3a94qz8fsrirq1sf1"))))
15536 (properties `((upstream-name . "GeneNet")))
15537 (build-system r-build-system)
15538 (propagated-inputs
15539 (list r-corpcor r-fdrtool r-longitudinal))
15540 (home-page "http://strimmerlab.org/software/genenet/")
15541 (synopsis "Modeling and inferring gene networks")
15542 (description
15543 "This package analyzes gene expression (time series) data with focus on
15544 the inference of gene networks. In particular, GeneNet implements the methods
15545 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
15546 for learning large-scale gene association networks (including assignment of
15547 putative directions).")
15548 (license license:gpl3+)))
15549
15550 (define-public r-rbamtools
15551 (package
15552 (name "r-rbamtools")
15553 (version "2.16.17")
15554 (source
15555 (origin
15556 (method url-fetch)
15557 (uri (cran-uri "rbamtools" version))
15558 (sha256
15559 (base32
15560 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
15561 (build-system r-build-system)
15562 (inputs (list zlib))
15563 (propagated-inputs
15564 (list r-refgenome))
15565 (home-page "https://cran.r-project.org/web/packages/rbamtools")
15566 (synopsis "Read and write BAM (binary alignment) files")
15567 (description
15568 "This package provides an R interface to functions of the SAMtools
15569 library.")
15570 (license license:artistic2.0)))
15571
15572 (define-public r-protviz
15573 (package
15574 (name "r-protviz")
15575 (version "0.7.3")
15576 (source
15577 (origin
15578 (method url-fetch)
15579 (uri (cran-uri "protViz" version))
15580 (sha256
15581 (base32
15582 "0f6jwzcqi0w37hvg3i5dlk0c3anpkqh54ibf94vaf17r8sykr4nw"))))
15583 (properties `((upstream-name . "protViz")))
15584 (build-system r-build-system)
15585 (propagated-inputs (list r-rcpp))
15586 (home-page "https://github.com/protViz/protViz/")
15587 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
15588 (description
15589 "This package helps with quality checks, visualizations and analysis of
15590 mass spectrometry data, coming from proteomics experiments. The package is
15591 developed, tested and used at the Functional Genomics Center Zurich, where it
15592 is used mainly for prototyping, teaching, and having fun with proteomics data.
15593 But it can also be used to do data analysis for small scale data sets.")
15594 (license license:gpl3)))
15595
15596 (define-public r-cmprsk
15597 (package
15598 (name "r-cmprsk")
15599 (version "2.2-11")
15600 (source
15601 (origin
15602 (method url-fetch)
15603 (uri (cran-uri "cmprsk" version))
15604 (sha256
15605 (base32 "050f24l5ab1ds9824c7yjahimf6pg8ih2k83jzpzfb0n5k5jfh44"))))
15606 (build-system r-build-system)
15607 (propagated-inputs
15608 (list r-survival))
15609 (native-inputs
15610 (list gfortran))
15611 (home-page "https://cran.r-project.org/web/packages/cmprsk")
15612 (synopsis "Subdistribution analysis of competing risks")
15613 (description
15614 "This package provides tool for estimation, testing and regression
15615 modeling of subdistribution functions in competing risks, as described in
15616 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
15617 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
15618 A proportional hazards model for the subdistribution of a competing risk,
15619 JASA, 94:496-509.")
15620 (license license:gpl2+)))
15621
15622 (define-public r-etm
15623 (package
15624 (name "r-etm")
15625 (version "1.1.1")
15626 (source
15627 (origin
15628 (method url-fetch)
15629 (uri (cran-uri "etm" version))
15630 (sha256
15631 (base32
15632 "1hvrplmdpjjpjji663rw0vjbbrzj2nvr04d1nkc8bf46p4ixyxgy"))))
15633 (build-system r-build-system)
15634 (propagated-inputs
15635 (list r-data-table r-lattice r-rcpp r-rcpparmadillo r-survival))
15636 (home-page "https://cran.r-project.org/web/packages/etm")
15637 (synopsis "Empirical transition matrix")
15638 (description
15639 "The @dfn{empirical transition matrix} (etm) package estimates
15640 the matrix of transition probabilities for any time-inhomogeneous multistate
15641 model with finite state space using the Aalen-Johansen estimator.")
15642 (license license:expat)))
15643
15644 (define-public r-epi
15645 (package
15646 (name "r-epi")
15647 (version "2.46")
15648 (source
15649 (origin
15650 (method url-fetch)
15651 (uri (cran-uri "Epi" version))
15652 (sha256
15653 (base32
15654 "0s3ij0rya4wd7k97kc4s3pwj1d1ypaxl1s7zqr6sa07hp4a8fzz0"))))
15655 (properties `((upstream-name . "Epi")))
15656 (build-system r-build-system)
15657 (propagated-inputs
15658 (list r-cmprsk
15659 r-data-table
15660 r-dplyr
15661 r-etm
15662 r-magrittr
15663 r-mass
15664 r-matrix
15665 r-mgcv
15666 r-numderiv
15667 r-plyr
15668 r-survival
15669 r-zoo))
15670 (home-page "https://BendixCarstensen.com/Epi/")
15671 (synopsis "Statistical analysis in epidemiology")
15672 (description
15673 "This package provides functions for demographic and epidemiological
15674 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
15675 particular representation, manipulation and simulation of multistate data -
15676 the Lexis suite of functions, which includes interfaces to the @code{mstate},
15677 @code{etm} and @code{cmprsk} packages. It also contains functions for
15678 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
15679 data and some useful functions for tabulation and plotting, as well as a
15680 number of epidemiological data sets.")
15681 (license license:gpl2)))
15682
15683 (define-public r-ppls
15684 (package
15685 (name "r-ppls")
15686 (version "1.6-1.1")
15687 (source
15688 (origin
15689 (method url-fetch)
15690 (uri (cran-uri "ppls" version))
15691 (sha256
15692 (base32
15693 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
15694 (build-system r-build-system)
15695 (propagated-inputs (list r-mass))
15696 (home-page "https://cran.r-project.org/web/packages/ppls")
15697 (synopsis "Penalized partial least squares")
15698 (description
15699 "This package contains linear and nonlinear regression methods based on
15700 partial least squares and penalization techniques. Model parameters are
15701 selected via cross-validation, and confidence intervals ans tests for the
15702 regression coefficients can be conducted via jackknifing.")
15703 (license license:gpl2+)))
15704
15705 (define-public r-huge
15706 (package
15707 (name "r-huge")
15708 (version "1.3.5")
15709 (source
15710 (origin
15711 (method url-fetch)
15712 (uri (cran-uri "huge" version))
15713 (sha256
15714 (base32 "1sl457a1lndrx98y2j9a2smanawx2iqlhl82iand0g3p5xp8ch4j"))))
15715 (build-system r-build-system)
15716 (propagated-inputs
15717 (list r-igraph r-mass r-matrix r-rcpp r-rcppeigen))
15718 (home-page "https://cran.r-project.org/web/packages/huge")
15719 (synopsis "High-dimensional undirected graph estimation")
15720 (description
15721 "This package provides a general framework for high-dimensional
15722 undirected graph estimation. It integrates data preprocessing, neighborhood
15723 screening, graph estimation, and model selection techniques into a pipeline.")
15724 (license license:gpl2)))
15725
15726 (define-public r-parcor
15727 (package
15728 (name "r-parcor")
15729 (version "0.2-6")
15730 (source
15731 (origin
15732 (method url-fetch)
15733 (uri (cran-uri "parcor" version))
15734 (sha256
15735 (base32
15736 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
15737 (build-system r-build-system)
15738 (propagated-inputs
15739 (list r-epi r-genenet r-glmnet r-mass r-ppls))
15740 (home-page "https://cran.r-project.org/web/packages/parcor")
15741 (synopsis "Regularized estimation of partial correlation matrices")
15742 (description
15743 "This package estimates the matrix of partial correlations based on
15744 different regularized regression methods: lasso, adaptive lasso, PLS, and
15745 Ridge Regression. In addition, the package provides model selection for
15746 lasso, adaptive lasso and Ridge regression based on cross-validation.")
15747 (license license:gpl2+)))
15748
15749 (define-public r-mcmc
15750 (package
15751 (name "r-mcmc")
15752 (version "0.9-7")
15753 (source
15754 (origin
15755 (method url-fetch)
15756 (uri (cran-uri "mcmc" version))
15757 (sha256
15758 (base32
15759 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
15760 (build-system r-build-system)
15761 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
15762 (synopsis "Markov chain Monte Carlo")
15763 (description
15764 "This package simulates continuous distributions of random vectors using
15765 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
15766 function that evaluates the log unnormalized density. Algorithms are random
15767 walk Metropolis algorithm (function @code{metrop}), simulated
15768 tempering (function @code{temper}), and morphometric random walk
15769 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
15770 by change of variable.")
15771 (license license:expat)))
15772
15773 (define-public r-listenv
15774 (package
15775 (name "r-listenv")
15776 (version "0.8.0")
15777 (source
15778 (origin
15779 (method url-fetch)
15780 (uri (cran-uri "listenv" version))
15781 (sha256
15782 (base32
15783 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
15784 (build-system r-build-system)
15785 (arguments
15786 `(#:phases
15787 (modify-phases %standard-phases
15788 (add-after 'unpack 'set-HOME
15789 (lambda _ (setenv "HOME" "/tmp"))))))
15790 (native-inputs
15791 (list r-r-rsp)) ; vignette builder
15792 (home-page "https://github.com/HenrikBengtsson/listenv")
15793 (synopsis "Environments behaving (almost) as lists")
15794 (description
15795 "This package implements list environments. List environments are
15796 environments that have list-like properties. For instance, the elements of a
15797 list environment are ordered and can be accessed and iterated over using index
15798 subsetting.")
15799 (license license:lgpl2.1+)))
15800
15801 (define-public r-globals
15802 (package
15803 (name "r-globals")
15804 (version "0.15.0")
15805 (source
15806 (origin
15807 (method url-fetch)
15808 (uri (cran-uri "globals" version))
15809 (sha256
15810 (base32
15811 "15llx4233ihj4w815k7inc17530w9ja0mi29n1i0s2sr42j8jdpq"))))
15812 (build-system r-build-system)
15813 (propagated-inputs
15814 (list r-codetools))
15815 (home-page "https://github.com/HenrikBengtsson/globals")
15816 (synopsis "Identify global objects in R expressions")
15817 (description
15818 "This package provides tools to identify global (\"unknown\" or \"free\")
15819 objects in R expressions by code inspection using various strategies, e.g.
15820 conservative or liberal. The objective of this package is to make it as
15821 simple as possible to identify global objects for the purpose of exporting
15822 them in distributed compute environments.")
15823 (license license:lgpl2.1+)))
15824
15825 (define-public r-parallelly
15826 (package
15827 (name "r-parallelly")
15828 (version "1.31.1")
15829 (source
15830 (origin
15831 (method url-fetch)
15832 (uri (cran-uri "parallelly" version))
15833 (sha256
15834 (base32
15835 "1nhp66psk3m79is5qm4ppxkj7bdy46jr2h2pir22ia9ghhyzris0"))))
15836 (properties `((upstream-name . "parallelly")))
15837 (build-system r-build-system)
15838 (home-page "https://github.com/HenrikBengtsson/parallelly")
15839 (synopsis "Enhancements of the parallel package")
15840 (description
15841 "This package provides utility functions that enhance the @code{parallel}
15842 package and support the built-in parallel backends of the @code{future}
15843 package. For example, @code{availableCores} gives the number of CPU cores
15844 available to your R process as given by R options and environment variables,
15845 including those set by job schedulers on high-performance compute clusters.
15846 If none is set, it will fall back to @code{parallel::detectCores}. Another
15847 example is @code{makeClusterPSOCK}, which is backward compatible with
15848 @code{parallel::makePSOCKcluster} while doing a better job in setting up
15849 remote cluster workers without the need for configuring the firewall to do
15850 port-forwarding to your local computer.")
15851 (license license:lgpl2.1+)))
15852
15853 (define-public r-future
15854 (package
15855 (name "r-future")
15856 (version "1.26.1")
15857 (source
15858 (origin
15859 (method url-fetch)
15860 (uri (cran-uri "future" version))
15861 (sha256
15862 (base32
15863 "1mchjdvvwgs8v0iv8z5m6gav3xzvnq11h8qrc7lfnrb2x3d0np53"))))
15864 (build-system r-build-system)
15865 (arguments
15866 `(#:phases
15867 (modify-phases %standard-phases
15868 (add-after 'unpack 'set-HOME
15869 (lambda _ (setenv "HOME" "/tmp"))))))
15870 (propagated-inputs
15871 (list r-digest r-globals r-listenv r-parallelly))
15872 (native-inputs
15873 (list r-r-rsp)) ; vignette builder
15874 (home-page "https://github.com/HenrikBengtsson/future")
15875 (synopsis "Unified parallel and distributed processing in R")
15876 (description
15877 "The purpose of this package is to provide a lightweight and unified
15878 Future API for sequential and parallel processing of R expression via futures.
15879 This package implements sequential, multicore, multisession, and cluster
15880 futures. With these, R expressions can be evaluated on the local machine, in
15881 parallel a set of local machines, or distributed on a mix of local and remote
15882 machines. Extensions to this package implement additional backends for
15883 processing futures via compute cluster schedulers etc. Because of its unified
15884 API, there is no need to modify any code in order to switch from sequential on
15885 the local machine to, say, distributed processing on a remote compute cluster.")
15886 (license license:lgpl2.1+)))
15887
15888 (define-public r-future-apply
15889 (package
15890 (name "r-future-apply")
15891 (version "1.9.0")
15892 (source
15893 (origin
15894 (method url-fetch)
15895 (uri (cran-uri "future.apply" version))
15896 (sha256
15897 (base32
15898 "1xb7qj8izjwmy4aa92p5f4cdbhgp220hrly3b5879f9hrv2w2rk1"))))
15899 (properties `((upstream-name . "future.apply")))
15900 (build-system r-build-system)
15901 (arguments
15902 `(#:phases
15903 (modify-phases %standard-phases
15904 (add-after 'unpack 'set-HOME
15905 (lambda _ (setenv "HOME" "/tmp"))))))
15906 (propagated-inputs
15907 (list r-future r-globals))
15908 (native-inputs
15909 (list r-r-rsp)) ; vignette builder
15910 (home-page "https://github.com/HenrikBengtsson/future.apply")
15911 (synopsis "Apply function to elements in parallel using futures")
15912 (description
15913 "This package provides implementations of @code{apply()},
15914 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
15915 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
15916 can be resolved using any future-supported backend, e.g. parallel on the local
15917 machine or distributed on a compute cluster.")
15918 (license license:gpl2+)))
15919
15920 (define-public r-rsvd
15921 (package
15922 (name "r-rsvd")
15923 (version "1.0.5")
15924 (source
15925 (origin
15926 (method url-fetch)
15927 (uri (cran-uri "rsvd" version))
15928 (sha256
15929 (base32
15930 "07p2hjmpcwcsang8z9sjkpy94rydcin7m3hyvcgzgm5cd6w8c1p4"))))
15931 (build-system r-build-system)
15932 (propagated-inputs
15933 (list r-matrix))
15934 (home-page "https://github.com/erichson/rSVD")
15935 (synopsis "Randomized singular value decomposition")
15936 (description
15937 "Low-rank matrix decompositions are fundamental tools and widely used for
15938 data analysis, dimension reduction, and data compression. Classically, highly
15939 accurate deterministic matrix algorithms are used for this task. However, the
15940 emergence of large-scale data has severely challenged our computational
15941 ability to analyze big data. The concept of randomness has been demonstrated
15942 as an effective strategy to quickly produce approximate answers to familiar
15943 problems such as the @dfn{singular value decomposition} (SVD). This package
15944 provides several randomized matrix algorithms such as the randomized singular
15945 value decomposition (@code{rsvd}), randomized principal component
15946 analysis (@code{rpca}), randomized robust principal component
15947 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
15948 and the randomized CUR decomposition (@code{rcur}). In addition several plot
15949 functions are provided.")
15950 (license license:gpl3+)))
15951
15952 (define-public r-sloop
15953 (package
15954 (name "r-sloop")
15955 (version "1.0.1")
15956 (source
15957 (origin
15958 (method url-fetch)
15959 (uri (cran-uri "sloop" version))
15960 (sha256
15961 (base32
15962 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
15963 (build-system r-build-system)
15964 (propagated-inputs
15965 (list r-codetools r-crayon r-purrr r-rlang r-tibble))
15966 (home-page "https://github.com/r-lib/sloop")
15967 (synopsis "Helpers for object-oriented programming in R")
15968 (description
15969 "This package provides a collection of helper functions designed to
15970 help you to better understand object oriented programming in R, particularly
15971 using @code{S3}.")
15972 (license license:gpl3)))
15973
15974 (define-public r-capushe
15975 (package
15976 (name "r-capushe")
15977 (version "1.1.1")
15978 (source
15979 (origin
15980 (method url-fetch)
15981 (uri (cran-uri "capushe" version))
15982 (sha256
15983 (base32
15984 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
15985 (build-system r-build-system)
15986 (propagated-inputs (list r-mass))
15987 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
15988 (synopsis "Calibrating penalties using slope heuristics")
15989 (description
15990 "This package provides tools for the calibration of penalized criteria
15991 for model selection. The calibration methods available are based on the slope
15992 heuristics.")
15993 (license license:gpl2+)))
15994
15995 (define-public r-dorng
15996 (package
15997 (name "r-dorng")
15998 (version "1.8.2")
15999 (source
16000 (origin
16001 (method url-fetch)
16002 (uri (cran-uri "doRNG" version))
16003 (sha256
16004 (base32
16005 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
16006 (properties `((upstream-name . "doRNG")))
16007 (build-system r-build-system)
16008 (propagated-inputs
16009 (list r-foreach r-iterators r-rngtools))
16010 (home-page "https://renozao.github.io/doRNG/")
16011 (synopsis "Generic reproducible parallel backend for foreach loops")
16012 (description
16013 "This package provides functions to perform reproducible parallel
16014 @code{foreach} loops, using independent random streams as generated by
16015 L'Ecuyer's combined multiple-recursive generator. It enables to easily
16016 convert standard @code{%dopar%} loops into fully reproducible loops,
16017 independently of the number of workers, the task scheduling strategy, or the
16018 chosen parallel environment and associated foreach backend.")
16019 (license license:gpl2+)))
16020
16021 (define-public r-blockmodeling
16022 (package
16023 (name "r-blockmodeling")
16024 (version "1.0.5")
16025 (source
16026 (origin
16027 (method url-fetch)
16028 (uri (cran-uri "blockmodeling" version))
16029 (sha256
16030 (base32
16031 "1vc8gy4slsywcwxq532373i0dq73fhs5cac9mr6zz2pjaaxjghhq"))))
16032 (build-system r-build-system)
16033 (propagated-inputs
16034 (list r-matrix))
16035 (native-inputs (list gfortran))
16036 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
16037 (synopsis "Generalized and classical blockmodeling of valued networks")
16038 (description
16039 "This package is primarily meant as an implementation of generalized
16040 blockmodeling for valued networks. In addition, measures of similarity or
16041 dissimilarity based on structural equivalence and regular equivalence (REGE
16042 algorithms) can be computed and partitioned matrices can be plotted.")
16043 (license license:gpl2+)))
16044
16045 (define-public r-upsetr
16046 (package
16047 (name "r-upsetr")
16048 (version "1.4.0")
16049 (source
16050 (origin
16051 (method url-fetch)
16052 (uri (cran-uri "UpSetR" version))
16053 (sha256
16054 (base32
16055 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
16056 (properties `((upstream-name . "UpSetR")))
16057 (build-system r-build-system)
16058 (propagated-inputs
16059 (list r-ggplot2 r-gridextra r-plyr r-scales))
16060 (home-page "https://github.com/hms-dbmi/UpSetR")
16061 (synopsis "Visualize intersecting sets")
16062 (description
16063 "This package provides a more scalable alternative to Venn and Euler
16064 diagrams for visualizing intersecting sets. Create visualizations of
16065 intersecting sets using a novel matrix design, along with visualizations of
16066 several common set, element and attribute related tasks.")
16067 (license license:expat)))
16068
16069 ;; This package includes a JavaScript file, which is not minified. When
16070 ;; upgrading please check that there are no new minified JavaScript files.
16071 (define-public r-shinybs
16072 (package
16073 (name "r-shinybs")
16074 (version "0.61.1")
16075 (source
16076 (origin
16077 (method url-fetch)
16078 (uri (cran-uri "shinyBS" version))
16079 (sha256
16080 (base32
16081 "0h51685a9qll4agayldjyryi60ih969219ibg071slv0613p5v8a"))))
16082 (properties `((upstream-name . "shinyBS")))
16083 (build-system r-build-system)
16084 ;; The tests spawn Shiny browser apps. They cannot be run
16085 ;; non-interactively.
16086 (arguments '(#:tests? #f))
16087 (propagated-inputs
16088 (list r-htmltools r-shiny))
16089 (home-page "https://ebailey78.github.io/shinyBS/")
16090 (synopsis "Twitter Bootstrap components for Shiny")
16091 (description
16092 "This package adds additional Twitter Bootstrap components to Shiny.")
16093 (license license:gpl3)))
16094
16095 (define-public r-shinyjqui
16096 (package
16097 (name "r-shinyjqui")
16098 (version "0.4.1")
16099 (source
16100 (origin
16101 (method url-fetch)
16102 (uri (cran-uri "shinyjqui" version))
16103 (sha256
16104 (base32
16105 "135gwz7syyb6pbn0lkvmq0v1c6r1zivavnqhi1rnzbbzlysi27v1"))
16106 (snippet
16107 '(for-each delete-file
16108 (list "inst/www/shinyjqui.min.js"
16109 "inst/www/jquery.ui.touch-punch.min.js")))))
16110 (properties `((upstream-name . "shinyjqui")))
16111 (build-system r-build-system)
16112 (arguments
16113 `(#:phases
16114 (modify-phases %standard-phases
16115 (add-after 'unpack 'process-javascript
16116 (lambda* (#:key inputs #:allow-other-keys)
16117 (with-directory-excursion "inst/www"
16118 (let ((mapping
16119 `((,(string-append (assoc-ref inputs "js-jquery.ui.touch-punch")
16120 "/jquery.ui.touch-punch.js")
16121 . "jquery.ui.touch-punch.min.js")
16122 ("shinyjqui.js"
16123 . "shinyjqui.min.js"))))
16124 (for-each (lambda (source target)
16125 (format #true "Processing ~a --> ~a~%"
16126 source target)
16127 (invoke "esbuild" source "--minify"
16128 (string-append "--outfile=" target)))
16129 (map car mapping)
16130 (map cdr mapping)))))))))
16131 (propagated-inputs
16132 (list r-htmltools r-htmlwidgets r-jsonlite r-rlang r-shiny))
16133 (native-inputs
16134 `(("r-knitr" ,r-knitr)
16135 ("esbuild" ,esbuild)
16136 ("js-jquery.ui.touch-punch"
16137 ,(origin
16138 (method git-fetch)
16139 (uri (git-reference
16140 (url "https://github.com/furf/jquery-ui-touch-punch")
16141 (commit "8f7559b6e65cdc3ee3648d5fe76d38c653f87ff5")))
16142 (sha256
16143 (base32
16144 "1lzywp2q9hwx6d5fqjla95vp7ra2lahr5dam7lsqjmch9d98r48q"))))))
16145 (home-page "https://github.com/yang-tang/shinyjqui")
16146 (synopsis "jQuery UI interactions and effects for Shiny")
16147 (description
16148 "This is an extension to Shiny that brings interactions and animation
16149 effects from the jQuery UI library.")
16150 (license license:expat)))
16151
16152 (define-public r-shinymanager
16153 (package
16154 (name "r-shinymanager")
16155 (version "1.0.400")
16156 (source
16157 (origin
16158 (method url-fetch)
16159 (uri (cran-uri "shinymanager" version))
16160 (sha256
16161 (base32 "1np2yp5pn8g9i4jhysfgprmdn13cpw4vaaagrd72rnk2r4hpmyx4"))))
16162 (properties `((upstream-name . "shinymanager")))
16163 (build-system r-build-system)
16164 (propagated-inputs
16165 (list r-billboarder
16166 r-dbi
16167 r-dt
16168 r-htmltools
16169 r-openssl
16170 r-r-utils
16171 r-r6
16172 r-rsqlite
16173 r-scrypt
16174 r-shiny))
16175 (native-inputs (list r-knitr))
16176 (home-page "https://github.com/datastorm-open/shinymanager")
16177 (synopsis "Authentication management for Shiny applications")
16178 (description
16179 "This package provides simple and secure authentification mechanism for
16180 single Shiny applications. Credentials are stored in an encrypted SQLite
16181 database.")
16182 (license license:gpl3)))
16183
16184 (define-public r-outliers
16185 (package
16186 (name "r-outliers")
16187 (version "0.15")
16188 (source
16189 (origin
16190 (method url-fetch)
16191 (uri (cran-uri "outliers" version))
16192 (sha256
16193 (base32
16194 "1yrmwvjjb0a6sbx940k9svf23cykcxz8rrwcgyic7lpgzbrdfcfc"))))
16195 (build-system r-build-system)
16196 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
16197 (synopsis "Tests for outliers")
16198 (description
16199 "This package provides a collection of some tests commonly used for
16200 identifying outliers.")
16201 (license license:gpl2+)))
16202
16203 (define-public r-bayesm
16204 (package
16205 (name "r-bayesm")
16206 (version "3.1-4")
16207 (source
16208 (origin
16209 (method url-fetch)
16210 (uri (cran-uri "bayesm" version))
16211 (sha256
16212 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
16213 (build-system r-build-system)
16214 (propagated-inputs
16215 (list r-rcpp r-rcpparmadillo))
16216 (home-page "http://www.perossi.org/home/bsm-1")
16217 (synopsis "Bayesian inference for marketing/micro-econometrics")
16218 (description
16219 "This package covers many important models used in marketing and
16220 micro-econometrics applications, including Bayes Regression (univariate or
16221 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
16222 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
16223 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
16224 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
16225 Estimation with normal base, Hierarchical Linear Models with normal prior and
16226 covariates, Hierarchical Linear Models with a mixture of normals prior and
16227 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
16228 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
16229 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
16230 analysis of choice-based conjoint data, Bayesian treatment of linear
16231 instrumental variables models, Analysis of Multivariate Ordinal survey data
16232 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
16233 Coefficient Logit Models.")
16234 (license license:gpl2+)))
16235
16236 (define-public r-tensora
16237 (package
16238 (name "r-tensora")
16239 (version "0.36.2")
16240 (source
16241 (origin
16242 (method url-fetch)
16243 (uri (cran-uri "tensorA" version))
16244 (sha256
16245 (base32
16246 "19wwh654qlja4z1n7afjpzsrrm53p8ddysa2vra5mdnkddb4g2cf"))))
16247 (properties `((upstream-name . "tensorA")))
16248 (build-system r-build-system)
16249 (home-page "http://www.stat.boogaart.de/tensorA")
16250 (synopsis "Advanced tensor arithmetic with named indices")
16251 (description
16252 "This package provides convenience functions for advanced linear algebra
16253 with tensors and computation with datasets of tensors on a higher level
16254 abstraction. It includes Einstein and Riemann summing conventions, dragging,
16255 co- and contravariate indices, and parallel computations on sequences of
16256 tensors.")
16257 (license license:gpl2+)))
16258
16259 (define-public r-rarpack
16260 (package
16261 (name "r-rarpack")
16262 (version "0.11-0")
16263 (source
16264 (origin
16265 (method url-fetch)
16266 (uri (cran-uri "rARPACK" version))
16267 (sha256
16268 (base32
16269 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
16270 (properties `((upstream-name . "rARPACK")))
16271 (build-system r-build-system)
16272 (propagated-inputs (list r-rspectra))
16273 (home-page "https://github.com/yixuan/rARPACK")
16274 (synopsis "Solvers for large scale eigenvalue and SVD problems")
16275 (description
16276 "This package was previously an R wrapper of the ARPACK library, and now
16277 a shell of the R package RSpectra, an R interface to the Spectra library for
16278 solving large scale eigenvalue/vector problems. The current version of
16279 rARPACK simply imports and exports the functions provided by RSpectra. New
16280 users of rARPACK are advised to switch to the RSpectra package.")
16281 (license license:bsd-3)))
16282
16283 (define-public r-compositions
16284 (package
16285 (name "r-compositions")
16286 (version "2.0-4")
16287 (source
16288 (origin
16289 (method url-fetch)
16290 (uri (cran-uri "compositions" version))
16291 (sha256
16292 (base32
16293 "1bqg0qqzsf92q0jb7hdjycr54bwv8rk7ajhvxgch5yslyqxpm73v"))))
16294 (build-system r-build-system)
16295 (propagated-inputs
16296 (list r-bayesm r-mass r-robustbase r-tensora))
16297 (native-inputs
16298 (list r-knitr))
16299 (home-page "http://www.stat.boogaart.de/compositions")
16300 (synopsis "Compositional data analysis")
16301 (description
16302 "This package provides functions for the consistent analysis of
16303 compositional data (e.g. portions of substances) and positive
16304 numbers (e.g. concentrations).")
16305 (license license:gpl2+)))
16306
16307 (define-public r-cobs
16308 (package
16309 (name "r-cobs")
16310 (version "1.3-4")
16311 (source
16312 (origin
16313 (method url-fetch)
16314 (uri (cran-uri "cobs" version))
16315 (sha256
16316 (base32
16317 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
16318 (build-system r-build-system)
16319 (propagated-inputs
16320 (list r-quantreg r-sparsem))
16321 (home-page "https://cran.r-project.org/web/packages/cobs")
16322 (synopsis "Constrained B-Splines (sparse matrix based)")
16323 (description
16324 "This package provides qualitatively constrained (regression) smoothing
16325 splines via linear programming and sparse matrices.")
16326 (license license:gpl2+)))
16327
16328 (define-public r-drimpute
16329 (package
16330 (name "r-drimpute")
16331 (version "1.0")
16332 (source
16333 (origin
16334 (method url-fetch)
16335 (uri (cran-uri "DrImpute" version))
16336 (sha256
16337 (base32
16338 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
16339 (properties `((upstream-name . "DrImpute")))
16340 (build-system r-build-system)
16341 (propagated-inputs
16342 (list r-rcpp r-rcpparmadillo))
16343 (home-page "https://github.com/ikwak2/DrImpute")
16344 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
16345 (description
16346 "This is an R package for imputing dropout events. Many statistical
16347 methods in cell type identification, visualization and lineage reconstruction
16348 do not account for dropout events. DrImpute can improve the performance of
16349 such software by imputing dropout events.")
16350 (license license:gpl3)))
16351
16352 (define-public r-gamlss-dist
16353 (package
16354 (name "r-gamlss-dist")
16355 (version "6.0-3")
16356 (source
16357 (origin
16358 (method url-fetch)
16359 (uri (cran-uri "gamlss.dist" version))
16360 (sha256
16361 (base32 "1gqjr419v8z2ygh0h1xz7bipnsbp820njzwq7z3r9f41rn1ym47c"))))
16362 (properties `((upstream-name . "gamlss.dist")))
16363 (build-system r-build-system)
16364 (propagated-inputs (list r-mass))
16365 (home-page "http://www.gamlss.org/")
16366 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
16367 (description
16368 "This package provides a set of distributions which can be used for
16369 modelling the response variables in Generalized Additive Models for Location
16370 Scale and Shape. The distributions can be continuous, discrete or mixed
16371 distributions. Extra distributions can be created, by transforming, any
16372 continuous distribution defined on the real line, to a distribution defined on
16373 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
16374 transformation, respectively.")
16375 ;; Either version of the GPL.
16376 (license (list license:gpl2 license:gpl3))))
16377
16378 ;; This package includes JavaScript files, which are not minified. When
16379 ;; upgrading please check that there are no new minified JavaScript files.
16380 (define-public r-shinyjs
16381 (package
16382 (name "r-shinyjs")
16383 (version "2.1.0")
16384 (source
16385 (origin
16386 (method url-fetch)
16387 (uri (cran-uri "shinyjs" version))
16388 (sha256
16389 (base32
16390 "1id9gsrkr28xl80a8794in17rxmmz06zqvd5hlns7mqz3fzhrhky"))))
16391 (build-system r-build-system)
16392 (propagated-inputs
16393 (list r-digest r-jsonlite r-shiny))
16394 (native-inputs
16395 (list r-knitr))
16396 (home-page "https://deanattali.com/shinyjs")
16397 (synopsis "Improve the user experience of your Shiny apps")
16398 (description
16399 "Perform common useful JavaScript operations in Shiny apps that will
16400 greatly improve your apps without having to know any JavaScript. Examples
16401 include: hiding an element, disabling an input, resetting an input back to its
16402 original value, delaying code execution by a few seconds, and many more useful
16403 functions for both the end user and the developer. Shinyjs can also be used
16404 to easily call your own custom JavaScript functions from R.")
16405 (license license:agpl3+)))
16406
16407 ;; This package includes minified JavaScript files. When upgrading please
16408 ;; check that there are no new minified JavaScript files.
16409 (define-public r-colourpicker
16410 (package
16411 (name "r-colourpicker")
16412 (version "1.1.1")
16413 (source
16414 (origin
16415 (method url-fetch)
16416 (uri (cran-uri "colourpicker" version))
16417 (sha256
16418 (base32
16419 "1q1wi3g403fbzp4ys3gsjbwdc86x770cx323qgi47ca8n219kl50"))))
16420 (build-system r-build-system)
16421 (arguments
16422 `(#:phases
16423 (modify-phases %standard-phases
16424 (add-after 'unpack 'process-javascript
16425 (lambda* (#:key inputs #:allow-other-keys)
16426 (with-directory-excursion "inst"
16427 (let ((mapping
16428 `((,(assoc-ref inputs "js-salvattore")
16429 . "examples/colourInput/www/salvattore.min.js")
16430 (,(assoc-ref inputs "js-jquery")
16431 . "htmlwidgets/lib/jquery/jquery.min.js")
16432 ("www/shared/colourpicker/js/colourpicker.js"
16433 . "www/shared/colourpicker/js/colourpicker.min.js"))))
16434 (for-each (lambda (source target)
16435 (format #true "Processing ~a --> ~a~%"
16436 source target)
16437 (delete-file target)
16438 (invoke "esbuild" source "--minify"
16439 (string-append "--outfile=" target)))
16440 (map car mapping)
16441 (map cdr mapping)))))))))
16442 (propagated-inputs
16443 (list r-ggplot2
16444 r-htmltools
16445 r-htmlwidgets
16446 r-jsonlite
16447 r-miniui
16448 r-shiny
16449 r-shinyjs))
16450 (native-inputs
16451 `(("esbuild" ,esbuild)
16452 ("js-jquery"
16453 ,(origin
16454 (method url-fetch)
16455 (uri "https://code.jquery.com/jquery-1.11.3.js")
16456 (sha256
16457 (base32
16458 "1v956yf5spw0156rni5z77hzqwmby7ajwdcd6mkhb6zvl36awr90"))))
16459 ("js-salvattore"
16460 ,(origin
16461 (method url-fetch)
16462 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
16463 (sha256
16464 (base32
16465 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
16466 (home-page "https://github.com/daattali/colourpicker")
16467 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
16468 (description
16469 "This package provides a color picker that can be used as an input in
16470 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
16471 custom color palettes, and many more options. A plot color helper tool is
16472 available as an RStudio Addin, which helps you pick colors to use in your
16473 plots. A more generic color picker RStudio Addin is also provided to let you
16474 select colors to use in your R code.")
16475 (license license:expat)))
16476
16477 (define-public r-ggextra
16478 (package
16479 (name "r-ggextra")
16480 (version "0.10.0")
16481 (source
16482 (origin
16483 (method url-fetch)
16484 (uri (cran-uri "ggExtra" version))
16485 (sha256
16486 (base32
16487 "1rd3qv6ah3zphr1jicjhgxms73vi496mjnxnsrcgl7z8nyxmas6w"))))
16488 (properties `((upstream-name . "ggExtra")))
16489 (build-system r-build-system)
16490 (propagated-inputs
16491 (list r-colourpicker
16492 r-ggplot2
16493 r-gtable
16494 r-miniui
16495 r-r6
16496 r-scales
16497 r-shiny
16498 r-shinyjs))
16499 (native-inputs
16500 (list r-knitr))
16501 (home-page "https://github.com/daattali/ggExtra")
16502 (synopsis "Marginal histograms for ggplot2 and other enhancements")
16503 (description
16504 "This package is a collection of functions and layers to enhance ggplot2.
16505 The flagship function is @code{ggMarginal()}, which can be used to add
16506 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
16507 (license license:expat)))
16508
16509 (define-public r-minpack-lm
16510 (package
16511 (name "r-minpack-lm")
16512 (version "1.2-2")
16513 (source
16514 (origin
16515 (method url-fetch)
16516 (uri (cran-uri "minpack.lm" version))
16517 (sha256
16518 (base32
16519 "11yz6hk2r33571d16kq01cb1x6sgdzi6jmksqlrm8mr84l95c2f7"))))
16520 (properties `((upstream-name . "minpack.lm")))
16521 (build-system r-build-system)
16522 (native-inputs (list gfortran))
16523 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
16524 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
16525 (description
16526 "The @code{nls.lm} function provides an R interface to @code{lmder} and
16527 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
16528 problems by a modification of the Levenberg-Marquardt algorithm, with support
16529 for lower and upper parameter bounds. The implementation can be used via
16530 @code{nls}-like calls using the @code{nlsLM} function.")
16531 (license license:gpl3)))
16532
16533 (define-public r-moments
16534 (package
16535 (name "r-moments")
16536 (version "0.14.1")
16537 (source
16538 (origin
16539 (method url-fetch)
16540 (uri (cran-uri "moments" version))
16541 (sha256
16542 (base32
16543 "0r6qf3i1rzh2822bx1p0h8mh91gsbgg6asl2rzh2l4ys094bilif"))))
16544 (build-system r-build-system)
16545 (home-page "https://cran.r-project.org/web/packages/moments")
16546 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
16547 (description
16548 "This package provides functions to calculate: moments, Pearson's
16549 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
16550 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
16551 (license license:gpl2+)))
16552
16553 (define-public r-msir
16554 (package
16555 (name "r-msir")
16556 (version "1.3.3")
16557 (source
16558 (origin
16559 (method url-fetch)
16560 (uri (cran-uri "msir" version))
16561 (sha256
16562 (base32
16563 "1wm83m3cqd6llxb9p2jwim0wb81v84pgdmgcznygzaaq6kbn3n84"))))
16564 (build-system r-build-system)
16565 (propagated-inputs
16566 (list r-mclust))
16567 (native-inputs
16568 (list r-knitr))
16569 (home-page "https://cran.r-project.org/web/packages/msir")
16570 (synopsis "Model-based sliced inverse regression")
16571 (description
16572 "This is an R package for dimension reduction based on finite Gaussian
16573 mixture modeling of inverse regression.")
16574 (license license:gpl2+)))
16575
16576 (define-public r-pbivnorm
16577 (package
16578 (name "r-pbivnorm")
16579 (version "0.6.0")
16580 (source
16581 (origin
16582 (method url-fetch)
16583 (uri (cran-uri "pbivnorm" version))
16584 (sha256
16585 (base32
16586 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
16587 (build-system r-build-system)
16588 (native-inputs (list gfortran))
16589 (home-page "https://github.com/brentonk/pbivnorm")
16590 (synopsis "Vectorized bivariate normal CDF")
16591 (description
16592 "This package provides a vectorized R function for calculating
16593 probabilities from a standard bivariate normal CDF.")
16594 (license license:gpl2+)))
16595
16596 (define-public r-lavaan
16597 (package
16598 (name "r-lavaan")
16599 (version "0.6-11")
16600 (source
16601 (origin
16602 (method url-fetch)
16603 (uri (cran-uri "lavaan" version))
16604 (sha256
16605 (base32
16606 "026k32paf51lpy6zxm9m81zg9szx14j37dxdip6nba334jw97h9c"))))
16607 (build-system r-build-system)
16608 (propagated-inputs
16609 (list r-mass r-mnormt r-numderiv r-pbivnorm))
16610 (home-page "https://lavaan.ugent.be")
16611 (synopsis "Latent variable analysis")
16612 (description
16613 "This package provides tools to fit a variety of latent variable models,
16614 including confirmatory factor analysis, structural equation modeling and
16615 latent growth curve models.")
16616 (license license:gpl2+)))
16617
16618 (define-public r-nonnest2
16619 (package
16620 (name "r-nonnest2")
16621 (version "0.5-5")
16622 (source
16623 (origin
16624 (method url-fetch)
16625 (uri (cran-uri "nonnest2" version))
16626 (sha256
16627 (base32
16628 "1ddaqwx8i3ygwvxf11mc8xhgk4nkvnail99nr5szq8i168752zq2"))))
16629 (build-system r-build-system)
16630 (propagated-inputs
16631 (list r-compquadform r-lavaan r-mvtnorm r-sandwich))
16632 (native-inputs
16633 (list r-knitr))
16634 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
16635 (synopsis "Tests of non-nested models")
16636 (description
16637 "This package allows for testing of non-nested models. It includes tests
16638 of model distinguishability and of model fit that can be applied to both
16639 nested and non-nested models. The package also includes functionality to
16640 obtain confidence intervals associated with AIC and BIC.")
16641 ;; Either version of the GPL.
16642 (license (list license:gpl2 license:gpl3))))
16643
16644 (define-public r-penalized
16645 (package
16646 (name "r-penalized")
16647 (version "0.9-52")
16648 (source
16649 (origin
16650 (method url-fetch)
16651 (uri (cran-uri "penalized" version))
16652 (sha256
16653 (base32
16654 "08badmgygppbqzay20qijyww028yw6s8dyd8ijcp8g4r9rn8xqyq"))))
16655 (build-system r-build-system)
16656 (propagated-inputs
16657 (list r-rcpp r-rcpparmadillo r-survival))
16658 (home-page "https://cran.r-project.org/web/packages/penalized/")
16659 (synopsis "Penalized estimation in GLMs and in the Cox model")
16660 (description
16661 "This package provides tools for fitting possibly high dimensional
16662 penalized regression models. The penalty structure can be any combination of
16663 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
16664 constraint on the regression coefficients. The supported regression models
16665 are linear, logistic and Poisson regression and the Cox Proportional Hazards
16666 model. Cross-validation routines allow optimization of the tuning
16667 parameters.")
16668 (license license:gpl2+)))
16669
16670 (define-public r-zim
16671 (package
16672 (name "r-zim")
16673 (version "1.1.0")
16674 (source
16675 (origin
16676 (method url-fetch)
16677 (uri (cran-uri "ZIM" version))
16678 (sha256
16679 (base32
16680 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
16681 (properties `((upstream-name . "ZIM")))
16682 (build-system r-build-system)
16683 (propagated-inputs (list r-mass))
16684 (home-page "https://github.com/biostatstudio/ZIM")
16685 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
16686 (description
16687 "Analyze count time series with excess zeros. Two types of statistical
16688 models are supported: Markov regression and state-space models. They are also
16689 known as observation-driven and parameter-driven models respectively in the
16690 time series literature. The functions used for Markov regression or
16691 observation-driven models can also be used to fit ordinary regression models
16692 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
16693 negative binomial (ZINB) assumption. The package also contains miscellaneous
16694 functions to compute density, distribution, quantile, and generate random
16695 numbers from ZIP and ZINB distributions.")
16696 (license license:gpl3)))
16697
16698 (define-public r-nor1mix
16699 (package
16700 (name "r-nor1mix")
16701 (version "1.3-0")
16702 (source
16703 (origin
16704 (method url-fetch)
16705 (uri (cran-uri "nor1mix" version))
16706 (sha256
16707 (base32
16708 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
16709 (build-system r-build-system)
16710 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
16711 (synopsis "Normal (1-d) mixture models")
16712 (description
16713 "This package provides S3 classes and methods for one-dimensional normal
16714 mixture models, for, e.g., density estimation or clustering algorithms
16715 research and teaching; it provides the widely used Marron-Wand densities. It
16716 also provides tools for efficient random number generation and graphics.")
16717 (license license:gpl2+)))
16718
16719 (define-public r-beanplot
16720 (package
16721 (name "r-beanplot")
16722 (version "1.3.1")
16723 (source
16724 (origin
16725 (method url-fetch)
16726 (uri (cran-uri "beanplot" version))
16727 (sha256
16728 (base32
16729 "1b8mvlcsv5l9g08ag92hndsvk8jmgxvznhzgazc8y4296kp8l5a9"))))
16730 (build-system r-build-system)
16731 (home-page "https://cran.r-project.org/web/packages/beanplot/")
16732 (synopsis "Visualization via beanplots")
16733 (description
16734 "This package provides beanplots, an alternative to
16735 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
16736 graphs.")
16737 (license license:gpl2)))
16738
16739 (define-public r-pbdzmq
16740 (package
16741 (name "r-pbdzmq")
16742 (version "0.3-7")
16743 (source
16744 (origin
16745 (method url-fetch)
16746 (uri (cran-uri "pbdZMQ" version))
16747 (sha256
16748 (base32
16749 "020qy6fq8w8wq0j3bii14ahrlg8wzl0lrnndfr6scmrg9ghjnbfz"))))
16750 (properties `((upstream-name . "pbdZMQ")))
16751 (build-system r-build-system)
16752 (inputs
16753 (list zeromq zlib))
16754 (native-inputs
16755 (list pkg-config))
16756 (home-page "https://pbdr.org/")
16757 (synopsis "R interface to ZeroMQ")
16758 (description
16759 "ZeroMQ is a well-known library for high-performance asynchronous
16760 messaging in scalable, distributed applications. This package provides high
16761 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
16762 interactive client/server programming frameworks. A few wrapper functions
16763 compatible with @code{rzmq} are also provided.")
16764 (license license:gpl3)))
16765
16766 (define-public r-repr
16767 (package
16768 (name "r-repr")
16769 (version "1.1.4")
16770 (source
16771 (origin
16772 (method url-fetch)
16773 (uri (cran-uri "repr" version))
16774 (sha256
16775 (base32
16776 "0h3h14ybamcbwmm31ib66fx13v75vkzn4bn2v26n2h097sl9qybg"))))
16777 (build-system r-build-system)
16778 (propagated-inputs
16779 (list r-base64enc r-htmltools r-jsonlite r-pillar))
16780 (home-page "https://cran.r-project.org/web/packages/repr/")
16781 (synopsis "Serializable representations")
16782 (description
16783 "This package provides string and binary representations of objects for
16784 several formats and MIME types.")
16785 (license license:gpl3)))
16786
16787 (define-public r-irdisplay
16788 (package
16789 (name "r-irdisplay")
16790 (version "1.1")
16791 (source
16792 (origin
16793 (method url-fetch)
16794 (uri (cran-uri "IRdisplay" version))
16795 (sha256
16796 (base32
16797 "0awdiv4rr93y8jb1d64sm1iy37ywyniqm7w98yv6qm0zz47h7sw3"))))
16798 (properties `((upstream-name . "IRdisplay")))
16799 (build-system r-build-system)
16800 (propagated-inputs
16801 (list r-repr))
16802 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
16803 (synopsis "Jupyter display machinery")
16804 (description
16805 "This package provides an interface to the rich display capabilities of
16806 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
16807 running IRkernel session.")
16808 (license license:expat)))
16809
16810 (define-public r-irkernel
16811 (package
16812 (name "r-irkernel")
16813 (version "1.3")
16814 (source
16815 (origin
16816 (method url-fetch)
16817 (uri (cran-uri "IRkernel" version))
16818 (sha256
16819 (base32
16820 "00qrmsywpzw2hfp88020zjaijma7q4hqm9h2cz53rywdjzywnzss"))))
16821 (properties `((upstream-name . "IRkernel")))
16822 (build-system r-build-system)
16823 (arguments
16824 `(#:phases
16825 (modify-phases %standard-phases
16826 (add-after 'install 'install-kernelspec
16827 (lambda* (#:key outputs #:allow-other-keys)
16828 (let ((out (assoc-ref outputs "out")))
16829 (setenv "HOME" "/tmp")
16830 (invoke "jupyter" "kernelspec" "install"
16831 "--name" "ir"
16832 "--prefix" out
16833 (string-append out "/site-library/IRkernel/kernelspec"))
16834 ;; Record the absolute file name of the 'R' executable in
16835 ;; 'kernel.json'.
16836 (substitute* (string-append out "/share/jupyter"
16837 "/kernels/ir/kernel.json")
16838 (("\\[\"R\",")
16839 (string-append "[\"" (which "R") "\",")))
16840 #t))))))
16841 (inputs
16842 (list jupyter))
16843 (propagated-inputs
16844 (list r-crayon
16845 r-digest
16846 r-evaluate
16847 r-irdisplay
16848 r-jsonlite
16849 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
16850 r-minimal
16851 r-pbdzmq
16852 r-repr
16853 r-uuid))
16854 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
16855 (synopsis "Native R kernel for Jupyter")
16856 (description
16857 "The R kernel for the Jupyter environment executes R code which the
16858 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
16859 network.")
16860 (license license:expat)))
16861
16862 (define-public r-gmodels
16863 (package
16864 (name "r-gmodels")
16865 (version "2.18.1.1")
16866 (source
16867 (origin
16868 (method url-fetch)
16869 (uri (cran-uri "gmodels" version))
16870 (sha256
16871 (base32
16872 "158y7yh4maawn9vki8cq4sil48xib2bbpl6qgj5gvlkw3c14hzfs"))))
16873 (build-system r-build-system)
16874 (propagated-inputs
16875 (list r-gdata r-mass))
16876 (home-page "https://cran.r-project.org/web/packages/gmodels/")
16877 (synopsis "Various R programming tools for model fitting")
16878 (description
16879 "This package provides various R programming tools for model fitting.")
16880 (license license:gpl2)))
16881
16882 (define-public r-apcluster
16883 (package
16884 (name "r-apcluster")
16885 (version "1.4.9")
16886 (source
16887 (origin
16888 (method url-fetch)
16889 (uri (cran-uri "apcluster" version))
16890 (sha256
16891 (base32
16892 "0wnbb3kj9m7rfq63xr43jjf6n8jxm1r2wvvx6g0qkss0wvipbb1s"))))
16893 (build-system r-build-system)
16894 (propagated-inputs
16895 (list r-matrix r-rcpp))
16896 (native-inputs (list r-knitr))
16897 (home-page "https://cran.r-project.org/web/packages/apcluster/")
16898 (synopsis "Affinity propagation clustering")
16899 (description
16900 "This package implements affinity propagation clustering introduced by
16901 Frey and Dueck (2007). The package further provides leveraged affinity
16902 propagation and an algorithm for exemplar-based agglomerative clustering that
16903 can also be used to join clusters obtained from affinity propagation. Various
16904 plotting functions are available for analyzing clustering results.")
16905 (license license:gpl2+)))
16906
16907 (define-public r-rematch2
16908 (package
16909 (name "r-rematch2")
16910 (version "2.1.2")
16911 (source
16912 (origin
16913 (method url-fetch)
16914 (uri (cran-uri "rematch2" version))
16915 (sha256
16916 (base32
16917 "1fzpz8vhghw8ygwg6rsvfy3783pqk7ch029i5851lwypkplvz77y"))))
16918 (build-system r-build-system)
16919 (propagated-inputs
16920 (list r-tibble))
16921 (home-page "https://github.com/r-lib/rematch2")
16922 (synopsis "Tidy output from regular expression matching")
16923 (description
16924 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
16925 return the match results in tidy data frames.")
16926 (license license:expat)))
16927
16928 (define-public r-picante
16929 (package
16930 (name "r-picante")
16931 (version "1.8.2")
16932 (source
16933 (origin
16934 (method url-fetch)
16935 (uri (cran-uri "picante" version))
16936 (sha256
16937 (base32
16938 "19savjzj44b7ifdxcp02ynj22z4n4ikq2aipc74ljzy3yykmqmjn"))))
16939 (build-system r-build-system)
16940 (propagated-inputs
16941 (list r-ape r-nlme r-vegan))
16942 (home-page "https://cran.r-project.org/web/packages/picante/")
16943 (synopsis "Integrating phylogenies and ecology")
16944 (description
16945 "This package provides functions for phylocom integration, community
16946 analyses, null-models, traits and evolution. It implements numerous
16947 ecophylogenetic approaches including measures of community phylogenetic and
16948 trait diversity, phylogenetic signal, estimation of trait values for
16949 unobserved taxa, null models for community and phylogeny randomizations, and
16950 utility functions for data input/output and phylogeny plotting. A full
16951 description of package functionality and methods are provided by Kembel et
16952 al. (2010).")
16953 (license license:gpl2)))
16954
16955 (define-public r-reinforcelearn
16956 (package
16957 (name "r-reinforcelearn")
16958 (version "0.2.1")
16959 (source
16960 (origin
16961 (method url-fetch)
16962 (uri (cran-uri "reinforcelearn" version))
16963 (sha256
16964 (base32
16965 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
16966 (build-system r-build-system)
16967 (propagated-inputs
16968 (list r-checkmate r-nnet r-purrr r-r6))
16969 (home-page "https://markusdumke.github.io/reinforcelearn")
16970 (synopsis "Reinforcement learning")
16971 (description
16972 "This package implements reinforcement learning environments and
16973 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
16974 can be used with function approximation, eligibility traces (Singh & Sutton,
16975 1996) and experience replay (Mnih et al., 2013).")
16976 (license license:expat)))
16977
16978 (define-public r-lemon
16979 (package
16980 (name "r-lemon")
16981 (version "0.4.5")
16982 (source
16983 (origin
16984 (method url-fetch)
16985 (uri (cran-uri "lemon" version))
16986 (sha256
16987 (base32
16988 "1y3ljidhqdakxlya2npj2w0az820g8kw6gl1cfm4f0cxvzgd1ly4"))))
16989 (build-system r-build-system)
16990 (propagated-inputs
16991 (list r-ggplot2
16992 r-gridextra
16993 r-gtable
16994 r-knitr
16995 r-lattice
16996 r-plyr
16997 r-rlang
16998 r-scales))
16999 (native-inputs
17000 (list r-knitr))
17001 (home-page "https://github.com/stefanedwards/lemon")
17002 (synopsis "Freshen up your ggplot2 plots")
17003 (description
17004 "This package provides functions for working with legends and axis lines
17005 of ggplot2, facets that repeat axis lines on all panels, and some knitr
17006 extensions.")
17007 (license license:gpl3)))
17008
17009 (define-public r-wgaim
17010 (package
17011 (name "r-wgaim")
17012 (version "2.0-1")
17013 (source
17014 (origin
17015 (method url-fetch)
17016 (uri (cran-uri "wgaim" version))
17017 (sha256
17018 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
17019 (build-system r-build-system)
17020 (propagated-inputs
17021 (list r-ggplot2 r-qtl))
17022 (home-page "https://cran.r-project.org/web/packages/wgaim")
17023 (synopsis "Whole genome average interval mapping for QTL detection")
17024 (description
17025 "This package integrates sophisticated mixed modelling methods with a
17026 whole genome approach to detecting significant QTL in linkage maps.")
17027 (license license:gpl2+)))
17028
17029 (define-public r-bedr
17030 (package
17031 (name "r-bedr")
17032 (version "1.0.7")
17033 (source
17034 (origin
17035 (method url-fetch)
17036 (uri (cran-uri "bedr" version))
17037 (sha256
17038 (base32
17039 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
17040 (build-system r-build-system)
17041 (propagated-inputs
17042 (list r-data-table
17043 r-r-utils
17044 r-testthat
17045 r-venndiagram
17046 r-yaml
17047 bedops
17048 bedtools
17049 htslib)) ; for tabix
17050 (native-inputs
17051 (list r-knitr)) ; for vignettes
17052 (home-page "https://cran.r-project.org/web/packages/bedr")
17053 (synopsis "Genomic region processing")
17054 (description
17055 "This package is for genomic regions processing using command line tools
17056 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
17057 utilities to perform genome arithmetic e.g indexing, formatting and merging.
17058 The bedr package's API enhances access to these tools as well as offers
17059 additional utilities for genomic regions processing.")
17060 (license license:gpl2)))
17061
17062 (define-public r-sets
17063 (package
17064 (name "r-sets")
17065 (version "1.0-21")
17066 (source
17067 (origin
17068 (method url-fetch)
17069 (uri (cran-uri "sets" version))
17070 (sha256
17071 (base32
17072 "1h1a03b1850kh5hd3gxbspx2nxqxvk2gb0wm0s60b70qb6zg0csp"))))
17073 (properties `((upstream-name . "sets")))
17074 (build-system r-build-system)
17075 (home-page "https://cran.r-project.org/web/packages/sets")
17076 (synopsis "Sets, generalized sets, customizable sets and intervals")
17077 (description
17078 "This package provides data structures and basic operations for ordinary
17079 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
17080 customizable sets, and intervals.")
17081 (license license:gpl2)))
17082
17083 (define-public r-partitions
17084 (package
17085 (name "r-partitions")
17086 (version "1.9-22")
17087 (source
17088 (origin
17089 (method url-fetch)
17090 (uri (cran-uri "partitions" version))
17091 (sha256
17092 (base32
17093 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
17094 (build-system r-build-system)
17095 (propagated-inputs
17096 (list r-gmp r-polynom r-sets))
17097 (home-page "https://cran.r-project.org/web/packages/partitions")
17098 (synopsis "Additive partitions of integers")
17099 (description
17100 "This package provides tools to enumerates the partitions, unequal
17101 partitions, and restricted partitions of an integer; the three corresponding
17102 partition functions are also given.")
17103 ;; Any version of the GPL
17104 (license license:gpl2+)))
17105
17106 (define-public r-brobdingnag
17107 (package
17108 (name "r-brobdingnag")
17109 (version "1.2-7")
17110 (source
17111 (origin
17112 (method url-fetch)
17113 (uri (cran-uri "Brobdingnag" version))
17114 (sha256
17115 (base32
17116 "0hnp5nrpnscykvgrrbgp7987660hcbv92zc2q8lmpnin4ws399vk"))))
17117 (properties `((upstream-name . "Brobdingnag")))
17118 (build-system r-build-system)
17119 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
17120 (synopsis "Very large numbers in R")
17121 (description
17122 "This package handles very large numbers in R. Real numbers are held
17123 using their natural logarithms, plus a logical flag indicating sign. The
17124 package includes a vignette that gives a step-by-step introduction to using S4
17125 methods.")
17126 ;; Any version of the GPL
17127 (license license:gpl2+)))
17128
17129 (define-public r-untb
17130 (package
17131 (name "r-untb")
17132 (version "1.7-4")
17133 (source
17134 (origin
17135 (method url-fetch)
17136 (uri (cran-uri "untb" version))
17137 (sha256
17138 (base32
17139 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
17140 (build-system r-build-system)
17141 (propagated-inputs
17142 (list r-brobdingnag r-partitions r-polynom))
17143 (home-page "https://github.com/RobinHankin/untb.git")
17144 (synopsis "Ecological drift under the UNTB")
17145 (description
17146 "This package provides numerical simulations, and visualizations, of
17147 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
17148 (license license:gpl2+)))
17149
17150 (define-public r-stepwise
17151 (package
17152 (name "r-stepwise")
17153 (version "0.3")
17154 (source
17155 (origin
17156 (method url-fetch)
17157 (uri (cran-uri "stepwise" version))
17158 (sha256
17159 (base32
17160 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
17161 (build-system r-build-system)
17162 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
17163 (synopsis "Stepwise detection of recombination breakpoints")
17164 (description
17165 "This package provides a stepwise approach to identifying recombination
17166 breakpoints in a genomic sequence alignment.")
17167 (license license:gpl2+)))
17168
17169 (define-public r-snpmaxsel
17170 (package
17171 (name "r-snpmaxsel")
17172 (version "1.0-3")
17173 (source
17174 (origin
17175 (method url-fetch)
17176 (uri (cran-uri "SNPmaxsel" version))
17177 (sha256
17178 (base32
17179 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
17180 (properties `((upstream-name . "SNPmaxsel")))
17181 (build-system r-build-system)
17182 (propagated-inputs
17183 (list r-combinat r-mvtnorm))
17184 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
17185 (synopsis "Maximally selected statistics for SNP data")
17186 (description
17187 "This package implements asymptotic methods related to maximally selected
17188 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
17189 data.")
17190 (license license:gpl2+)))
17191
17192 (define-public r-acsnminer
17193 (package
17194 (name "r-acsnminer")
17195 (version "0.16.8.25")
17196 (source (origin
17197 (method url-fetch)
17198 (uri (cran-uri "ACSNMineR" version))
17199 (sha256
17200 (base32
17201 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
17202 (properties `((upstream-name . "ACSNMineR")))
17203 (build-system r-build-system)
17204 (propagated-inputs
17205 (list r-ggplot2 r-gridextra))
17206 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
17207 (synopsis "Gene enrichment analysis")
17208 (description
17209 "This package provides tools to compute and represent gene set enrichment
17210 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
17211 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
17212 enrichment can be run with hypergeometric test or Fisher exact test, and can
17213 use multiple corrections. Visualization of data can be done either by
17214 barplots or heatmaps.")
17215 (license license:gpl2+)))
17216
17217 (define-public r-seqinr
17218 (package
17219 (name "r-seqinr")
17220 (version "4.2-16")
17221 (source
17222 (origin
17223 (method url-fetch)
17224 (uri (cran-uri "seqinr" version))
17225 (sha256
17226 (base32
17227 "0cj07b7km5mla63qhbkxg1mnqq6vh79lsyyfpnbm29gw68w2bwy4"))))
17228 (build-system r-build-system)
17229 (propagated-inputs
17230 (list r-ade4 r-segmented))
17231 (inputs
17232 (list zlib))
17233 (home-page "http://seqinr.r-forge.r-project.org/")
17234 (synopsis "Biological sequences retrieval and analysis")
17235 (description
17236 "This package provides tools for exploratory data analysis and data
17237 visualization of biological sequence (DNA and protein) data. It also includes
17238 utilities for sequence data management under the ACNUC system.")
17239 (license license:gpl2+)))
17240
17241 (define-public r-units
17242 (package
17243 (name "r-units")
17244 (version "0.8-0")
17245 (source
17246 (origin
17247 (method url-fetch)
17248 (uri (cran-uri "units" version))
17249 (sha256
17250 (base32
17251 "06mjprqi06xprj6185k5cmrrdl025x0pd1r6a4x3s74ciq9zwilw"))))
17252 (build-system r-build-system)
17253 (inputs
17254 (list udunits))
17255 (propagated-inputs
17256 (list r-rcpp))
17257 (native-inputs
17258 (list r-knitr))
17259 (home-page "https://github.com/r-quantities/units/")
17260 (synopsis "Measurement Units for R Vectors")
17261 (description
17262 "This package provides support for measurement units in R vectors,
17263 matrices and arrays: automatic propagation, conversion, derivation and
17264 simplification of units; raising errors in case of unit incompatibility. It
17265 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
17266 classes.")
17267 (license license:gpl2)))
17268
17269 (define-public r-udunits2
17270 (package
17271 (name "r-udunits2")
17272 (version "0.13.2.1")
17273 (source
17274 (origin
17275 (method url-fetch)
17276 (uri (cran-uri "udunits2" version))
17277 (sha256
17278 (base32
17279 "00prsy8m41v1camcsz94d7gm8qab2mdnwl3x0dyhz4r49b02jm4z"))))
17280 (properties `((upstream-name . "udunits2")))
17281 (build-system r-build-system)
17282 (inputs
17283 (list udunits))
17284 (home-page "https://cran.r-project.org/package=udunits2")
17285 (synopsis "Udunits-2 bindings for R")
17286 (description
17287 "This package provides simple bindings to Unidata's udunits library.")
17288 (license license:gpl2)))
17289
17290 (define-public r-classint
17291 (package
17292 (name "r-classint")
17293 (version "0.4-3")
17294 (source
17295 (origin
17296 (method url-fetch)
17297 (uri (cran-uri "classInt" version))
17298 (sha256
17299 (base32
17300 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
17301 (properties `((upstream-name . "classInt")))
17302 (build-system r-build-system)
17303 (propagated-inputs
17304 (list r-class r-e1071 r-kernsmooth))
17305 (native-inputs
17306 (list gfortran r-knitr))
17307 (home-page "https://github.com/r-spatial/classInt/")
17308 (synopsis "Choose univariate class intervals")
17309 (description
17310 "This package provides selected commonly used methods for choosing
17311 univariate class intervals for mapping or other graphics purposes.")
17312 (license license:gpl2+)))
17313
17314 (define-public r-spdata
17315 (package
17316 (name "r-spdata")
17317 (version "2.0.1")
17318 (source
17319 (origin
17320 (method url-fetch)
17321 (uri (cran-uri "spData" version))
17322 (sha256
17323 (base32
17324 "1z4hp5ivwzyvl8mkp98j2ng1cl1xksqbjxv85vdlqfqjwpia6df6"))))
17325 (properties `((upstream-name . "spData")))
17326 (build-system r-build-system)
17327 (propagated-inputs
17328 (list r-raster r-sp))
17329 (home-page "https://github.com/Nowosad/spData")
17330 (synopsis "Datasets for spatial analysis")
17331 (description
17332 "This a package containing diverse spatial datasets for demonstrating,
17333 benchmarking and teaching spatial data analysis. It includes R data of class
17334 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
17335 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
17336 of the datasets are designed to illustrate specific analysis techniques.
17337 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
17338 illustrate point pattern analysis techniques.")
17339 (license license:cc0)))
17340
17341 (define-public r-learnbayes
17342 (package
17343 (name "r-learnbayes")
17344 (version "2.15.1")
17345 (source
17346 (origin
17347 (method url-fetch)
17348 (uri (cran-uri "LearnBayes" version))
17349 (sha256
17350 (base32
17351 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
17352 (properties `((upstream-name . "LearnBayes")))
17353 (build-system r-build-system)
17354 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
17355 (synopsis "Functions for learning Bayesian inference")
17356 (description
17357 "This package provides a collection of functions helpful in learning the
17358 basic tenets of Bayesian statistical inference. It contains functions for
17359 summarizing basic one and two parameter posterior distributions and predictive
17360 distributions. It contains MCMC algorithms for summarizing posterior
17361 distributions defined by the user. It also contains functions for regression
17362 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
17363 sampling.")
17364 (license license:gpl2+)))
17365
17366 (define-public r-deldir
17367 (package
17368 (name "r-deldir")
17369 (version "1.0-6")
17370 (source
17371 (origin
17372 (method url-fetch)
17373 (uri (cran-uri "deldir" version))
17374 (sha256
17375 (base32
17376 "1igq0l2knsbhizncgydcsidgkvvlwwlkrifbcdyhnzk0bhrdixkd"))))
17377 (build-system r-build-system)
17378 (native-inputs (list gfortran))
17379 (home-page "https://cran.r-project.org/web/packages/deldir")
17380 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
17381 (description
17382 "This package provides tools for calculating the Delaunay triangulation
17383 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
17384 of a planar point set. It plots triangulations and tessellations in various
17385 ways, clips tessellations to sub-windows, calculates perimeters of
17386 tessellations, and summarizes information about the tiles of the
17387 tessellation.")
17388 (license license:gpl2+)))
17389
17390 (define-public r-wk
17391 (package
17392 (name "r-wk")
17393 (version "0.6.0")
17394 (source
17395 (origin
17396 (method url-fetch)
17397 (uri (cran-uri "wk" version))
17398 (sha256
17399 (base32
17400 "1xga4rrqsr190g55by39az4nimnn06bf5b6mcjgwqvba0lvjhb5g"))))
17401 (properties `((upstream-name . "wk")))
17402 (build-system r-build-system)
17403 (home-page "https://paleolimbot.github.io/wk/")
17404 (synopsis "Lightweight well-known geometry parsing")
17405 (description
17406 "This package provides a minimal R and C++ API for parsing well-known
17407 binary and well-known text representation of geometries to and from R-native
17408 formats. Well-known binary is compact and fast to parse; well-known text is
17409 human-readable and is useful for writing tests. These formats are only useful
17410 in R if the information they contain can be accessed in R, for which
17411 high-performance functions are provided here.")
17412 (license license:expat)))
17413
17414 (define-public r-s2
17415 (package
17416 (name "r-s2")
17417 (version "1.0.7")
17418 (source
17419 (origin
17420 (method url-fetch)
17421 (uri (cran-uri "s2" version))
17422 (sha256
17423 (base32
17424 "0gwydn6wdl675ydkcckrci6ylcx30qn8nfhmrp4qx4r9mv3c2410"))))
17425 (properties `((upstream-name . "s2")))
17426 (build-system r-build-system)
17427 (propagated-inputs
17428 (list r-rcpp r-wk))
17429 (inputs
17430 (list openssl))
17431 (native-inputs
17432 (list pkg-config))
17433 (home-page "https://r-spatial.github.io/s2/")
17434 (synopsis "Spherical geometry operators using the S2 geometry library")
17435 (description
17436 "This package provides R bindings for Google's s2 library for geometric
17437 calculations on the sphere. High-performance constructors and exporters
17438 provide high compatibility with existing spatial packages, transformers
17439 construct new geometries from existing geometries, predicates provide a means
17440 to select geometries based on spatial relationships, and accessors extract
17441 information about geometries.")
17442 (license license:asl2.0)))
17443
17444 (define-public r-sf
17445 (package
17446 (name "r-sf")
17447 (version "1.0-7")
17448 (source
17449 (origin
17450 (method url-fetch)
17451 (uri (cran-uri "sf" version))
17452 (sha256
17453 (base32
17454 "0lsl4rh4lbv386hxlsnnwsjb5x1n9d3z0ckjmxakmmrqjjmiywyh"))))
17455 (build-system r-build-system)
17456 (inputs
17457 (list gdal geos proj sqlite zlib))
17458 (propagated-inputs
17459 (list r-classint
17460 r-dbi
17461 r-magrittr
17462 r-rcpp
17463 r-s2
17464 r-units))
17465 (native-inputs
17466 (list pkg-config r-knitr))
17467 (home-page "https://github.com/r-spatial/sf/")
17468 (synopsis "Simple features for R")
17469 (description
17470 "This package provides support for simple features, a standardized way to
17471 encode spatial vector data. It binds to GDAL for reading and writing data, to
17472 GEOS for geometrical operations, and to PROJ for projection conversions and
17473 datum transformations.")
17474 ;; Either of these licenses
17475 (license (list license:gpl2 license:expat))))
17476
17477 (define-public r-spdep
17478 (package
17479 (name "r-spdep")
17480 (version "1.2-4")
17481 (source (origin
17482 (method url-fetch)
17483 (uri (cran-uri "spdep" version))
17484 (sha256
17485 (base32
17486 "0xx6k3rsvsz1hwj0ny8aqfi9ca54x38f8pz8sfya5cggaspxbx59"))
17487 (snippet
17488 '(for-each delete-file '("inst/doc/CO69.html"
17489 "inst/doc/CO69.R"
17490 "inst/doc/nb.html"
17491 "inst/doc/nb.R"
17492 "inst/doc/nb_sf.html"
17493 "inst/doc/nb_sf.R"
17494 "inst/doc/nb_sf.Rmd"
17495 "inst/doc/sids.html"
17496 "inst/doc/sids.R")))))
17497 (build-system r-build-system)
17498 (propagated-inputs
17499 (list r-boot
17500 r-deldir
17501 r-e1071
17502 r-s2
17503 r-sf
17504 r-sp
17505 r-spdata
17506 r-units))
17507 (native-inputs
17508 (list r-knitr))
17509 (home-page "https://github.com/r-spatial/spdep/")
17510 (synopsis "Spatial dependence: weighting schemes, statistics and models")
17511 (description
17512 "This package provides a collection of functions to create spatial
17513 weights matrix objects from polygon contiguities, from point patterns by
17514 distance and tessellations, for summarizing these objects, and for permitting
17515 their use in spatial data analysis, including regional aggregation by minimum
17516 spanning tree.")
17517 (license license:gpl2+)))
17518
17519 (define-public r-adegenet
17520 (package
17521 (name "r-adegenet")
17522 (version "2.1.6")
17523 (source
17524 (origin
17525 (method url-fetch)
17526 (uri (cran-uri "adegenet" version))
17527 (sha256
17528 (base32
17529 "0sx25p7bgz0h9mc3jsdnnjhvmb7sy8nb3r0z923vhk336d4xw8vq"))))
17530 (build-system r-build-system)
17531 (propagated-inputs
17532 (list r-ade4
17533 r-ape
17534 r-boot
17535 r-dplyr
17536 r-ggplot2
17537 r-igraph
17538 r-mass
17539 r-reshape2
17540 r-seqinr
17541 r-shiny
17542 r-vegan))
17543 (home-page "https://github.com/thibautjombart/adegenet")
17544 (synopsis "Exploratory analysis of genetic and genomic data")
17545 (description
17546 "This package provides a toolset for the exploration of genetic and
17547 genomic data. Adegenet provides formal (S4) classes for storing and handling
17548 various genetic data, including genetic markers with varying ploidy and
17549 hierarchical population structure (@code{genind} class), alleles counts by
17550 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
17551 also implements original multivariate methods (DAPC, sPCA), graphics,
17552 statistical tests, simulation tools, distance and similarity measures, and
17553 several spatial methods. A range of both empirical and simulated datasets is
17554 also provided to illustrate various methods.")
17555 (license license:gpl2+)))
17556
17557 (define-public r-pegas
17558 (package
17559 (name "r-pegas")
17560 (version "1.1")
17561 (source
17562 (origin
17563 (method url-fetch)
17564 (uri (cran-uri "pegas" version))
17565 (sha256
17566 (base32 "0ngd0laqbs139ji9hm9kwsm9rm56agw2yyfcplxgqva936l93fl7"))))
17567 (build-system r-build-system)
17568 (propagated-inputs
17569 (list r-ape))
17570 (home-page "http://ape-package.ird.fr/pegas.html")
17571 (synopsis "Population and evolutionary genetics analysis system")
17572 (description
17573 "This package provides functions for reading, writing, plotting,
17574 analysing, and manipulating allelic and haplotypic data, including from VCF
17575 files, and for the analysis of population nucleotide sequences and
17576 micro-satellites including coalescent analyses, linkage disequilibrium,
17577 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
17578 minimum spanning tree and network, and median-joining networks.")
17579 (license license:gpl2+)))
17580
17581 (define-public r-rmetasim
17582 (package
17583 (name "r-rmetasim")
17584 (version "3.1.14")
17585 (source
17586 (origin
17587 (method url-fetch)
17588 (uri (cran-uri "rmetasim" version))
17589 (sha256
17590 (base32
17591 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
17592 (build-system r-build-system)
17593 (propagated-inputs
17594 (list r-ade4 r-adegenet r-gtools r-pegas))
17595 (home-page "https://cran.r-project.org/web/packages/rmetasim")
17596 (synopsis "Individual-based population genetic simulation environment")
17597 (description
17598 "This package provides an interface between R and the metasim simulation
17599 engine. The simulation environment is documented in: Strand, A.(2002),
17600 Metasim 1.0: an individual-based environment for simulating population
17601 genetics of complex population dynamics.")
17602 ;; Any GPL version
17603 (license license:gpl2+)))
17604
17605 (define-public r-genetics
17606 (package
17607 (name "r-genetics")
17608 (version "1.3.8.1.3")
17609 (source
17610 (origin
17611 (method url-fetch)
17612 (uri (cran-uri "genetics" version))
17613 (sha256
17614 (base32
17615 "0lljxvz7nc6y2z303icphar2niir0i407w5cyhy2pwspd9gwkwpy"))))
17616 (build-system r-build-system)
17617 (propagated-inputs
17618 (list r-combinat r-gdata r-gtools r-mass r-mvtnorm))
17619 (home-page "https://cran.r-project.org/web/packages/genetics/")
17620 (synopsis "Population genetics")
17621 (description
17622 "This package provides classes and methods for handling genetic data.
17623 It includes classes to represent genotypes and haplotypes at single markers up
17624 to multiple markers on multiple chromosomes. Function include allele
17625 frequencies, flagging homo/heterozygotes, flagging carriers of certain
17626 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
17627 and testing for linkage disequilibrium, ...")
17628 ;; Any GPL version.
17629 (license license:gpl2+)))
17630
17631 (define-public r-snp-plotter
17632 (package
17633 (name "r-snp-plotter")
17634 (version "0.5.1")
17635 (source
17636 (origin
17637 (method url-fetch)
17638 (uri (cran-uri "snp.plotter" version))
17639 (sha256
17640 (base32
17641 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
17642 (properties `((upstream-name . "snp.plotter")))
17643 (build-system r-build-system)
17644 (propagated-inputs (list r-genetics))
17645 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
17646 (synopsis "Plot p-values using single SNP and/or haplotype data")
17647 (description
17648 "This package helps you create plots of p-values using single SNP and/or
17649 haplotype data. Main features of the package include options to display a
17650 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
17651 datasets simultaneously. Plots can be created using global and/or individual
17652 haplotype p-values along with single SNP p-values. Images are created as
17653 either PDF/EPS files.")
17654 (license license:gpl2+)))
17655
17656 (define-public r-polspline
17657 (package
17658 (name "r-polspline")
17659 (version "1.1.20")
17660 (source
17661 (origin
17662 (method url-fetch)
17663 (uri (cran-uri "polspline" version))
17664 (sha256
17665 (base32 "1dd1jwiaglkkhajzvqfkd1x5r3wzjlk5ww0yxzmns0s1kr74i4k9"))))
17666 (build-system r-build-system)
17667 (native-inputs (list gfortran))
17668 (home-page "https://cran.r-project.org/web/packages/polspline/")
17669 (synopsis "Polynomial spline routines")
17670 (description
17671 "This package provides routines for the polynomial spline fitting
17672 routines hazard regression, hazard estimation with flexible tails, logspline,
17673 lspec, polyclass, and polymars.")
17674 (license license:gpl2+)))
17675
17676 (define-public r-rms
17677 (package
17678 (name "r-rms")
17679 (version "6.3-0")
17680 (source
17681 (origin
17682 (method url-fetch)
17683 (uri (cran-uri "rms" version))
17684 (sha256
17685 (base32 "1yfk800q4mgmrjkh0hqjkiv907sr1bi1jaigrj8l6pmg1mkynhbc"))))
17686 (build-system r-build-system)
17687 (propagated-inputs
17688 (list r-cluster
17689 r-digest
17690 r-ggplot2
17691 r-hmisc
17692 r-htmltable
17693 r-htmltools
17694 r-lattice
17695 r-mass
17696 r-multcomp
17697 r-nlme
17698 r-polspline
17699 r-quantreg
17700 r-rpart
17701 r-sparsem
17702 r-survival))
17703 (native-inputs (list gfortran))
17704 (home-page "http://biostat.mc.vanderbilt.edu/rms")
17705 (synopsis "Regression modeling strategies")
17706 (description
17707 "This is a package for regression modeling, testing, estimation,
17708 validation, graphics, prediction, and typesetting by storing enhanced model
17709 design attributes in the fit. The rms package is a collection of functions
17710 that assist with and streamline modeling. It also contains functions for
17711 binary and ordinal logistic regression models, ordinal models for continuous Y
17712 with a variety of distribution families, and the Buckley-James multiple
17713 regression model for right-censored responses, and implements penalized
17714 maximum likelihood estimation for logistic and ordinary linear models. The
17715 package works with almost any regression model, but it was especially written
17716 to work with binary or ordinal regression models, Cox regression, accelerated
17717 failure time models, ordinary linear models, the Buckley-James model,
17718 generalized least squares for serially or spatially correlated observations,
17719 generalized linear models, and quantile regression.")
17720 (license license:gpl2+)))
17721
17722 (define-public r-arsenal
17723 (package
17724 (name "r-arsenal")
17725 (version "3.6.3")
17726 (source
17727 (origin
17728 (method url-fetch)
17729 (uri (cran-uri "arsenal" version))
17730 (sha256
17731 (base32
17732 "0qvs3ld28djnjnggdhqjwq8sbv8zz322qahlvf7dnx35yqf6xkms"))))
17733 (properties `((upstream-name . "arsenal")))
17734 (build-system r-build-system)
17735 (propagated-inputs (list r-knitr))
17736 (native-inputs (list r-knitr))
17737 (home-page "https://github.com/mayoverse/arsenal")
17738 (synopsis "Functions for large-scale statistical summaries")
17739 (description
17740 "This package provides an arsenal of R functions for large-scale
17741 statistical summaries, which are streamlined to work within the latest
17742 reporting tools in R and RStudio and which use formulas and versatile
17743 summary statistics for summary tables and models. The primary functions
17744 include
17745
17746 @enumerate
17747 @item @code{tableby}, a Table-1-like summary of multiple variable types by the
17748 levels of one or more categorical variables;
17749 @item @code{paired}, a Table-1-like summary of multiple variable types paired
17750 across two time points;
17751 @item @code{modelsum}, which performs simple model fits on one or more
17752 endpoints for many variables (univariate or adjusted for covariates);
17753 @item @code{freqlist}, a powerful frequency table across many categorical
17754 variables;
17755 @item @code{comparedf}, a function for comparing @code{data.frames}; and
17756 @item @code{write2}, a function to output tables to a document.
17757 @end enumerate
17758 ")
17759 (license license:gpl2+)))
17760
17761 (define-public r-haplo-stats
17762 (package
17763 (name "r-haplo-stats")
17764 (version "1.8.7")
17765 (source
17766 (origin
17767 (method url-fetch)
17768 (uri (cran-uri "haplo.stats" version))
17769 (sha256
17770 (base32
17771 "1q2zn72j92bwhcdswk4qqfgzch56p9pcy2xhkd3safvqp3l9rzpw"))))
17772 (properties `((upstream-name . "haplo.stats")))
17773 (build-system r-build-system)
17774 (propagated-inputs
17775 (list r-arsenal r-rms))
17776 (native-inputs
17777 (list r-r-rsp)) ; for vignettes
17778 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
17779 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
17780 (description
17781 "This package provides routines for the analysis of indirectly measured
17782 haplotypes. The statistical methods assume that all subjects are unrelated
17783 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
17784 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
17785 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
17786 examples in the vignette.")
17787 (license license:gpl2+)))
17788
17789 (define-public r-bqtl
17790 (package
17791 (name "r-bqtl")
17792 (version "1.0-33")
17793 (source
17794 (origin
17795 (method url-fetch)
17796 (uri (cran-uri "bqtl" version))
17797 (sha256
17798 (base32
17799 "1sbzpi9z94f010lw2y1gmifjrvpmiqs4m26za7vr1xz72azrqvs9"))))
17800 (build-system r-build-system)
17801 (native-inputs (list gfortran))
17802 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
17803 (synopsis "Bayesian QTL mapping toolkit")
17804 (description
17805 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
17806 lines. It includes maximum likelihood and Bayesian tools.")
17807 (license license:gpl2+)))
17808
17809 (define-public r-ibdreg
17810 (package
17811 (name "r-ibdreg")
17812 (version "0.3.6")
17813 (source
17814 (origin
17815 (method url-fetch)
17816 (uri (cran-uri "ibdreg" version))
17817 (sha256
17818 (base32
17819 "1x8z0vr2cmdks12hxfm0wwxskb0cr669w5j5rpa2ln8q704yy41g"))))
17820 (build-system r-build-system)
17821 (home-page "https://www.mayo.edu/research/labs/\
17822 statistical-genetics-genetic-epidemiology/software")
17823 (synopsis "Regression methods for IBD linkage with covariates")
17824 (description
17825 "This package provides a method to test genetic linkage with covariates
17826 by regression methods with response IBD sharing for relative pairs. Account
17827 for correlations of IBD statistics and covariates for relative pairs within
17828 the same pedigree.")
17829 (license license:gpl2+)))
17830
17831 (define-public r-dlmap
17832 (package
17833 (name "r-dlmap")
17834 (version "1.13")
17835 (source
17836 (origin
17837 (method url-fetch)
17838 (uri (cran-uri "dlmap" version))
17839 (sha256
17840 (base32
17841 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
17842 (build-system r-build-system)
17843 (propagated-inputs
17844 (list r-ibdreg r-mgcv r-nlme r-qtl r-wgaim))
17845 (home-page "https://cran.r-project.org/web/packages/dlmap/")
17846 (synopsis "Detection localization mapping for QTL")
17847 (description
17848 "This is package for QTL mapping in a mixed model framework with separate
17849 detection and localization stages. The first stage detects the number of QTL
17850 on each chromosome based on the genetic variation due to grouped markers on
17851 the chromosome; the second stage uses this information to determine the most
17852 likely QTL positions. The mixed model can accommodate general fixed and
17853 random effects, including spatial effects in field trials and pedigree
17854 effects. It is applicable to backcrosses, doubled haploids, recombinant
17855 inbred lines, F2 intercrosses, and association mapping populations.")
17856 (license license:gpl2)))
17857
17858 (define-public r-hwde
17859 (package
17860 (name "r-hwde")
17861 (version "0.67")
17862 (source
17863 (origin
17864 (method url-fetch)
17865 (uri (cran-uri "hwde" version))
17866 (sha256
17867 (base32
17868 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
17869 (build-system r-build-system)
17870 (home-page "https://cran.r-project.org/web/packages/hwde/")
17871 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
17872 (description
17873 "This package fits models for genotypic disequilibria, as described in
17874 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
17875 terms are available that account for first order interactions between loci.
17876 It also implements, for a single locus in a single population, a conditional
17877 exact test for Hardy-Weinberg equilibrium.")
17878 (license license:gpl2+)))
17879
17880 (define-public r-tdthap
17881 (package
17882 (name "r-tdthap")
17883 (version "1.1-11")
17884 (source
17885 (origin
17886 (method url-fetch)
17887 (uri (cran-uri "tdthap" version))
17888 (sha256
17889 (base32
17890 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
17891 (build-system r-build-system)
17892 (home-page "https://cran.r-project.org/web/packages/tdthap/")
17893 (synopsis "TDT tests for extended haplotypes")
17894 (description
17895 "Functions and examples are provided for transmission/disequilibrium
17896 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
17897 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
17898 (license license:artistic2.0)))
17899
17900 (define-public r-sparql
17901 (package
17902 (name "r-sparql")
17903 (version "1.16")
17904 (source (origin
17905 (method url-fetch)
17906 (uri (cran-uri "SPARQL" version))
17907 (sha256
17908 (base32
17909 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
17910 (properties `((upstream-name . "SPARQL")))
17911 (build-system r-build-system)
17912 (propagated-inputs
17913 (list r-rcurl r-xml))
17914 (home-page "https://cran.r-project.org/web/packages/SPARQL")
17915 (synopsis "SPARQL client for R")
17916 (description "This package provides an interface to use SPARQL to pose
17917 SELECT or UPDATE queries to an end-point.")
17918 ;; The only license indication is found in the DESCRIPTION file,
17919 ;; which states GPL-3. So we cannot assume GPLv3+.
17920 (license license:gpl3)))
17921
17922 (define-public r-bookdown
17923 (package
17924 (name "r-bookdown")
17925 (version "0.26")
17926 (source (origin
17927 (method url-fetch)
17928 (uri (cran-uri "bookdown" version))
17929 (sha256
17930 (base32
17931 "11din9h2sgzvg44627xc5is4psbq2b34km5sbiaprskjrf474866"))))
17932 (build-system r-build-system)
17933 (propagated-inputs
17934 (list r-htmltools
17935 r-jquerylib
17936 r-knitr
17937 r-rmarkdown
17938 r-tinytex
17939 r-xfun
17940 r-yaml
17941 pandoc))
17942 ;; We cannot add knitr because this package depends on xfun, which is an
17943 ;; input to knitr.
17944 #;
17945 (native-inputs
17946 (list r-knitr))
17947 (home-page "https://github.com/rstudio/bookdown")
17948 (synopsis "Authoring books and technical documents with R markdown")
17949 (description "This package provides output formats and utilities for
17950 authoring books and technical documents with R Markdown.")
17951 (license license:gpl3)))
17952
17953 (define-public r-optparse
17954 (package
17955 (name "r-optparse")
17956 (version "1.7.1")
17957 (source
17958 (origin
17959 (method url-fetch)
17960 (uri (cran-uri "optparse" version))
17961 (sha256
17962 (base32
17963 "1rqz0y4r94y3mwbb9kyz97cjqpnprka96qbncvbnbmgg2d630kij"))))
17964 (build-system r-build-system)
17965 (propagated-inputs
17966 (list r-getopt))
17967 (native-inputs
17968 (list r-knitr))
17969 (home-page "https://github.com/trevorld/optparse")
17970 (synopsis "Command line option parser")
17971 (description
17972 "This package provides a command line parser inspired by Python's
17973 @code{optparse} library to be used with Rscript to write shebang scripts
17974 that accept short and long options.")
17975 (license license:gpl2+)))
17976
17977 (define-public r-kernlab
17978 (package
17979 (name "r-kernlab")
17980 (version "0.9-30")
17981 (source
17982 (origin
17983 (method url-fetch)
17984 (uri (cran-uri "kernlab" version))
17985 (sha256
17986 (base32 "10gfb542nbl1d5pfy6r7gcg3j1ikra9l18r6xjv8lzp5ka1kmz28"))))
17987 (build-system r-build-system)
17988 (home-page "https://cran.r-project.org/web/packages/kernlab")
17989 (synopsis "Kernel-based machine learning tools")
17990 (description
17991 "This package provides kernel-based machine learning methods for
17992 classification, regression, clustering, novelty detection, quantile regression
17993 and dimensionality reduction. Among other methods @code{kernlab} includes
17994 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
17995 and a QP solver.")
17996 (license license:gpl2)))
17997
17998 (define-public r-hierfstat
17999 (package
18000 (name "r-hierfstat")
18001 (version "0.5-11")
18002 (source
18003 (origin
18004 (method url-fetch)
18005 (uri (cran-uri "hierfstat" version))
18006 (sha256
18007 (base32
18008 "0nyb5091lr8ma9vydbssyx9503601rynlrbldv98mmrmh74h6v41"))))
18009 (build-system r-build-system)
18010 (propagated-inputs
18011 (list r-ade4 r-adegenet r-gaston r-gtools))
18012 (native-inputs
18013 (list r-knitr))
18014 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
18015 (synopsis "Estimation and tests of hierarchical F-statistics")
18016 (description
18017 "This package allows the estimation of hierarchical F-statistics from
18018 haploid or diploid genetic data with any numbers of levels in the hierarchy,
18019 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
18020 are also given to test via randomisations the significance of each F and
18021 variance components, using the likelihood-ratio statistics G.")
18022 (license license:gpl2+)))
18023
18024 (define-public r-hapassoc
18025 (package
18026 (name "r-hapassoc")
18027 (version "1.2-9")
18028 (source
18029 (origin
18030 (method url-fetch)
18031 (uri (cran-uri "hapassoc" version))
18032 (sha256
18033 (base32
18034 "09ijc4sbw743z74fzklmvig11ndkycg6j86k4214wfsj1yj6j9x6"))))
18035 (build-system r-build-system)
18036 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
18037 (synopsis "Inference of trait associations with SNP haplotypes")
18038 (description
18039 "Hapassoc performs likelihood inference of trait associations with
18040 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
18041 functions are developed primarily for data collected in cohort or
18042 cross-sectional studies. They can accommodate uncertain haplotype phase and
18043 handle missing genotypes at some SNPs.")
18044 (license license:gpl2)))
18045
18046 (define-public r-sampling
18047 (package
18048 (name "r-sampling")
18049 (version "2.9")
18050 (source
18051 (origin
18052 (method url-fetch)
18053 (uri (cran-uri "sampling" version))
18054 (sha256
18055 (base32
18056 "11xis4vzn2ga8ml9xrgfgqzccvwbnabq35aidzdvpnvciybsanvz"))))
18057 (build-system r-build-system)
18058 (propagated-inputs
18059 (list r-lpsolve r-mass))
18060 (home-page "https://cran.r-project.org/web/packages/sampling/")
18061 (synopsis "Survey sampling")
18062 (description
18063 "This package provides functions for drawing and calibrating samples.")
18064 (license license:gpl2+)))
18065
18066 (define-public r-r2html
18067 (package
18068 (name "r-r2html")
18069 (version "2.3.3")
18070 (source
18071 (origin
18072 (method url-fetch)
18073 (uri (cran-uri "R2HTML" version))
18074 (sha256
18075 (base32
18076 "12qg9rp1j26h2f48dfg5k9jds26ycacv3f3ymk686ks43hd1hzja"))))
18077 (properties `((upstream-name . "R2HTML")))
18078 (build-system r-build-system)
18079 (home-page "https://github.com/nalimilan/R2HTML")
18080 (synopsis "HTML export for R objects")
18081 (description
18082 "This package includes HTML functions and methods to write in an HTML
18083 file. Thus, making HTML reports is easy. It includes a function that allows
18084 redirection on the fly, which appears to be very useful for teaching purposes,
18085 as the student can keep a copy of the produced output to keep all that they
18086 did during the course. The package comes with a vignette describing how to
18087 write HTML reports for statistical analysis. Finally, a driver for Sweave
18088 parses HTML flat files containing R code and to automatically write
18089 the corresponding outputs (tables and graphs).")
18090 (license license:gpl2+)))
18091
18092 (define-public r-rjava
18093 (package
18094 (name "r-rjava")
18095 (version "1.0-6")
18096 (source
18097 (origin
18098 (method url-fetch)
18099 (uri (cran-uri "rJava" version))
18100 (sha256
18101 (base32
18102 "1ijqhvnb8ab38cp9pwdf7zq7xqqlm6x94gkrab2dd98p6d4x1472"))))
18103 (properties `((upstream-name . "rJava")))
18104 (build-system r-build-system)
18105 (arguments
18106 `(#:modules ((guix build utils)
18107 (guix build r-build-system)
18108 (ice-9 match))
18109 #:phases
18110 (modify-phases %standard-phases
18111 (add-after 'unpack 'set-JAVA_HOME
18112 (lambda* (#:key inputs #:allow-other-keys)
18113 (let ((jdk (assoc-ref inputs "jdk")))
18114 (setenv "JAVA_HOME" jdk)
18115 (setenv "JAVA" (which "java"))
18116 (setenv "JAR" (which "jar"))
18117 (setenv "JAVAC" (which "javac"))
18118 (setenv "JAVAH" (which "javah"))
18119 (setenv "JAVA_CPPFLAGS"
18120 (string-append "-I" jdk "/include "
18121 "-I" jdk "/include/linux"))
18122 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
18123 ((lib) (setenv "JAVA_LIBS" lib))
18124 (_ (error "Could not find libjvm.so"))))
18125 #t)))))
18126 (inputs
18127 `(("icu4c" ,icu4c)
18128 ("jdk" ,icedtea-8 "jdk")
18129 ("zlib" ,zlib)))
18130 (home-page "https://www.rforge.net/rJava/")
18131 (synopsis "Low-Level R to Java interface")
18132 (description
18133 "This package provides a low-level interface to the Java VM very much
18134 like .C/.Call and friends. It allows the creation of objects, calling methods
18135 and accessing fields.")
18136 (license license:gpl2)))
18137
18138 (define-public r-svmisc
18139 (package
18140 (name "r-svmisc")
18141 (version "1.2.3")
18142 (source
18143 (origin
18144 (method url-fetch)
18145 (uri (cran-uri "svMisc" version))
18146 (sha256
18147 (base32
18148 "1r3kih5bnr4plnzdn5f2gg3xl3krgyl7gkdlf58a2l8vk13j3m9d"))))
18149 (properties `((upstream-name . "svMisc")))
18150 (build-system r-build-system)
18151 (native-inputs
18152 (list r-knitr))
18153 (home-page "https://github.com/SciViews/svMisc")
18154 (synopsis "Miscellaneous functions for SciViews")
18155 (description
18156 "This package provides miscellaneous functions for SciViews or general
18157 use, including tools to manage a temporary environment attached to the search
18158 path for temporary variables you do not want to @code{save()} or
18159 @code{load()}; test the current platform; showing progress bars, etc.")
18160 (license license:gpl2)))
18161
18162 (define-public r-xyz
18163 (package
18164 (name "r-xyz")
18165 (version "0.2")
18166 (source
18167 (origin
18168 (method url-fetch)
18169 (uri (cran-uri "xyz" version))
18170 (sha256
18171 (base32
18172 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
18173 (build-system r-build-system)
18174 (propagated-inputs
18175 (list r-rcpp))
18176 (home-page "https://cran.r-project.org/web/packages/xyz/")
18177 (synopsis "Algorithm for fast interaction search in high-dimensional data")
18178 (description
18179 "High dimensional interaction search by brute force requires a quadratic
18180 computational cost in the number of variables. The xyz algorithm provably
18181 finds strong interactions in almost linear time. For details of the algorithm
18182 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
18183 interaction search in high-dimensional data.")
18184 ;; Any version of the GPL.
18185 (license license:gpl2+)))
18186
18187 (define-public r-rttf2pt1
18188 (package
18189 (name "r-rttf2pt1")
18190 (version "1.3.10")
18191 (source
18192 (origin
18193 (method url-fetch)
18194 (uri (cran-uri "Rttf2pt1" version))
18195 (sha256
18196 (base32
18197 "1fp1y0kxa5xg8w0dplm12wfm8h78az4k6ql1758wwhb3d17np241"))))
18198 (properties `((upstream-name . "Rttf2pt1")))
18199 (build-system r-build-system)
18200 (home-page "https://github.com/wch/Rttf2pt1")
18201 (synopsis "Font conversion utility")
18202 (description
18203 "This package contains the program @code{ttf2pt1}, for use with the
18204 @code{extrafont} package.")
18205 ;; Most of the files are covered under the Expat license. Some files are
18206 ;; covered under BSD-3. Deviations for individual files are recorded in
18207 ;; the LICENSE file.
18208 (license (list license:bsd-3 license:expat
18209 (license:non-copyleft "file://LICENSE")))))
18210
18211 (define-public r-extrafontdb
18212 (package
18213 (name "r-extrafontdb")
18214 (version "1.0")
18215 (source
18216 (origin
18217 (method url-fetch)
18218 (uri (cran-uri "extrafontdb" version))
18219 (sha256
18220 (base32
18221 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
18222 (build-system r-build-system)
18223 (home-page "https://github.com/wch/extrafontdb")
18224 (synopsis "Database for the extrafont package")
18225 (description
18226 "This package holds the database for the @code{extrafont} package.")
18227 (license license:gpl2)))
18228
18229 (define-public r-extrafont
18230 (package
18231 (name "r-extrafont")
18232 (version "0.18")
18233 (source
18234 (origin
18235 (method url-fetch)
18236 (uri (cran-uri "extrafont" version))
18237 (sha256
18238 (base32
18239 "0mx810mld67vb1w3wkl4fhpjmkq32lgpq5x1c0a9rf8li5wskrj4"))))
18240 (build-system r-build-system)
18241 (propagated-inputs
18242 (list r-extrafontdb r-rttf2pt1))
18243 (home-page "https://github.com/wch/extrafont")
18244 (synopsis "Tools for using fonts in R")
18245 (description
18246 "The extrafont package makes it easier to use fonts other than the basic
18247 PostScript fonts that R uses. Fonts that are imported into extrafont can be
18248 used with PDF or PostScript output files. There are two hurdles for using
18249 fonts in PDF (or Postscript) output files:
18250
18251 @enumerate
18252 @item Making R aware of the font and the dimensions of the characters.
18253 @item Embedding the fonts in the PDF file so that the PDF can be displayed
18254 properly on a device that doesn't have the font. This is usually needed if
18255 you want to print the PDF file or share it with others.
18256 @end enumerate
18257
18258 The extrafont package makes both of these things easier.")
18259 (license license:gpl2)))
18260
18261 (define-public r-xkcd
18262 (package
18263 (name "r-xkcd")
18264 (version "0.0.6")
18265 (source
18266 (origin
18267 (method url-fetch)
18268 (uri (cran-uri "xkcd" version))
18269 (sha256
18270 (base32
18271 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
18272 (build-system r-build-system)
18273 (propagated-inputs
18274 (list r-extrafont r-ggplot2 r-hmisc))
18275 (home-page "https://cran.r-project.org/web/packages/xkcd/")
18276 (synopsis "Plot ggplot2 graphics in the XKCD style")
18277 (description
18278 "This package provides the means to plot ggplot2 graphs in the style of
18279 the XKCD web comic.")
18280 (license license:gpl3)))
18281
18282 (define-public r-babelgene
18283 (package
18284 (name "r-babelgene")
18285 (version "22.3")
18286 (source
18287 (origin
18288 (method url-fetch)
18289 (uri (cran-uri "babelgene" version))
18290 (sha256
18291 (base32
18292 "1735h4s2vahv55pmq65zkgxq8d5x71i1is03rf17dric8yynjjhg"))))
18293 (properties `((upstream-name . "babelgene")))
18294 (build-system r-build-system)
18295 (propagated-inputs
18296 (list r-dplyr r-rlang))
18297 (native-inputs
18298 (list r-knitr))
18299 (home-page
18300 "https://igordot.github.io/babelgene/")
18301 (synopsis "Gene orthologs for model organisms in a Tidy data format")
18302 (description
18303 "Genomic analysis of model organisms often requires the use of databases
18304 based on human data or making comparisons to patient-derived resources. This
18305 requires converting genes between human and non-human analogues. The
18306 babelgene R package provides predicted gene orthologs/homologs for frequently
18307 studied model organisms in an R-friendly tidy/long format. The package
18308 integrates orthology assertion predictions sourced from multiple databases as
18309 compiled by the HGNC Comparison of Orthology Predictions (HCOP).")
18310 (license license:expat)))
18311
18312 (define-public r-msigdbr
18313 (package
18314 (name "r-msigdbr")
18315 (version "7.5.1")
18316 (source
18317 (origin
18318 (method url-fetch)
18319 (uri (cran-uri "msigdbr" version))
18320 (sha256
18321 (base32
18322 "1jna9bkq0a7r6f8nhxziyiw75kfhsyh1rv7sx5d4551mvxxlhc6w"))))
18323 (build-system r-build-system)
18324 (propagated-inputs
18325 (list r-babelgene
18326 r-dplyr
18327 r-magrittr
18328 r-rlang
18329 r-tibble
18330 r-tidyselect))
18331 (native-inputs
18332 (list r-knitr))
18333 (home-page "https://github.com/igordot/msigdbr")
18334 (synopsis "MSigDB gene sets for multiple organisms")
18335 (description
18336 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
18337 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
18338 software in a standard R data frame with key-value pairs. Included are the
18339 original human gene symbols and Entrez IDs as well as the equivalents for
18340 various frequently studied model organisms such as mouse, rat, pig, fly, and
18341 yeast.")
18342 ;; The package is covered under the Expat license, but the upstream MSigDB
18343 ;; files are made available under the Creative Commons Attribution 4.0
18344 ;; International license.
18345 (license (list license:expat license:cc-by4.0))))
18346
18347 (define-public r-gridgraphics
18348 (package
18349 (name "r-gridgraphics")
18350 (version "0.5-1")
18351 (source
18352 (origin
18353 (method url-fetch)
18354 (uri (cran-uri "gridGraphics" version))
18355 (sha256
18356 (base32
18357 "12yswy02j3h5wir7m5jnkhpjmb0sa4snn61vjd68i49qwsa6w219"))))
18358 (properties `((upstream-name . "gridGraphics")))
18359 (build-system r-build-system)
18360 (home-page "https://github.com/pmur002/gridgraphics")
18361 (synopsis "Redraw base graphics using @code{grid} graphics")
18362 (description
18363 "This package provides functions to convert a page of plots drawn with
18364 the @code{graphics} package into identical output drawn with the @code{grid}
18365 package. The result looks like the original @code{graphics}-based plot, but
18366 consists of @code{grid} grobs and viewports that can then be manipulated with
18367 @code{grid} functions (e.g., edit grobs and revisit viewports).")
18368 (license license:gpl2+)))
18369
18370 (define-public r-farver
18371 (package
18372 (name "r-farver")
18373 (version "2.1.0")
18374 (source
18375 (origin
18376 (method url-fetch)
18377 (uri (cran-uri "farver" version))
18378 (sha256
18379 (base32
18380 "1x6ffwxqbrwlylnk995jz2a6nz2y9z59jaq0ncpni7q40w367j75"))))
18381 (build-system r-build-system)
18382 (home-page "https://github.com/thomasp85/farver")
18383 (synopsis "Vectorized color conversion and comparison")
18384 (description
18385 "The encoding of color can be handled in many different ways, using
18386 different color spaces. As different color spaces have different uses,
18387 efficient conversion between these representations are important. This
18388 package provides a set of functions that gives access to very fast color space
18389 conversion and comparisons implemented in C++, and offers 100-fold speed
18390 improvements over the @code{convertColor} function in the @code{grDevices}
18391 package.")
18392 (license license:expat)))
18393
18394 (define-public r-yulab-utils
18395 (package
18396 (name "r-yulab-utils")
18397 (version "0.0.4")
18398 (source
18399 (origin
18400 (method url-fetch)
18401 (uri (cran-uri "yulab.utils" version))
18402 (sha256
18403 (base32
18404 "1bj93gnj7j4b7dgkbr5v22rsbwfcw5dvipl5irmidaakvrihd19q"))))
18405 (properties `((upstream-name . "yulab.utils")))
18406 (build-system r-build-system)
18407 (home-page "https://cran.r-project.org/package=yulab.utils")
18408 (synopsis "Supporting functions for packages maintained by YuLab-SMU")
18409 (description
18410 "Miscellaneous functions commonly used by YuLab-SMU, such as
18411 @code{install_zip_gh} to install R packages from Github ZIP files.")
18412 (license license:artistic2.0)))
18413
18414 (define-public r-ggplotify
18415 (package
18416 (name "r-ggplotify")
18417 (version "0.1.0")
18418 (source
18419 (origin
18420 (method url-fetch)
18421 (uri (cran-uri "ggplotify" version))
18422 (sha256
18423 (base32
18424 "12mk3fa8fdjxj7xxz21jkr7h91w5wdgwjqhszcz1qffwsgb773qp"))))
18425 (build-system r-build-system)
18426 (propagated-inputs
18427 (list r-ggplot2 r-gridgraphics r-yulab-utils))
18428 (native-inputs
18429 (list r-knitr))
18430 (home-page "https://github.com/GuangchuangYu/ggplotify")
18431 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
18432 (description
18433 "This package provides tools to convert plot function calls (using
18434 expression or formula) to @code{grob} or @code{ggplot} objects that are
18435 compatible with the @code{grid} and @code{ggplot2} environment. With this
18436 package, we are able to e.g. use @code{cowplot} to align plots produced by
18437 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
18438 converting them to @code{ggplot} objects.")
18439 (license license:artistic2.0)))
18440
18441 (define-public r-triebeard
18442 (package
18443 (name "r-triebeard")
18444 (version "0.3.0")
18445 (source
18446 (origin
18447 (method url-fetch)
18448 (uri (cran-uri "triebeard" version))
18449 (sha256
18450 (base32
18451 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
18452 (build-system r-build-system)
18453 (propagated-inputs (list r-rcpp))
18454 (home-page "https://github.com/Ironholds/triebeard/")
18455 (synopsis "Radix trees in Rcpp")
18456 (description
18457 "Radix trees, or tries, are key-value data structures optimized for
18458 efficient lookups, similar in purpose to hash tables. This package provides
18459 an implementation of radix trees for use in R programming and in developing
18460 packages with Rcpp.")
18461 (license license:expat)))
18462
18463 (define-public r-tweenr
18464 (package
18465 (name "r-tweenr")
18466 (version "1.0.2")
18467 (source
18468 (origin
18469 (method url-fetch)
18470 (uri (cran-uri "tweenr" version))
18471 (sha256
18472 (base32
18473 "17znizh4yabh2zs9mzyr0sl6p0pw49961i61br7cl1b7v9sza18q"))))
18474 (build-system r-build-system)
18475 (propagated-inputs
18476 (list r-farver r-magrittr r-rcpp r-rlang))
18477 (home-page "https://github.com/thomasp85/tweenr")
18478 (synopsis "Interpolate data for smooth animations")
18479 (description
18480 "In order to create smooth animation between states of data, tweening is
18481 necessary. This package provides a range of functions for creating tweened
18482 data that can be used as basis for animation. Furthermore it adds a number of
18483 vectorized interpolaters for common R data types such as numeric, date and
18484 color.")
18485 (license license:expat)))
18486
18487 (define-public r-polyclip
18488 (package
18489 (name "r-polyclip")
18490 (version "1.10-0")
18491 (source
18492 (origin
18493 (method url-fetch)
18494 (uri (cran-uri "polyclip" version))
18495 (sha256
18496 (base32
18497 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
18498 (build-system r-build-system)
18499 (native-inputs (list pkg-config))
18500 (home-page "http://www.angusj.com/delphi/clipper.php")
18501 (synopsis "Polygon clipping")
18502 (description
18503 "This package provides an R port of the library Clipper. It performs
18504 polygon clipping operations (intersection, union, set minus, set difference)
18505 for polygonal regions of arbitrary complexity, including holes. It computes
18506 offset polygons (spatial buffer zones, morphological dilations, Minkowski
18507 dilations) for polygonal regions and polygonal lines. It computes the
18508 Minkowski Sum of general polygons. There is a function for removing
18509 self-intersections from polygon data.")
18510 (license license:boost1.0)))
18511
18512 (define-public r-urltools
18513 (package
18514 (name "r-urltools")
18515 (version "1.7.3")
18516 (source
18517 (origin
18518 (method url-fetch)
18519 (uri (cran-uri "urltools" version))
18520 (sha256
18521 (base32
18522 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
18523 (build-system r-build-system)
18524 (propagated-inputs
18525 (list r-rcpp r-triebeard))
18526 (home-page "https://github.com/Ironholds/urltools/")
18527 (synopsis "Vectorized tools for URL handling and parsing")
18528 (description
18529 "This package provides a toolkit for all URL-handling needs, including
18530 encoding and decoding, parsing, parameter extraction and modification. All
18531 functions are designed to be both fast and entirely vectorized. It is
18532 intended to be useful for people dealing with web-related datasets, such as
18533 server-side logs, although may be useful for other situations involving large
18534 sets of URLs.")
18535 (license license:expat)))
18536
18537 (define-public r-ggforce
18538 (package
18539 (name "r-ggforce")
18540 (version "0.3.3")
18541 (source
18542 (origin
18543 (method url-fetch)
18544 (uri (cran-uri "ggforce" version))
18545 (sha256
18546 (base32
18547 "0bwzjbjl678xvc2ihm80dwn9pidwafqjdab3k299csys16s3na1a"))))
18548 (build-system r-build-system)
18549 (propagated-inputs
18550 (list r-ggplot2
18551 r-gtable
18552 r-mass
18553 r-polyclip
18554 r-rcpp
18555 r-rcppeigen
18556 r-rlang
18557 r-scales
18558 r-tidyselect
18559 r-tweenr
18560 r-withr))
18561 (home-page "https://ggforce.data-imaginist.com")
18562 (synopsis "Accelerating ggplot2")
18563 (description
18564 "The aim of the ggplot2 package is to aid in visual data investigations.
18565 This focus has led to a lack of facilities for composing specialized plots.
18566 This package aims to be a collection of mainly new statistics and geometries
18567 that fills this gap.")
18568 (license license:expat)))
18569
18570 (define-public r-europepmc
18571 (package
18572 (name "r-europepmc")
18573 (version "0.4.1")
18574 (source
18575 (origin
18576 (method url-fetch)
18577 (uri (cran-uri "europepmc" version))
18578 (sha256
18579 (base32
18580 "16japbndid34shqg8n0bmjrxn84xmhrylvz832zclcllm6i93fn1"))))
18581 (build-system r-build-system)
18582 (propagated-inputs
18583 (list r-dplyr
18584 r-httr
18585 r-jsonlite
18586 r-plyr
18587 r-progress
18588 r-purrr
18589 r-rlang
18590 r-tibble
18591 r-tidyr
18592 r-urltools
18593 r-xml2))
18594 (native-inputs
18595 (list r-knitr))
18596 (home-page "https://github.com/ropensci/europepmc/")
18597 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
18598 (description
18599 "This package provides an R Client for the
18600 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
18601 Service}. It gives access to both metadata on life science literature and
18602 open access full texts. Europe PMC indexes all PubMed content and other
18603 literature sources including Agricola, a bibliographic database of citations
18604 to the agricultural literature, or Biological Patents. In addition to
18605 bibliographic metadata, the client allows users to fetch citations and
18606 reference lists. Links between life-science literature and other EBI
18607 databases, including ENA, PDB or ChEMBL are also accessible.")
18608 (license license:gpl3)))
18609
18610 (define-public r-ggraph
18611 (package
18612 (name "r-ggraph")
18613 (version "2.0.5")
18614 (source
18615 (origin
18616 (method url-fetch)
18617 (uri (cran-uri "ggraph" version))
18618 (sha256
18619 (base32
18620 "0m4n8iw2b9jk8hcy5blg5w59zsqcpsbv27wbw598dvljpafx8sp3"))))
18621 (build-system r-build-system)
18622 (propagated-inputs
18623 (list r-digest
18624 r-dplyr
18625 r-ggforce
18626 r-ggplot2
18627 r-ggrepel
18628 r-graphlayouts
18629 r-gtable
18630 r-igraph
18631 r-mass
18632 r-rcpp
18633 r-rlang
18634 r-scales
18635 r-tidygraph
18636 r-viridis
18637 r-withr))
18638 (native-inputs
18639 (list r-knitr))
18640 (home-page "https://cran.r-project.org/web/packages/ggraph/")
18641 (synopsis "Implementation of grammar of graphics for graphs and networks")
18642 (description
18643 "The grammar of graphics as implemented in ggplot2 is a poor fit for
18644 graph and network visualizations due to its reliance on tabular data input.
18645 The ggraph package is an extension of the ggplot2 API tailored to graph
18646 visualizations and provides the same flexible approach to building up plots
18647 layer by layer.")
18648 (license license:gpl3)))
18649
18650 (define-public r-gkmsvm
18651 (package
18652 (name "r-gkmsvm")
18653 (version "0.81.0")
18654 (source
18655 (origin
18656 (method url-fetch)
18657 (uri (cran-uri "gkmSVM" version))
18658 (sha256
18659 (base32
18660 "119g5rhc7ffyviz04r04aj5z1g6abnj3ddd01g7db505sdr6lapj"))))
18661 (properties `((upstream-name . "gkmSVM")))
18662 (build-system r-build-system)
18663 (propagated-inputs
18664 (list r-kernlab r-rcpp r-rocr r-seqinr))
18665 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
18666 (synopsis "Gapped-kmer support vector machine")
18667 (description
18668 "This R package provides tools for training gapped-kmer SVM classifiers
18669 for DNA and protein sequences. This package supports several sequence
18670 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
18671 (license license:gpl2+)))
18672
18673 (define-public r-varselrf
18674 (package
18675 (name "r-varselrf")
18676 (version "0.7-8")
18677 (source
18678 (origin
18679 (method url-fetch)
18680 (uri (cran-uri "varSelRF" version))
18681 (sha256
18682 (base32
18683 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
18684 (properties `((upstream-name . "varSelRF")))
18685 (build-system r-build-system)
18686 (propagated-inputs
18687 (list r-randomforest))
18688 (home-page "https://www.ligarto.org/rdiaz/software/software")
18689 (synopsis "Variable selection using random forests")
18690 (description
18691 "This package provides tools for the variable selection from random
18692 forests using both backwards variable elimination (for the selection of small
18693 sets of non-redundant variables) and selection based on the importance
18694 spectrum (somewhat similar to scree plots; for the selection of large,
18695 potentially highly-correlated variables). The main applications are in
18696 high-dimensional data (e.g., microarray data, and other genomics and
18697 proteomics applications).")
18698 (license license:gpl2+)))
18699
18700 (define-public r-pamr
18701 (package
18702 (name "r-pamr")
18703 (version "1.56.1")
18704 (source
18705 (origin
18706 (method url-fetch)
18707 (uri (cran-uri "pamr" version))
18708 (sha256
18709 (base32
18710 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
18711 (build-system r-build-system)
18712 (propagated-inputs
18713 (list r-cluster r-survival))
18714 (native-inputs (list gfortran))
18715 (home-page "https://cran.r-project.org/web/packages/pamr/")
18716 (synopsis "Prediction Analysis for Microarrays")
18717 (description
18718 "This package provides some functions for sample classification in
18719 microarrays.")
18720 (license license:gpl2)))
18721
18722 (define-public r-rda
18723 (package
18724 (name "r-rda")
18725 (version "1.0.2-2.1")
18726 (source
18727 (origin
18728 (method url-fetch)
18729 (uri (cran-uri "rda" version))
18730 (sha256
18731 (base32
18732 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
18733 (build-system r-build-system)
18734 (home-page "https://cran.r-project.org/web/packages/rda/")
18735 (synopsis "Shrunken centroids regularized discriminant analysis")
18736 (description
18737 "This package provides tools for shrunken centroids regularized
18738 discriminant analysis for the purpose of classifying high dimensional data.")
18739 (license license:gpl2+)))
18740
18741 (define-public r-ggvis
18742 (package
18743 (name "r-ggvis")
18744 (version "0.4.7")
18745 (source
18746 (origin
18747 (method url-fetch)
18748 (uri (cran-uri "ggvis" version))
18749 (sha256
18750 (base32
18751 "1qv512pd4x5vmx15y9nvqmabbbw14h75fmi1sjbcg5yl25z0cswy"))))
18752 (build-system r-build-system)
18753 (propagated-inputs
18754 (list r-assertthat
18755 r-dplyr
18756 r-htmltools
18757 r-jsonlite
18758 r-magrittr
18759 r-rlang
18760 r-shiny))
18761 (home-page "https://ggvis.rstudio.com/")
18762 (synopsis "Interactive grammar of graphics")
18763 (description
18764 "This package is a data visualization package for R providing an
18765 implementation of an interactive grammar of graphics, taking the best parts of
18766 ggplot2, combining them with the reactive framework of Shiny and drawing web
18767 graphics using Vega.")
18768 (license license:gpl2)))
18769
18770 (define-public r-gbm
18771 (package
18772 (name "r-gbm")
18773 (version "2.1.8")
18774 (source
18775 (origin
18776 (method url-fetch)
18777 (uri (cran-uri "gbm" version))
18778 (sha256
18779 (base32
18780 "1h9f4ww9yc3nsvghgr2q7jjrlz29ibabxjbax1sk5wmqh2wy6pbx"))))
18781 (build-system r-build-system)
18782 (propagated-inputs
18783 (list r-lattice r-survival))
18784 (native-inputs
18785 (list r-knitr))
18786 (home-page "https://github.com/gbm-developers/gbm")
18787 (synopsis "Generalized boosted regression models")
18788 (description
18789 "This package is an implementation of extensions to Freund and Schapire's
18790 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
18791 regression methods for least squares, absolute loss, t-distribution loss,
18792 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
18793 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
18794 and Learning to Rank measures (LambdaMart).")
18795 (license license:gpl2+)))
18796
18797 (define-public r-threejs
18798 (package
18799 (name "r-threejs")
18800 (version "0.3.3")
18801 (source
18802 (origin
18803 (method url-fetch)
18804 (uri (cran-uri "threejs" version))
18805 (sha256
18806 (base32
18807 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
18808 (build-system r-build-system)
18809 (arguments
18810 `(#:modules ((guix build utils)
18811 (guix build r-build-system)
18812 (srfi srfi-1)
18813 (ice-9 popen))
18814 #:phases
18815 (modify-phases %standard-phases
18816 (add-after 'unpack 'process-javascript
18817 (lambda* (#:key inputs #:allow-other-keys)
18818 (with-directory-excursion "inst"
18819 (call-with-values
18820 (lambda ()
18821 (unzip2
18822 `((,(assoc-ref inputs "js-jquery")
18823 "htmlwidgets/lib/jquery/jquery.min.js")
18824 (,(assoc-ref inputs "js-threejs-111")
18825 "htmlwidgets/lib/threejs-111/three.min.js"))))
18826 (lambda (sources targets)
18827 (for-each (lambda (source target)
18828 (format #t "Processing ~a --> ~a~%"
18829 source target)
18830 (delete-file target)
18831 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
18832 (call-with-output-file target
18833 (lambda (port)
18834 (dump-port minified port)))))
18835 sources targets))))
18836 #t)))))
18837 (propagated-inputs
18838 (list r-base64enc r-crosstalk r-htmlwidgets r-igraph))
18839 (native-inputs
18840 `(("uglifyjs" ,node-uglify-js)
18841 ("js-jquery"
18842 ,(origin
18843 (method url-fetch)
18844 (uri "https://code.jquery.com/jquery-1.12.4.js")
18845 (sha256
18846 (base32
18847 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
18848 ("js-threejs-111"
18849 ,(origin
18850 (method url-fetch)
18851 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
18852 (sha256
18853 (base32
18854 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
18855 (home-page "https://bwlewis.github.io/rthreejs")
18856 (synopsis "Interactive 3D scatter plots, networks and globes")
18857 (description
18858 "Create interactive 3D scatter plots, network plots, and globes in R
18859 using the three.js visualization library.")
18860 (license license:expat)))
18861
18862 (define-public r-mlbench
18863 (package
18864 (name "r-mlbench")
18865 (version "2.1-3")
18866 (source
18867 (origin
18868 (method url-fetch)
18869 (uri (cran-uri "mlbench" version))
18870 (sha256
18871 (base32
18872 "157iqsld0wj8g8cbs7nh6p2x6kasmkhs3078hsmqac946gk2pydi"))))
18873 (build-system r-build-system)
18874 (home-page "https://cran.r-project.org/web/packages/mlbench/")
18875 (synopsis "Machine learning benchmark problems")
18876 (description
18877 "This package provides a collection of artificial and real-world machine
18878 learning benchmark problems, including, e.g., several data sets from the UCI
18879 repository.")
18880 (license license:gpl2)))
18881
18882 (define-public r-mpm
18883 (package
18884 (name "r-mpm")
18885 (version "1.0-23")
18886 (source
18887 (origin
18888 (method url-fetch)
18889 (uri (cran-uri "mpm" version))
18890 (sha256
18891 (base32
18892 "1jpv2ddmw7aarqbbyfys1yb840arw33319wnny3v2hk84hldmayj"))))
18893 (build-system r-build-system)
18894 (propagated-inputs
18895 (list r-kernsmooth r-mass))
18896 (home-page "http://mpm.r-forge.r-project.org")
18897 (synopsis "Multivariate projection methods")
18898 (description
18899 "This is a package for exploratory graphical analysis of multivariate
18900 data, specifically gene expression data with different projection methods:
18901 principal component analysis, correspondence analysis, spectral map
18902 analysis.")
18903 (license license:gpl2+)))
18904
18905 (define-public r-png
18906 (package
18907 (name "r-png")
18908 (version "0.1-7")
18909 (source (origin
18910 (method url-fetch)
18911 (uri (cran-uri "png" version))
18912 (sha256
18913 (base32
18914 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
18915 (build-system r-build-system)
18916 (inputs
18917 (list libpng zlib))
18918 (home-page "https://www.rforge.net/png/")
18919 (synopsis "Read and write PNG images")
18920 (description
18921 "This package provides an easy and simple way to read, write and display
18922 bitmap images stored in the PNG format. It can read and write both files and
18923 in-memory raw vectors.")
18924 ;; Any of these GPL versions.
18925 (license (list license:gpl2 license:gpl3))))
18926
18927 (define-public r-ggcorrplot
18928 (package
18929 (name "r-ggcorrplot")
18930 (version "0.1.3")
18931 (source
18932 (origin
18933 (method url-fetch)
18934 (uri (cran-uri "ggcorrplot" version))
18935 (sha256
18936 (base32
18937 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
18938 (build-system r-build-system)
18939 (propagated-inputs
18940 (list r-ggplot2 r-reshape2))
18941 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
18942 (synopsis "Visualization of a correlation matrix using ggplot2")
18943 (description
18944 "The ggcorrplot package can be used to visualize easily a correlation
18945 matrix using ggplot2. It provides a solution for reordering the correlation
18946 matrix and displays the significance level on the plot. It also includes a
18947 function for computing a matrix of correlation p-values.")
18948 (license license:gpl2)))
18949
18950 (define-public r-ggfun
18951 (package
18952 (name "r-ggfun")
18953 (version "0.0.6")
18954 (source
18955 (origin
18956 (method url-fetch)
18957 (uri (cran-uri "ggfun" version))
18958 (sha256
18959 (base32
18960 "06si42b60hp8wprs5nbks93qlb9s269k9kw7akcirizwc399x62r"))))
18961 (properties `((upstream-name . "ggfun")))
18962 (build-system r-build-system)
18963 (propagated-inputs
18964 (list r-ggplot2 r-rlang))
18965 (native-inputs (list r-knitr))
18966 (home-page "https://cran.r-project.org/package=ggfun")
18967 (synopsis "Miscellaneous functions for ggplot2")
18968 (description
18969 "This package provides useful functions to edit ggplot object (e.g.,
18970 setting fonts for theme and layers, adding rounded rectangle as background for
18971 each of the legends).")
18972 (license license:artistic2.0)))
18973
18974 (define-public r-gridtext
18975 (package
18976 (name "r-gridtext")
18977 (version "0.1.4")
18978 (source
18979 (origin
18980 (method url-fetch)
18981 (uri (cran-uri "gridtext" version))
18982 (sha256
18983 (base32
18984 "131kw7nkfwksviwfifd2kk7lyvhxzzzv1nnj8rahkr3dik3akk61"))))
18985 (properties `((upstream-name . "gridtext")))
18986 (build-system r-build-system)
18987 (propagated-inputs
18988 (list r-jpeg
18989 r-markdown
18990 r-png
18991 r-rcpp
18992 r-rcurl
18993 r-rlang
18994 r-stringr
18995 r-xml2))
18996 (home-page "https://wilkelab.org/gridtext/")
18997 (synopsis "Improved text rendering support for Grid graphics")
18998 (description
18999 "This package provides support for rendering of formatted text using Grid
19000 graphics. Text can be formatted via a minimal subset of Markdown, HTML, and
19001 inline CSS directives, and it can be rendered both with and without word
19002 wrap.")
19003 (license license:expat)))
19004
19005 (define-public r-ggtext
19006 (package
19007 (name "r-ggtext")
19008 (version "0.1.1")
19009 (source
19010 (origin
19011 (method url-fetch)
19012 (uri (cran-uri "ggtext" version))
19013 (sha256
19014 (base32
19015 "0n19dlcys8v7myfyckr6dnq0kx79k3sbh8nwx1jsx8pgzfbi8a2b"))))
19016 (properties `((upstream-name . "ggtext")))
19017 (build-system r-build-system)
19018 (propagated-inputs
19019 (list r-ggplot2 r-gridtext r-rlang r-scales))
19020 (native-inputs (list r-knitr))
19021 (home-page "https://wilkelab.org/ggtext/")
19022 (synopsis "Improved text rendering support for ggplot2")
19023 (description
19024 "This package provides a ggplot2 extension that enables the rendering of
19025 complex formatted plot labels (titles, subtitles, facet labels, axis labels,
19026 etc.). Text boxes with automatic word wrap are also supported.")
19027 (license license:gpl2)))
19028
19029 ;; This package includes minified JavaScript files. When upgrading please
19030 ;; check that there are no new minified JavaScript files.
19031 (define-public r-flexdashboard
19032 (package
19033 (name "r-flexdashboard")
19034 (version "0.5.2")
19035 (source
19036 (origin
19037 (method url-fetch)
19038 (uri (cran-uri "flexdashboard" version))
19039 (sha256
19040 (base32
19041 "1bh759llp15fxrx2rwvxd8p3w84vjmkid32ism7zg49a127fjib4"))
19042 (modules '((guix build utils)))
19043 (snippet
19044 '(begin
19045 ;; Delete bundled minified JavaScript files
19046 (delete-file "inst/htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
19047 (delete-file "inst/www/sly/sly.min.js")
19048 (delete-file "inst/www/stickytableheaders/jquery.stickytableheaders.min.js")
19049 (delete-file "inst/www/prism/prism.js")
19050 #t))))
19051 (build-system r-build-system)
19052 (arguments
19053 `(#:modules ((guix build utils)
19054 (guix build r-build-system)
19055 (srfi srfi-1)
19056 (srfi srfi-26)
19057 (ice-9 popen)
19058 (ice-9 textual-ports))
19059 #:phases
19060 (modify-phases %standard-phases
19061 (add-after 'unpack 'process-javascript
19062 (lambda* (#:key inputs #:allow-other-keys)
19063 (with-directory-excursion "inst"
19064 ;; Concatenate all components of prism.js
19065 (let ((contents (string-join
19066 (map (lambda (name)
19067 (call-with-input-file
19068 (assoc-ref inputs name)
19069 get-string-all))
19070 (list "js-prism"
19071 "js-prism-r"
19072 "js-prism-line-numbers"))
19073 "\n")))
19074 (call-with-output-file "prism-src.js"
19075 (cut display contents <>)))
19076 (call-with-values
19077 (lambda ()
19078 (unzip2
19079 `(("www/stickytableheaders/jquery.stickytableheaders.js"
19080 "www/stickytableheaders/jquery.stickytableheaders.min.js")
19081 ("www/sly/sly.js"
19082 "www/sly/sly.min.js")
19083 ("prism-src.js"
19084 "www/prism/prism.js")
19085 (,(assoc-ref inputs "js-raphael")
19086 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
19087 (,(assoc-ref inputs "js-featherlight")
19088 "www/featherlight/featherlight.min.js"))))
19089 (lambda (sources targets)
19090 (for-each (lambda (source target)
19091 (format #t "Processing ~a --> ~a~%"
19092 source target)
19093 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
19094 (call-with-output-file target
19095 (lambda (port)
19096 (dump-port minified port)))))
19097 sources targets))))
19098 #t)))))
19099 (propagated-inputs
19100 (list r-htmltools
19101 r-htmlwidgets
19102 r-jsonlite
19103 r-knitr
19104 r-rmarkdown
19105 r-shiny))
19106 (native-inputs
19107 `(("uglifyjs" ,node-uglify-js)
19108 ("js-raphael"
19109 ,(origin
19110 (method url-fetch)
19111 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
19112 (sha256
19113 (base32
19114 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
19115 ("js-prism"
19116 ,(origin
19117 (method url-fetch)
19118 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
19119 (sha256
19120 (base32
19121 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
19122 ("js-prism-r"
19123 ,(origin
19124 (method url-fetch)
19125 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
19126 (sha256
19127 (base32
19128 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
19129 ("js-prism-line-numbers"
19130 ,(origin
19131 (method url-fetch)
19132 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
19133 (sha256
19134 (base32
19135 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
19136 ("js-featherlight"
19137 ,(origin
19138 (method url-fetch)
19139 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
19140 (sha256
19141 (base32
19142 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
19143 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
19144 (synopsis "R Markdown format for flexible dashboards")
19145 (description
19146 "This package provides an R Markdown format for converting an R Markdown
19147 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
19148 of its components to the containing web page.")
19149 (license license:expat)))
19150
19151 (define-public r-preseqr
19152 (package
19153 (name "r-preseqr")
19154 (version "4.0.0")
19155 (source
19156 (origin
19157 (method url-fetch)
19158 (uri (cran-uri "preseqR" version))
19159 (sha256
19160 (base32
19161 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
19162 (properties `((upstream-name . "preseqR")))
19163 (build-system r-build-system)
19164 (propagated-inputs
19165 (list r-polynom))
19166 (home-page "https://cran.r-project.org/web/packages/preseqR/")
19167 (synopsis "Predicting species accumulation curves")
19168 (description
19169 "This package can be used to predict the r-species accumulation
19170 curve (r-SAC), which is the number of species represented at least r times as
19171 a function of the sampling effort. When r = 1, the curve is known as the
19172 species accumulation curve, or the library complexity curve in high-throughput
19173 genomic sequencing. The package includes both parametric and nonparametric
19174 methods, as described by Deng C, et al. (2018).")
19175 (license license:gpl3)))
19176
19177 (define-public r-mapplots
19178 (package
19179 (name "r-mapplots")
19180 (version "1.5.1")
19181 (source
19182 (origin
19183 (method url-fetch)
19184 (uri (cran-uri "mapplots" version))
19185 (sha256
19186 (base32
19187 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
19188 (build-system r-build-system)
19189 (home-page "https://cran.r-project.org/web/packages/mapplots/")
19190 (synopsis "Data visualization on maps")
19191 (description
19192 "This package helps you create simple maps; add sub-plots like pie plots
19193 to a map or any other plot; format, plot and export gridded data. The package
19194 was developed for displaying fisheries data but most functions can be used for
19195 more generic data visualisation.")
19196 (license license:gpl2+)))
19197
19198 (define-public r-pmcmr
19199 (package
19200 (name "r-pmcmr")
19201 (version "4.4")
19202 (source
19203 (origin
19204 (method url-fetch)
19205 (uri (cran-uri "PMCMR" version))
19206 (sha256
19207 (base32
19208 "05n13pp5yff6pzk4ry07crddfaj3jlglrd1vkcnacyd8jpaxkd77"))))
19209 (properties `((upstream-name . "PMCMR")))
19210 (build-system r-build-system)
19211 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
19212 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
19213 (description
19214 "This is a deprecated package for calculating pairwise multiple
19215 comparisons of mean rank sums. This package is superseded by the novel
19216 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
19217 compatibility of dependent packages for some time.")
19218 (license license:gpl3+)))
19219
19220 (define-public r-downloader
19221 (package
19222 (name "r-downloader")
19223 (version "0.4")
19224 (source
19225 (origin
19226 (method url-fetch)
19227 (uri (cran-uri "downloader" version))
19228 (sha256
19229 (base32
19230 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
19231 (build-system r-build-system)
19232 (propagated-inputs
19233 (list r-digest))
19234 (home-page "https://github.com/wch/downloader")
19235 (synopsis "Download files over HTTP and HTTPS")
19236 (description
19237 "This package provides a wrapper for the @code{download.file} function,
19238 making it possible to download files over HTTPS across platforms. The
19239 @code{RCurl} package provides this functionality (and much more) but has
19240 external dependencies. This package has is implemented purely in R.")
19241 (license license:gpl2)))
19242
19243 (define-public r-aplot
19244 (package
19245 (name "r-aplot")
19246 (version "0.1.4")
19247 (source
19248 (origin
19249 (method url-fetch)
19250 (uri (cran-uri "aplot" version))
19251 (sha256
19252 (base32
19253 "1b4jjj05a602dgn6yr1bsmbzlzkj6wf6af3k3w63g3mkqv0xzsfd"))))
19254 (properties `((upstream-name . "aplot")))
19255 (build-system r-build-system)
19256 (propagated-inputs
19257 (list r-ggfun
19258 r-ggplot2
19259 r-ggplotify
19260 r-magrittr
19261 r-patchwork))
19262 (home-page "https://github.com/YuLab-SMU/aplot")
19263 (synopsis "Decorate a ggplot with associated information")
19264 (description
19265 "Users may want to align plots with associated information that requires
19266 axes to be exactly matched in subplots, e.g. hierarchical clustering with a
19267 heatmap. This package provides utilities to align associated subplots to a
19268 main plot at different sides (left, right, top and bottom) with axes exactly
19269 matched.")
19270 (license license:artistic2.0)))
19271
19272 (define-public r-ggnewscale
19273 (package
19274 (name "r-ggnewscale")
19275 (version "0.4.7")
19276 (source
19277 (origin
19278 (method url-fetch)
19279 (uri (cran-uri "ggnewscale" version))
19280 (sha256
19281 (base32
19282 "108a7y6sqqvzyfk247lbmnacfpwdl405rf1b3fa62cgx8ycsq4kb"))))
19283 (properties `((upstream-name . "ggnewscale")))
19284 (build-system r-build-system)
19285 (propagated-inputs
19286 (list r-ggplot2))
19287 (home-page "https://cran.r-project.org/package=ggnewscale")
19288 (synopsis "Multiple fill and color scales in ggplot2")
19289 (description
19290 "This package lets you use multiple fill and color scales in ggplot2.")
19291 (license license:gpl3)))
19292
19293 (define-public r-ggpointdensity
19294 (package
19295 (name "r-ggpointdensity")
19296 (version "0.1.0")
19297 (source
19298 (origin
19299 (method url-fetch)
19300 (uri (cran-uri "ggpointdensity" version))
19301 (sha256
19302 (base32
19303 "0c9a14j3b0hvamqylhzldw2hjdxmfbllwahjkf3gg2rw337ld9iy"))))
19304 (properties
19305 `((upstream-name . "ggpointdensity")))
19306 (build-system r-build-system)
19307 (propagated-inputs
19308 (list r-ggplot2))
19309 (home-page "https://github.com/LKremer/ggpointdensity")
19310 (synopsis "Cross between a 2D density plot and a scatter plot")
19311 (description
19312 "This package provides a cross between a 2D density plot and a scatter
19313 plot, implemented as a ggplot2 @code{geom}. Points in the scatter plot are
19314 colored by the number of neighboring points. This is useful to visualize the
19315 2D-distribution of points in case of overplotting.")
19316 (license license:gpl3)))
19317
19318 (define-public r-arrow
19319 (package
19320 (name "r-arrow")
19321 (version "8.0.0")
19322 (source
19323 (origin
19324 (method url-fetch)
19325 (uri (cran-uri "arrow" version))
19326 (sha256
19327 (base32
19328 "1b85vc5ld7nibqgsdkl5kbzc0rm5jh5lqfdrssvrrcxpd26a16kc"))))
19329 (properties `((upstream-name . "arrow")))
19330 (build-system r-build-system)
19331 (inputs
19332 (list `(,apache-arrow "lib") zlib))
19333 (propagated-inputs
19334 (list r-assertthat
19335 r-bit64
19336 r-cpp11
19337 r-purrr
19338 r-r6
19339 r-rlang
19340 r-tidyselect
19341 r-vctrs))
19342 (native-inputs
19343 (list pkg-config r-knitr))
19344 (home-page "https://github.com/apache/arrow/")
19345 (synopsis "R integration to Apache Arrow")
19346 (description
19347 "Apache Arrow is a cross-language development platform for in-memory
19348 data. It specifies a standardized language-independent columnar memory format
19349 for flat and hierarchical data, organized for efficient analytic operations on
19350 modern hardware. This package provides an R interface to the Arrow C++
19351 library.")
19352 (license license:asl2.0)))
19353
19354 (define-public r-rex
19355 (package
19356 (name "r-rex")
19357 (version "1.2.1")
19358 (source
19359 (origin
19360 (method url-fetch)
19361 (uri (cran-uri "rex" version))
19362 (sha256
19363 (base32
19364 "1mmzlc3j7xa0rbjxa369f4sr0iw3gq58g8fmjjxbsjvfq14ychmg"))))
19365 (build-system r-build-system)
19366 (propagated-inputs
19367 (list r-lazyeval))
19368 (native-inputs
19369 (list r-knitr))
19370 (home-page "https://github.com/kevinushey/rex")
19371 (synopsis "Friendly regular expressions")
19372 (description
19373 "This package provides a friendly interface for the construction of
19374 regular expressions. Regular expressions are a very powerful feature, however
19375 they are often difficult to interpret. Rex allows you to build complex
19376 regular expressions from human readable expressions")
19377 (license license:expat)))
19378
19379 (define-public r-mlapi
19380 (package
19381 (name "r-mlapi")
19382 (version "0.1.1")
19383 (source
19384 (origin
19385 (method url-fetch)
19386 (uri (cran-uri "mlapi" version))
19387 (sha256
19388 (base32
19389 "1qyiii6x9b89i4pd4yi2zd23aabpmnpj18gqi5va0zy0l8r7kknr"))))
19390 (properties `((upstream-name . "mlapi")))
19391 (build-system r-build-system)
19392 (propagated-inputs
19393 (list r-matrix r-r6))
19394 (native-inputs
19395 (list r-knitr))
19396 (home-page "https://cran.r-project.org/package=mlapi")
19397 (synopsis "Abstract classes for building scikit-learn like API")
19398 (description
19399 "This package provides R6 abstract classes for building machine learning
19400 models with a scikit-learn like API. Scikit-learn is a popular module for the
19401 Python programming language whose design became a de facto standard in
19402 industry for machine learning tasks.")
19403 (license license:expat)))
19404
19405 (define-public r-float
19406 (package
19407 (name "r-float")
19408 (version "0.3-0")
19409 (source
19410 (origin
19411 (method url-fetch)
19412 (uri (cran-uri "float" version))
19413 (sha256
19414 (base32
19415 "0m7bf3548vlgkk1c78jyrgj72ngwg0gsccap2iqinm3l3qrm4zbs"))))
19416 (properties `((upstream-name . "float")))
19417 (build-system r-build-system)
19418 (native-inputs
19419 (list gfortran))
19420 (home-page "https://github.com/wrathematics/float")
19421 (synopsis "32-bit floats")
19422 (description
19423 "R comes with a suite of utilities for linear algebra with
19424 \"numeric\" (double precision) vectors/matrices. However, sometimes single
19425 precision (or less!) is more than enough for a particular task. This package
19426 extends R's linear algebra facilities to include 32-bit float (single
19427 precision) data. Float vectors/matrices have half the precision of their
19428 \"numeric\"-type counterparts but are generally faster to numerically operate
19429 on, for a performance vs accuracy trade-off.")
19430 (license license:bsd-2)))
19431
19432 (define-public r-rsparse
19433 (package
19434 (name "r-rsparse")
19435 (version "0.5.0")
19436 (source
19437 (origin
19438 (method url-fetch)
19439 (uri (cran-uri "rsparse" version))
19440 (sha256
19441 (base32
19442 "0d05h47j29zipyxbkv9cwzv2dzj894z6hh9dqfhwswwjbv6ciwpq"))))
19443 (properties `((upstream-name . "rsparse")))
19444 (build-system r-build-system)
19445 (propagated-inputs
19446 (list r-data-table
19447 r-float
19448 r-lgr
19449 r-matrix
19450 r-matrixextra
19451 r-rcpp
19452 r-rcpparmadillo
19453 r-rhpcblasctl))
19454 (home-page "https://github.com/rexyai/rsparse")
19455 (synopsis "Statistical learning on sparse matrices")
19456 (description
19457 "This package implements many algorithms for statistical learning on
19458 sparse matrices: matrix factorizations, matrix completion, elastic net
19459 regressions, factorization machines. The rsparse package also enhances the
19460 Matrix package by providing methods for multithreaded <sparse, dense> matrix
19461 products and native slicing of the sparse matrices in @dfn{Compressed Sparse
19462 Row} (CSR) format.")
19463 (license license:gpl2+)))
19464
19465 (define-public r-text2vec
19466 (package
19467 (name "r-text2vec")
19468 (version "0.6.1")
19469 (source
19470 (origin
19471 (method url-fetch)
19472 (uri (cran-uri "text2vec" version))
19473 (sha256
19474 (base32
19475 "0bisr31051hnshw26rp9r4bm8ksr977dl9k1d3fb1x79pq5aa2pi"))))
19476 (properties `((upstream-name . "text2vec")))
19477 (build-system r-build-system)
19478 (propagated-inputs
19479 (list r-data-table
19480 r-digest
19481 r-lgr
19482 r-matrix
19483 r-mlapi
19484 r-r6
19485 r-rcpp
19486 r-rsparse
19487 r-stringi))
19488 (native-inputs
19489 (list r-knitr))
19490 (home-page "http://text2vec.org")
19491 (synopsis "Text mining framework for R")
19492 (description
19493 "This package provides fast and memory-friendly tools for text
19494 vectorization, topic modeling (LDA, LSA), word embeddings (GloVe),
19495 similarities. It provides a source-agnostic streaming API, which allows
19496 researchers to perform analysis of collections of documents which are larger
19497 than available RAM. All core functions are parallelized to benefit from
19498 multicore machines.")
19499 (license license:gpl2+)))
19500
19501 (define-public r-mcmcpack
19502 (package
19503 (name "r-mcmcpack")
19504 (version "1.6-3")
19505 (source
19506 (origin
19507 (method url-fetch)
19508 (uri (cran-uri "MCMCpack" version))
19509 (sha256
19510 (base32
19511 "1cwdjn43b9hxpxf9mnas583myhk6r2258mh57f0zsc8bd4hbl56b"))))
19512 (properties `((upstream-name . "MCMCpack")))
19513 (build-system r-build-system)
19514 (propagated-inputs
19515 (list r-coda r-lattice r-mass r-mcmc r-quantreg))
19516 (home-page "https://cran.r-project.org/package=MCMCpack")
19517 (synopsis "Markov Chain Monte Carlo (MCMC) package")
19518 (description
19519 "This package contains functions to perform Bayesian inference using
19520 posterior simulation for a number of statistical models. Most simulation is
19521 done in compiled C++ written in the Scythe Statistical Library. All models
19522 return @code{coda} @code{mcmc} objects that can then be summarized using the
19523 @code{coda} package. Some useful utility functions such as density functions,
19524 pseudo-random number generators for statistical distributions, a general
19525 purpose Metropolis sampling algorithm, and tools for visualization are
19526 provided.")
19527 (license license:gpl3)))
19528
19529 (define-public r-xmlparsedata
19530 (package
19531 (name "r-xmlparsedata")
19532 (version "1.0.5")
19533 (source
19534 (origin
19535 (method url-fetch)
19536 (uri (cran-uri "xmlparsedata" version))
19537 (sha256
19538 (base32
19539 "1c6bnz3ng1qw7sfip8wq3a4dn36a4d6rbja0sadn0a4pbsmk8q3n"))))
19540 (properties `((upstream-name . "xmlparsedata")))
19541 (build-system r-build-system)
19542 (home-page "https://github.com/r-lib/xmlparsedata#readme")
19543 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
19544 (description
19545 "This package provides tools to convert the output of
19546 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
19547 @code{XPath}, and is easier to manipulate in general.")
19548 (license license:expat)))
19549
19550 (define-public r-cyclocomp
19551 (package
19552 (name "r-cyclocomp")
19553 (version "1.1.0")
19554 (source
19555 (origin
19556 (method url-fetch)
19557 (uri (cran-uri "cyclocomp" version))
19558 (sha256
19559 (base32
19560 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
19561 (properties `((upstream-name . "cyclocomp")))
19562 (build-system r-build-system)
19563 (propagated-inputs
19564 (list r-callr r-crayon r-desc r-remotes r-withr))
19565 (home-page "https://github.com/MangoTheCat/cyclocomp")
19566 (synopsis "Cyclomatic complexity of R code")
19567 (description
19568 "Cyclomatic complexity is a software metric, used to indicate the
19569 complexity of a program. It is a quantitative measure of the number of
19570 linearly independent paths through a program's source code. This package
19571 provides tools to compute this metric.")
19572 (license license:expat)))
19573
19574 (define-public r-lintr
19575 (package
19576 (name "r-lintr")
19577 (version "2.0.1")
19578 (source
19579 (origin
19580 (method url-fetch)
19581 (uri (cran-uri "lintr" version))
19582 (sha256
19583 (base32
19584 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
19585 (properties `((upstream-name . "lintr")))
19586 (build-system r-build-system)
19587 (propagated-inputs
19588 (list r-codetools
19589 r-crayon
19590 r-cyclocomp
19591 r-digest
19592 r-httr
19593 r-jsonlite
19594 r-knitr
19595 r-rex
19596 r-rstudioapi
19597 r-testthat
19598 r-xml2
19599 r-xmlparsedata))
19600 (home-page "https://github.com/jimhester/lintr")
19601 (synopsis "Linter for R code")
19602 (description "This package checks adherence to a given style, syntax
19603 errors and possible semantic issues. It supports on the fly checking of R
19604 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
19605 (license license:expat)))
19606
19607 (define-public r-sctransform
19608 (package
19609 (name "r-sctransform")
19610 (version "0.3.3")
19611 (source
19612 (origin
19613 (method url-fetch)
19614 (uri (cran-uri "sctransform" version))
19615 (sha256
19616 (base32
19617 "0aqbcarsvvzkh5h4i65f08y4b8dfcs3zi62hmvfy24gj81f15bw3"))))
19618 (build-system r-build-system)
19619 (propagated-inputs
19620 (list r-dplyr
19621 r-future
19622 r-future-apply
19623 r-ggplot2
19624 r-gridextra
19625 r-magrittr
19626 r-mass
19627 r-matrix
19628 r-matrixstats
19629 r-rcpp
19630 r-rcpparmadillo
19631 r-reshape2
19632 r-rlang))
19633 (home-page "https://github.com/ChristophH/sctransform")
19634 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
19635 (description
19636 "This package provides a normalization method for single-cell UMI count
19637 data using a variance stabilizing transformation. The transformation is based
19638 on a negative binomial regression model with regularized parameters. As part
19639 of the same regression framework, this package also provides functions for
19640 batch correction, and data correction.")
19641 (license license:gpl3)))
19642
19643 (define-public r-styler
19644 (package
19645 (name "r-styler")
19646 (version "1.7.0")
19647 (source
19648 (origin
19649 (method url-fetch)
19650 (uri (cran-uri "styler" version))
19651 (sha256
19652 (base32
19653 "1ki260ga0jrmayhdlx2sl788yp5kkmi4wyl32nmvvyb55sng6j9y"))))
19654 (build-system r-build-system)
19655 ;; This is needed by R.cache.
19656 (arguments
19657 `(#:phases
19658 (modify-phases %standard-phases
19659 (add-after 'unpack 'set-HOME
19660 (lambda _ (setenv "HOME" "/tmp"))))))
19661 (propagated-inputs
19662 (list r-cli
19663 r-magrittr
19664 r-purrr
19665 r-r-cache
19666 r-rematch2
19667 r-rlang
19668 r-rprojroot
19669 r-tibble
19670 r-withr))
19671 (native-inputs
19672 (list r-knitr))
19673 (home-page "https://github.com/r-lib/styler")
19674 (synopsis "Non-invasive pretty printing of R code")
19675 (description
19676 "This is a package for pretty-printing R code without changing the user's
19677 formatting intent.")
19678 (license license:gpl3)))
19679
19680 (define-public r-scrime
19681 (package
19682 (name "r-scrime")
19683 (version "1.3.5")
19684 (source
19685 (origin
19686 (method url-fetch)
19687 (uri (cran-uri "scrime" version))
19688 (sha256
19689 (base32
19690 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
19691 (build-system r-build-system)
19692 (home-page "https://cran.r-project.org/web/packages/scrime/")
19693 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
19694 (description
19695 "This package provides tools for the analysis of high-dimensional data
19696 developed/implemented at the group \"Statistical Complexity Reduction In
19697 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
19698 the functions can also be applied to other types of categorical data.")
19699 (license license:gpl2)))
19700
19701 (define-public r-pbmcapply
19702 (package
19703 (name "r-pbmcapply")
19704 (version "1.5.1")
19705 (source
19706 (origin
19707 (method url-fetch)
19708 (uri (cran-uri "pbmcapply" version))
19709 (sha256
19710 (base32
19711 "1p8jf7c4k45482w72sr0jw4jkz787krrxai3sl6jz5l4lda2iz3z"))))
19712 (build-system r-build-system)
19713 (home-page "https://github.com/kvnkuang/pbmcapply")
19714 (synopsis "Track the progress of apply procedures with a progress bar")
19715 (description
19716 "This light-weight package helps you track and visualize the progress of
19717 parallel versions of vectorized R functions of the @code{mc*apply} family.")
19718 (license license:expat)))
19719
19720 (define-public r-blme
19721 (package
19722 (name "r-blme")
19723 (version "1.0-5")
19724 (source
19725 (origin
19726 (method url-fetch)
19727 (uri (cran-uri "blme" version))
19728 (sha256
19729 (base32
19730 "0413j7gwr5yj14jamkizj55q7xii1a0kgazzj0ilqn2ascclz6k7"))))
19731 (build-system r-build-system)
19732 (propagated-inputs (list r-lme4))
19733 (home-page "https://github.com/vdorie/blme")
19734 (synopsis "Bayesian linear mixed-effects models")
19735 (description
19736 "This package provides tools for maximum a posteriori estimation for
19737 linear and generalized linear mixed-effects models in a Bayesian setting. It
19738 extends the lme4 package.")
19739 (license license:gpl2+)))
19740
19741 (define-public r-batchtools
19742 (package
19743 (name "r-batchtools")
19744 (version "0.9.15")
19745 (source
19746 (origin
19747 (method url-fetch)
19748 (uri (cran-uri "batchtools" version))
19749 (sha256
19750 (base32
19751 "0d2xy77hkzhcnyz8zxcv98i80fx6ripjw4rvyx4ww1d0vjjgqf52"))))
19752 (build-system r-build-system)
19753 (propagated-inputs
19754 (list r-backports
19755 r-base64url
19756 r-brew
19757 r-checkmate
19758 r-data-table
19759 r-digest
19760 r-fs
19761 r-progress
19762 r-r6
19763 r-rappdirs
19764 r-stringi
19765 r-withr))
19766 (native-inputs
19767 (list r-knitr))
19768 (home-page "https://github.com/mllg/batchtools")
19769 (synopsis "Tools for computation on batch systems")
19770 (description
19771 "As a successor of the packages BatchJobs and BatchExperiments, this
19772 package provides a parallel implementation of the Map function for high
19773 performance computing systems managed by various schedulers. A multicore and
19774 socket mode allow the parallelization on a local machines, and multiple
19775 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
19776 the package provides an abstraction mechanism to define large-scale computer
19777 experiments in a well-organized and reproducible way.")
19778 (license license:lgpl3)))
19779
19780 (define-public r-clue
19781 (package
19782 (name "r-clue")
19783 (version "0.3-60")
19784 (source
19785 (origin
19786 (method url-fetch)
19787 (uri (cran-uri "clue" version))
19788 (sha256
19789 (base32
19790 "0apgpdnn74mqg2bnr8yjyxgyvdl411h0r2b1r2xd67k21pyxs8bd"))))
19791 (build-system r-build-system)
19792 (propagated-inputs (list r-cluster))
19793 (home-page "https://cran.r-project.org/web/packages/clue/")
19794 (synopsis "Tools for analyzing cluster ensembles")
19795 (description "Cluster ensembles are collections of individual solutions to
19796 a given clustering problem which are useful or necessary to consider in a wide
19797 range of applications. This R package provides an extensible computational
19798 environment for creating and analyzing cluster ensembles, with basic data
19799 structures for representing partitions and hierarchies, and facilities for
19800 computing on them, including methods for measuring proximity and obtaining
19801 consensus and secondary clusterings.")
19802 (license license:gpl2)))
19803
19804 (define-public r-sitmo
19805 (package
19806 (name "r-sitmo")
19807 (version "2.0.2")
19808 (source
19809 (origin
19810 (method url-fetch)
19811 (uri (cran-uri "sitmo" version))
19812 (sha256
19813 (base32
19814 "1hm89zi38ldgbskyx1cn7gm87yqy7zrxli8q05a36y1ndvazi3j4"))))
19815 (build-system r-build-system)
19816 (propagated-inputs (list r-rcpp))
19817 (native-inputs
19818 (list r-knitr))
19819 (home-page "https://github.com/coatless/sitmo/")
19820 (synopsis "Parallel pseudo random number generator header files")
19821 (description
19822 "This package provides two high quality and fast PPRNGs that may be used
19823 in an OpenMP parallel environment. In addition, there is a generator for one
19824 dimensional low-discrepancy sequence.")
19825 (license license:expat)))
19826
19827 (define-public r-dqrng
19828 (package
19829 (name "r-dqrng")
19830 (version "0.3.0")
19831 (source
19832 (origin
19833 (method url-fetch)
19834 (uri (cran-uri "dqrng" version))
19835 (sha256
19836 (base32
19837 "1fwsldqcri2lccna4icbmmlqic3w4xyjm7rn0xmikrsw4kzapvjb"))))
19838 (build-system r-build-system)
19839 (propagated-inputs
19840 (list r-bh r-rcpp r-sitmo))
19841 (native-inputs
19842 (list r-knitr))
19843 (home-page "https://www.daqana.org/dqrng")
19844 (synopsis "Fast pseudo random number generators")
19845 (description
19846 "Several fast random number generators are provided as C++ header-only
19847 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
19848 Additionally, fast functions for generating random numbers according to a
19849 uniform, normal and exponential distribution are included. The latter two use
19850 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
19851 functions are exported to R and as a C++ interface and are enabled for use
19852 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
19853 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
19854 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
19855 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
19856 ;; whole is distributed under the terms of the AGPL 3.
19857 (license license:agpl3)))
19858
19859 (define-public r-ingredients
19860 (package
19861 (name "r-ingredients")
19862 (version "2.2.0")
19863 (source
19864 (origin
19865 (method url-fetch)
19866 (uri (cran-uri "ingredients" version))
19867 (sha256
19868 (base32
19869 "11bv4l4fn9kr7y2nfzrwnaya8fi9w3nwcm9vzlqb7dva83rkqbsc"))))
19870 (properties `((upstream-name . "ingredients")))
19871 (build-system r-build-system)
19872 (propagated-inputs
19873 (list r-ggplot2 r-gridextra r-scales))
19874 (native-inputs (list r-knitr))
19875 (home-page "https://ModelOriented.github.io/ingredients/")
19876 (synopsis "Effects and importances of model ingredients")
19877 (description
19878 "This is a collection of tools for assessment of feature importance and
19879 feature effects. Key functions are:
19880
19881 @itemize
19882 @item @code{feature_importance()} for assessment of global level feature
19883 importance,
19884 @item @code{ceteris_paribus()} for calculation of the what-if plots,
19885 @item @code{partial_dependence()} for partial dependence plots,
19886 @item @code{conditional_dependence()} for conditional dependence plots,
19887 @item @code{accumulated_dependence()} for accumulated local effects plots,
19888 @item @code{aggregate_profiles()} and @code{cluster_profiles()} for
19889 aggregation of ceteris paribus profiles,
19890 @item generic @code{print()} and @code{plot()} for better usability of
19891 selected explainers,
19892 @item generic @code{plotD3()} for interactive, D3 based explanations, and
19893 @item generic @code{describe()} for explanations in natural language.
19894 @end itemize\n")
19895 (license license:gpl3)))
19896
19897 (define-public r-ibreakdown
19898 (package
19899 (name "r-ibreakdown")
19900 (version "2.0.1")
19901 (source
19902 (origin
19903 (method url-fetch)
19904 (uri (cran-uri "iBreakDown" version))
19905 (sha256
19906 (base32
19907 "00jzrndb3ahsv6ihp2pvs732n9cc944m83vdinrl9v1pxd82prkh"))))
19908 (properties `((upstream-name . "iBreakDown")))
19909 (build-system r-build-system)
19910 (propagated-inputs (list r-ggplot2))
19911 (native-inputs (list r-knitr))
19912 (home-page "https://ModelOriented.github.io/iBreakDown/")
19913 (synopsis "Model agnostic instance level variable attributions")
19914 (description
19915 "This package provides a model agnostic tool for decomposition of
19916 predictions from black boxes. It supports additive attributions and
19917 attributions with interactions. The Break Down Table shows contributions of
19918 every variable to a final prediction. The Break Down Plot presents variable
19919 contributions in a concise graphical way. This package works for
19920 classification and regression models.")
19921 (license license:gpl3)))
19922
19923 (define-public r-dae
19924 (package
19925 (name "r-dae")
19926 (version "3.2-13")
19927 (source
19928 (origin
19929 (method url-fetch)
19930 (uri (cran-uri "dae" version))
19931 (sha256
19932 (base32
19933 "0mq94ah21p1glvsbvdmi2p7nlgz1bvq7w3rz2z3mdqq18kz6nkjw"))))
19934 (build-system r-build-system)
19935 (propagated-inputs
19936 (list r-ggplot2 r-plyr))
19937 (native-inputs
19938 (list r-r-rsp)) ; vignette builder
19939 (home-page "http://chris.brien.name")
19940 (synopsis "Functions useful in the design and ANOVA of experiments")
19941 (description
19942 "This package provides functions useful in the design and ANOVA of
19943 experiments. The content falls into the following groupings:
19944
19945 @enumerate
19946 @item data,
19947 @item factor manipulation functions,
19948 @item design functions,
19949 @item ANOVA functions,
19950 @item matrix functions,
19951 @item projector and canonical efficiency functions, and
19952 @item miscellaneous functions.
19953 @end enumerate
19954
19955 There is a vignette called @code{DesignNotes} describing how to use the design
19956 functions for randomizing and assessing designs. The ANOVA functions
19957 facilitate the extraction of information when the @code{Error} function has
19958 been used in the call to @code{aov}.")
19959 (license license:gpl2)))
19960
19961 (define-public r-dalex
19962 (package
19963 (name "r-dalex")
19964 (version "2.4.1")
19965 (source
19966 (origin
19967 (method url-fetch)
19968 (uri (cran-uri "DALEX" version))
19969 (sha256
19970 (base32
19971 "0mcdd2bd8zlsz7x174g87dp8vy4wc06w58dyr27f6lgv9shzya8j"))))
19972 (properties `((upstream-name . "DALEX")))
19973 (build-system r-build-system)
19974 (propagated-inputs
19975 (list r-ggplot2 r-ibreakdown r-ingredients))
19976 (home-page "https://pbiecek.github.io/DALEX/")
19977 (synopsis "Descriptive machine learning explanations")
19978 (description
19979 "Machine Learning models are widely used and have various applications in
19980 classification or regression. Models created with boosting, bagging, stacking
19981 or similar techniques are often used due to their high performance, but such
19982 black-box models usually lack interpretability. The DALEX package contains
19983 various explainers that help to understand the link between input variables
19984 and model output.")
19985 ;; Any version of the GPL
19986 (license license:gpl3+)))
19987
19988 (define-public r-enrichr
19989 (package
19990 (name "r-enrichr")
19991 (version "3.0")
19992 (source
19993 (origin
19994 (method url-fetch)
19995 (uri (cran-uri "enrichR" version))
19996 (sha256
19997 (base32
19998 "0i3kfq4fkmx47n61zj5f87iv8ci6gbgy90a7s8dy9zbndzvbgya3"))))
19999 (properties `((upstream-name . "enrichR")))
20000 (build-system r-build-system)
20001 (propagated-inputs
20002 (list r-ggplot2 r-httr r-rjson))
20003 (native-inputs
20004 (list r-knitr))
20005 (home-page "https://cran.r-project.org/web/packages/enrichR/")
20006 (synopsis "R Interface to Enrichr database for analyzing gene sets")
20007 (description
20008 "This package provides an R interface to all Enrichr databases, a
20009 web-based tool for analyzing gene sets and returns any enrichment of common
20010 annotated biological functions.")
20011 (license license:gpl2+)))
20012
20013 (define-public r-plot3d
20014 (package
20015 (name "r-plot3d")
20016 (version "1.4")
20017 (source
20018 (origin
20019 (method url-fetch)
20020 (uri (cran-uri "plot3D" version))
20021 (sha256
20022 (base32
20023 "1h59zlsyzbjylaziwavppl9bjmnba4iiq34772y3dys6fqclajnh"))))
20024 (properties `((upstream-name . "plot3D")))
20025 (build-system r-build-system)
20026 (propagated-inputs (list r-misc3d))
20027 (home-page "https://cran.r-project.org/web/packages/plot3D")
20028 (synopsis "Plot multi-dimensional data")
20029 (description
20030 "This package provides functions for viewing 2D and 3D data, including
20031 perspective plots, slice plots, surface plots, scatter plots, etc. It
20032 includes data sets from oceanography.")
20033 (license license:gpl3+)))
20034
20035 (define-public r-ggfortify
20036 (package
20037 (name "r-ggfortify")
20038 (version "0.4.14")
20039 (source
20040 (origin
20041 (method url-fetch)
20042 (uri (cran-uri "ggfortify" version))
20043 (sha256
20044 (base32
20045 "038m74azpy43869ax1yi6wxbl1kr59iaxl8raiikjg749vcx6njw"))))
20046 (build-system r-build-system)
20047 (propagated-inputs
20048 (list r-dplyr
20049 r-ggplot2
20050 r-gridextra
20051 r-scales
20052 r-stringr
20053 r-tibble
20054 r-tidyr))
20055 (native-inputs
20056 (list r-knitr))
20057 (home-page "https://github.com/sinhrks/ggfortify")
20058 (synopsis "Data visualization tools for statistical analysis results")
20059 (description
20060 "This package provides unified plotting tools for statistics commonly
20061 used, such as GLM, time series, PCA families, clustering and survival
20062 analysis. The package offers a single plotting interface for these analysis
20063 results and plots in a unified style using the @code{ggplot2} package.")
20064 (license license:gpl2)))
20065
20066 (define-public r-refmanager
20067 (package
20068 (name "r-refmanager")
20069 (version "1.3.0")
20070 (source
20071 (origin
20072 (method url-fetch)
20073 (uri (cran-uri "RefManageR" version))
20074 (sha256
20075 (base32
20076 "1spzdp5ni52dybcaxqnhwdphh27wjyrsfy4hsxsplpg9rqwfqfps"))))
20077 (properties `((upstream-name . "RefManageR")))
20078 (build-system r-build-system)
20079 (propagated-inputs
20080 (list r-httr
20081 r-jsonlite
20082 r-lubridate
20083 r-plyr
20084 r-stringr
20085 r-xml2))
20086 (native-inputs
20087 (list r-knitr))
20088 (home-page "https://github.com/ropensci/RefManageR/")
20089 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
20090 (description
20091 "This package provides tools for importing and working with bibliographic
20092 references. It greatly enhances the @code{bibentry} class by providing a
20093 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
20094 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
20095 by various formats for name lists (author by last names, translator by full
20096 names, etc.). Entries can be updated, combined, sorted, printed in a number
20097 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
20098 into R and converted to @code{BibEntry} objects.")
20099 ;; Any of these licenses may be picked.
20100 (license (list license:gpl2 license:gpl3 license:bsd-3))))
20101
20102 (define-public r-citr
20103 (package
20104 (name "r-citr")
20105 (version "0.3.2")
20106 (source
20107 (origin
20108 (method url-fetch)
20109 (uri (cran-uri "citr" version))
20110 (sha256
20111 (base32
20112 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
20113 (build-system r-build-system)
20114 (propagated-inputs
20115 (list r-assertthat
20116 r-curl
20117 r-httr
20118 r-miniui
20119 r-refmanager
20120 r-rstudioapi
20121 r-shiny
20122 r-shinyjs
20123 r-yaml))
20124 (home-page "https://github.com/crsh/citr")
20125 (synopsis "RStudio add-in to insert Markdown citations")
20126 (description
20127 "This package provides functions and an RStudio add-in that search a
20128 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
20129 the current document.")
20130 (license license:expat)))
20131
20132 (define-public r-xgboost
20133 (package
20134 (name "r-xgboost")
20135 (version "1.6.0.1")
20136 (source
20137 (origin
20138 (method url-fetch)
20139 (uri (cran-uri "xgboost" version))
20140 (sha256
20141 (base32
20142 "1gafjv6vcpny03lqw8s68xszalsylniavaqwsbzh46vyk4h9mscs"))))
20143 (build-system r-build-system)
20144 (propagated-inputs
20145 (list r-data-table r-jsonlite r-matrix))
20146 (native-inputs
20147 (list r-knitr))
20148 (home-page "https://github.com/dmlc/xgboost")
20149 (synopsis "Extreme gradient boosting")
20150 (description
20151 "This package provides an R interface to Extreme Gradient Boosting, which
20152 is an efficient implementation of the gradient boosting framework from Chen
20153 and Guestrin (2016). The package includes efficient linear model solver and
20154 tree learning algorithms. The package can automatically do parallel
20155 computation on a single machine. It supports various objective functions,
20156 including regression, classification and ranking. The package is made to be
20157 extensible, so that users are also allowed to define their own objectives
20158 easily.")
20159 (license license:asl2.0)))
20160
20161 (define-public r-umap
20162 (package
20163 (name "r-umap")
20164 (version "0.2.8.0")
20165 (source
20166 (origin
20167 (method url-fetch)
20168 (uri (cran-uri "umap" version))
20169 (sha256
20170 (base32
20171 "0aiarnzc8gl932gi8fxd9f9rshaiwh9vj570l135fkiaja3q2wap"))))
20172 (build-system r-build-system)
20173 (propagated-inputs
20174 (list r-matrix r-openssl r-rcpp r-reticulate r-rspectra))
20175 (native-inputs
20176 (list r-knitr))
20177 (home-page "https://github.com/tkonopka/umap")
20178 (synopsis "Uniform manifold approximation and projection")
20179 (description
20180 "Uniform manifold approximation and projection is a technique for
20181 dimension reduction. This package provides an interface to the UMAP algorithm
20182 in R, including a translation of the original algorithm into R.")
20183 (license license:expat)))
20184
20185 (define-public r-uwot
20186 (package
20187 (name "r-uwot")
20188 (version "0.1.11")
20189 (source
20190 (origin
20191 (method url-fetch)
20192 (uri (cran-uri "uwot" version))
20193 (sha256
20194 (base32
20195 "06ylzxmdh8jipbrzgqaiivd2lnqmbcva41cyvc0iyals6vqr1ksg"))))
20196 (build-system r-build-system)
20197 (propagated-inputs
20198 (list r-dqrng
20199 r-fnn
20200 r-irlba
20201 r-matrix
20202 r-rcpp
20203 r-rcppannoy
20204 r-rcppprogress
20205 r-rspectra))
20206 (home-page "https://github.com/jlmelville/uwot")
20207 (synopsis "Uniform manifold approximation and projection")
20208 (description
20209 "This package provides an implementation of the Uniform Manifold
20210 Approximation and Projection dimensionality reduction by McInnes et
20211 al. (2018). It also provides means to transform new data and to carry out
20212 supervised dimensionality reduction. An implementation of the related
20213 LargeVis method of Tang et al. (2016) is also provided.")
20214 (license license:gpl3)))
20215
20216 (define-public r-kableextra
20217 (package
20218 (name "r-kableextra")
20219 (version "1.3.4")
20220 (source
20221 (origin
20222 (method url-fetch)
20223 (uri (cran-uri "kableExtra" version))
20224 (sha256
20225 (base32
20226 "1c5vzy95cbz36jwyssr927qicrayifinv861rvnmg4nghb1gl7q9"))))
20227 (properties `((upstream-name . "kableExtra")))
20228 (build-system r-build-system)
20229 (propagated-inputs
20230 (list r-digest
20231 r-glue
20232 r-htmltools
20233 r-knitr
20234 r-magrittr
20235 r-rmarkdown
20236 r-rstudioapi
20237 r-rvest
20238 r-scales
20239 r-stringr
20240 r-svglite
20241 r-viridislite
20242 r-webshot
20243 r-xml2))
20244 (native-inputs
20245 (list r-knitr))
20246 (home-page "https://haozhu233.github.io/kableExtra/")
20247 (synopsis "Construct complex tables with pipe syntax")
20248 (description
20249 "Build complex HTML or LaTeX tables using @code{kable()} from
20250 @code{knitr} and the piping syntax from @code{magrittr}. The function
20251 @code{kable()} is a light weight table generator coming from @code{knitr}.
20252 This package simplifies the way to manipulate the HTML or LaTeX codes
20253 generated by @code{kable()} and allows users to construct complex tables and
20254 customize styles using a readable syntax.")
20255 (license license:expat)))
20256
20257 (define-public r-glasso
20258 (package
20259 (name "r-glasso")
20260 (version "1.11")
20261 (source
20262 (origin
20263 (method url-fetch)
20264 (uri (cran-uri "glasso" version))
20265 (sha256
20266 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
20267 (build-system r-build-system)
20268 (native-inputs (list gfortran))
20269 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
20270 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
20271 (description
20272 "This is a package for estimation of a sparse inverse covariance matrix
20273 using a lasso (L1) penalty. Facilities are provided for estimates along a
20274 path of values for the regularization parameter.")
20275 (license license:gpl2)))
20276
20277 (define-public r-rhpcblasctl
20278 (package
20279 (name "r-rhpcblasctl")
20280 (version "0.21-247.1")
20281 (source
20282 (origin
20283 (method url-fetch)
20284 (uri (cran-uri "RhpcBLASctl" version))
20285 (sha256
20286 (base32
20287 "0scpr6jq25xx7wmqyc380ann4h536ll0g7wblikk25yqvpamzrav"))))
20288 (properties `((upstream-name . "RhpcBLASctl")))
20289 (build-system r-build-system)
20290 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
20291 (synopsis "Control the number of threads on BLAS")
20292 (description
20293 "This package allows you to control the number of threads the BLAS
20294 library uses. It is also possible to control the number of threads in
20295 OpenMP.")
20296 (license license:agpl3+)))
20297
20298 (define-public r-lda
20299 (package
20300 (name "r-lda")
20301 (version "1.4.2")
20302 (source
20303 (origin
20304 (method url-fetch)
20305 (uri (cran-uri "lda" version))
20306 (sha256
20307 (base32
20308 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
20309 (build-system r-build-system)
20310 (home-page "https://cran.r-project.org/web/packages/lda/")
20311 (synopsis "Collapsed Gibbs sampling methods for topic models")
20312 (description
20313 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
20314 related models. This includes (but is not limited to) sLDA, corrLDA, and the
20315 mixed-membership stochastic blockmodel. Inference for all of these models is
20316 implemented via a fast collapsed Gibbs sampler written in C. Utility
20317 functions for reading/writing data typically used in topic models, as well as
20318 tools for examining posterior distributions are also included.")
20319 ;; Any version of the LGPL
20320 (license license:lgpl3+)))
20321
20322 (define-public r-rann-l1
20323 (package
20324 (name "r-rann-l1")
20325 (version "2.5.2")
20326 (source
20327 (origin
20328 (method url-fetch)
20329 (uri (cran-uri "RANN.L1" version))
20330 (sha256
20331 (base32
20332 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
20333 (properties `((upstream-name . "RANN.L1")))
20334 (build-system r-build-system)
20335 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
20336 (synopsis "Fast nearest neighbour search using L1 metric")
20337 (description
20338 "This package provides tools to find the k nearest neighbours for every
20339 point in a given dataset in O(N log N) time using Arya and Mount's ANN
20340 library. There is support for approximate as well as exact searches, fixed
20341 radius searches and @code{bd} as well as @code{kd} trees. The distance is
20342 computed using the L1 (Manhattan, taxicab) metric.")
20343 (license license:gpl3+)))
20344
20345 (define-public r-leiden
20346 (package
20347 (name "r-leiden")
20348 (version "0.4.2")
20349 (source
20350 (origin
20351 (method url-fetch)
20352 (uri (cran-uri "leiden" version))
20353 (sha256
20354 (base32
20355 "1gg24afwbz818041bhmswmdqgxv35zp5h1i1102p58aaiis8dkna"))))
20356 (properties `((upstream-name . "leiden")))
20357 (build-system r-build-system)
20358 (propagated-inputs
20359 (list r-igraph r-matrix r-reticulate))
20360 (native-inputs
20361 (list r-knitr))
20362 (home-page "https://github.com/TomKellyGenetics/leiden")
20363 (synopsis "R implementation of Leiden clustering algorithm")
20364 (description
20365 "This package implements the Python @code{leidenalg} module to be called
20366 in R. It enables clustering using the Leiden algorithm for partitioning a
20367 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
20368 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
20369 (license license:gpl3)))
20370
20371 (define-public r-patchwork
20372 (package
20373 (name "r-patchwork")
20374 (version "1.1.1")
20375 (source
20376 (origin
20377 (method url-fetch)
20378 (uri (cran-uri "patchwork" version))
20379 (sha256
20380 (base32
20381 "10glgkf58lcykcwda1hj6xdps02m3i247qynk6s2jmwljagps3fg"))))
20382 (build-system r-build-system)
20383 (propagated-inputs
20384 (list r-ggplot2 r-gtable))
20385 (native-inputs
20386 (list r-knitr))
20387 (home-page "https://github.com/thomasp85/patchwork")
20388 (synopsis "Compose ggplot2 plots")
20389 (description
20390 "The @code{ggplot2} package provides a strong API for sequentially
20391 building up a plot, but does not concern itself with composition of multiple
20392 plots. Patchwork is a package that expands the API to allow for arbitrarily
20393 complex composition of plots by providing mathematical operators for combining
20394 multiple plots.")
20395 (license license:expat)))
20396
20397 (define-public r-liger
20398 (package
20399 (name "r-liger")
20400 (version "0.4.2")
20401 (source
20402 (origin
20403 (method git-fetch)
20404 (uri (git-reference
20405 (url "https://github.com/MacoskoLab/liger")
20406 (commit (string-append "v" version))))
20407 (file-name (git-file-name name version))
20408 (sha256
20409 (base32
20410 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
20411 (modules '((guix build utils)))
20412 (snippet
20413 '(begin
20414 (delete-file "inst/java/ModularityOptimizer.jar")
20415 #t))))
20416 (build-system r-build-system)
20417 (arguments
20418 `(#:phases
20419 (modify-phases %standard-phases
20420 (add-after 'unpack 'build-java-part
20421 (lambda* (#:key inputs #:allow-other-keys)
20422 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
20423 (for-each (lambda (file) (invoke "javac" file))
20424 (find-files "." "\\.java$"))
20425 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
20426 (find-files "." "\\.class$"))
20427 #t)))))
20428 (propagated-inputs
20429 (list r-cowplot
20430 r-dosnow
20431 r-dplyr
20432 r-fnn
20433 r-foreach
20434 r-ggplot2
20435 r-ggrepel
20436 r-hmisc
20437 r-ica
20438 r-irlba
20439 r-matrix
20440 r-mclust
20441 r-patchwork
20442 r-plyr
20443 r-rann-l1
20444 r-rcpp
20445 r-rcpparmadillo
20446 r-riverplot
20447 r-rtsne
20448 r-snow))
20449 (native-inputs
20450 `(("jdk" ,icedtea "jdk")
20451 ;; See https://github.com/MacoskoLab/liger/issues/96
20452 ;; The optimizer is released under the Expat license.
20453 ("optimizer-src"
20454 ,(origin
20455 (method url-fetch)
20456 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
20457 (sha256
20458 (base32
20459 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
20460 ("unzip" ,unzip)
20461 ("r-knitr" ,r-knitr))) ; for vignettes
20462 (home-page "https://github.com/MacoskoLab/liger")
20463 (synopsis "Integrate and analyze multiple single-cell datasets")
20464 (description
20465 "LIGER is a package for integrating and analyzing multiple single-cell
20466 datasets, developed and maintained by the Macosko lab. It relies on
20467 integrative non-negative matrix factorization to identify shared and
20468 dataset-specific factors.")
20469 (license license:gpl3)))
20470
20471 (define-public r-harmony
20472 (package
20473 (name "r-harmony")
20474 (version "0.1")
20475 (source
20476 (origin
20477 (method git-fetch)
20478 (uri (git-reference
20479 (url "https://github.com/immunogenomics/harmony")
20480 (commit version)))
20481 (file-name (git-file-name name version))
20482 (sha256
20483 (base32
20484 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
20485 (modules '((guix build utils)))
20486 (snippet
20487 '(begin
20488 (for-each delete-file '("config.status" "configure"))
20489 #t))))
20490 (build-system r-build-system)
20491 (propagated-inputs
20492 (list r-cowplot
20493 r-dplyr
20494 r-ggplot2
20495 r-irlba
20496 r-matrix
20497 r-rcpp
20498 r-rcpparmadillo
20499 r-rcppprogress
20500 r-rlang
20501 r-tibble
20502 r-tidyr))
20503 (native-inputs
20504 (list autoconf))
20505 (home-page "https://github.com/immunogenomics/harmony")
20506 (synopsis "Integration of single cell sequencing data")
20507 (description
20508 "This package provides an implementation of the Harmony algorithm for
20509 single cell integration, described in Korsunsky et al
20510 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
20511 function and interfaces to external frameworks.")
20512 (license license:gpl3)))
20513
20514 (define-public r-covr
20515 (package
20516 (name "r-covr")
20517 (version "3.5.1")
20518 (source
20519 (origin
20520 (method url-fetch)
20521 (uri (cran-uri "covr" version))
20522 (sha256
20523 (base32 "0v5cv3cw2kpdr6wxmkbd3wclavr17zipypdcb10hhmpa4cvgqk55"))))
20524 (properties `((upstream-name . "covr")))
20525 (build-system r-build-system)
20526 (propagated-inputs
20527 (list r-crayon
20528 r-digest
20529 r-httr
20530 r-jsonlite
20531 r-rex
20532 r-withr
20533 r-yaml))
20534 (native-inputs
20535 (list r-knitr)) ; for vignettes
20536 (home-page "https://github.com/r-lib/covr")
20537 (synopsis "Test coverage for R packages")
20538 (description
20539 "Thisp package enables you to track and report code coverage for your
20540 package and (optionally) upload the results to a coverage service. Code
20541 coverage is a measure of the amount of code being exercised by a set of tests.
20542 It is an indirect measure of test quality and completeness. This package is
20543 compatible with any testing methodology or framework and tracks coverage of
20544 both R code and compiled C/C++/FORTRAN code.")
20545 (license license:gpl3)))
20546
20547 (define-public r-systemfonts
20548 (package
20549 (name "r-systemfonts")
20550 (version "1.0.4")
20551 (source
20552 (origin
20553 (method url-fetch)
20554 (uri (cran-uri "systemfonts" version))
20555 (sha256
20556 (base32
20557 "1h44bal845jp7ya8i7ff1kz1n3wklkb00jk6hb9lgwa2p5snqxpg"))))
20558 (properties `((upstream-name . "systemfonts")))
20559 (build-system r-build-system)
20560 (propagated-inputs
20561 (list r-cpp11))
20562 (inputs
20563 (list fontconfig freetype zlib))
20564 (native-inputs
20565 (list pkg-config r-knitr))
20566 (home-page "https://github.com/r-lib/systemfonts")
20567 (synopsis "System native font finding")
20568 (description
20569 "This package provides system native access to the font catalogue. As
20570 font handling varies between systems it is difficult to correctly locate
20571 installed fonts across different operating systems. The 'systemfonts' package
20572 provides bindings to the native libraries for finding font files that can then
20573 be used further by e.g. graphic devices.")
20574 (license license:expat)))
20575
20576 (define-public r-graphlayouts
20577 (package
20578 (name "r-graphlayouts")
20579 (version "0.8.0")
20580 (source
20581 (origin
20582 (method url-fetch)
20583 (uri (cran-uri "graphlayouts" version))
20584 (sha256
20585 (base32
20586 "1l7gkn0r1ijllv3w7cbwcbi0jggs7wlkq9b2lykprng4g1kjc96p"))))
20587 (properties `((upstream-name . "graphlayouts")))
20588 (build-system r-build-system)
20589 (propagated-inputs
20590 (list r-igraph r-rcpp r-rcpparmadillo))
20591 (home-page "https://github.com/schochastics/graphlayouts")
20592 (synopsis "Additional layout algorithms for network visualizations")
20593 (description
20594 "This package provides several layout algorithms to visualize networks
20595 which are not part of the igraph library. Most are based on the concept of
20596 stress majorization by Gansner et al. (2004)
20597 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
20598 emphasize hidden group structures in networks or focus on specific nodes.")
20599 (license license:expat)))
20600
20601 (define-public r-terra
20602 (package
20603 (name "r-terra")
20604 (version "1.5-21")
20605 (source
20606 (origin
20607 (method url-fetch)
20608 (uri (cran-uri "terra" version))
20609 (sha256
20610 (base32
20611 "0gzl0ka19jjw0dmaghjk2sgwi78kkz4w3rlfkym62rdarhlfj7h9"))))
20612 (properties `((upstream-name . "terra")))
20613 (build-system r-build-system)
20614 (inputs
20615 (list gdal
20616 geos
20617 proj
20618 sqlite ; needed for proj
20619 zlib))
20620 (propagated-inputs
20621 (list r-rcpp))
20622 (native-inputs
20623 (list pkg-config))
20624 (home-page "https://rspatial.org/terra")
20625 (synopsis "Spatial data analysis")
20626 (description
20627 "This package provides methods for spatial data analysis, especially
20628 raster data. The included methods allow for low-level data manipulation as
20629 well as high-level global, local, zonal, and focal computation. The predict
20630 and interpolate methods facilitate the use of regression type (interpolation,
20631 machine learning) models for spatial prediction. Processing of very large
20632 files is supported.")
20633 (license license:gpl3+)))
20634
20635 (define-public r-tidygraph
20636 (package
20637 (name "r-tidygraph")
20638 (version "1.2.1")
20639 (source
20640 (origin
20641 (method url-fetch)
20642 (uri (cran-uri "tidygraph" version))
20643 (sha256
20644 (base32
20645 "0dmdff3bkg53xn0c51xd6k2d9c7l250x1lhl5z3libf533dw5g9g"))))
20646 (properties `((upstream-name . "tidygraph")))
20647 (build-system r-build-system)
20648 (propagated-inputs
20649 (list r-cli
20650 r-cpp11
20651 r-dplyr
20652 r-igraph
20653 r-magrittr
20654 r-pillar
20655 r-r6
20656 r-rlang
20657 r-tibble
20658 r-tidyr))
20659 (home-page "https://github.com/thomasp85/tidygraph")
20660 (synopsis "Tidy API for graph manipulation")
20661 (description
20662 "This package provides a graph implementation that can be thought of as
20663 two tidy data frames describing node and edge data respectively. It provides
20664 an approach to manipulate these two virtual data frames using the API defined
20665 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
20666 common graph algorithms.")
20667 (license license:expat)))
20668
20669 (define-public r-soupx
20670 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
20671 (revision "1"))
20672 (package
20673 (name "r-soupx")
20674 (version (git-version "0.3.1" revision commit))
20675 (source
20676 (origin
20677 (method git-fetch)
20678 (uri (git-reference
20679 (url "https://github.com/constantAmateur/SoupX")
20680 (commit commit)))
20681 (file-name (git-file-name name version))
20682 (sha256
20683 (base32
20684 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
20685 (properties `((upstream-name . "SoupX")))
20686 (build-system r-build-system)
20687 (propagated-inputs
20688 (list r-ggplot2 r-matrix r-seurat))
20689 (home-page "https://github.com/constantAmateur/SoupX")
20690 (synopsis "Single cell mRNA Soup eXterminator")
20691 (description
20692 "This package provides a package for quantifying, profiling and
20693 removing cell free mRNA contamination (the \"soup\") from droplet based single
20694 cell RNA-seq experiments.")
20695 (license license:gpl2))))
20696
20697 (define-public r-assertr
20698 (package
20699 (name "r-assertr")
20700 (version "2.8")
20701 (source
20702 (origin
20703 (method url-fetch)
20704 (uri (cran-uri "assertr" version))
20705 (sha256
20706 (base32
20707 "00764vv86r3bn4r85in4w637harffyw605fgq0dj6mrbrwcfb650"))))
20708 (build-system r-build-system)
20709 (propagated-inputs
20710 (list r-dplyr r-mass r-rlang))
20711 (native-inputs
20712 (list r-knitr)) ; needed for vignette
20713 (home-page "https://github.com/ropensci/assertr")
20714 (synopsis "Assertive programming for R analysis pipelines")
20715 (description
20716 "This package provides functionality to assert conditions that have to be
20717 met so that errors in data used in analysis pipelines can fail quickly. It is
20718 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
20719 in pipelines.")
20720 (license license:expat)))
20721
20722 (define-public r-parameters
20723 (package
20724 (name "r-parameters")
20725 (version "0.18.0")
20726 (source
20727 (origin
20728 (method url-fetch)
20729 (uri (cran-uri "parameters" version))
20730 (sha256
20731 (base32
20732 "0r6bj29frhqyv75cviw0p8kns6h8z10n7g7khyk0hzq2fqjsjrwh"))))
20733 (properties `((upstream-name . "parameters")))
20734 (build-system r-build-system)
20735 (propagated-inputs
20736 (list r-bayestestr r-datawizard r-insight))
20737 (native-inputs
20738 (list r-knitr))
20739 (home-page "https://cran.r-project.org/web/packages/parameters")
20740 (synopsis "Processing of model parameters")
20741 (description
20742 "This package provides utilities for processing the parameters of various
20743 statistical models. Beyond computing p values, CIs, and other indices for a
20744 wide variety of models, this package implements features like standardization
20745 or bootstrapping of parameters and models, feature reduction (feature
20746 extraction and variable selection) as well as conversion between indices of
20747 effect size.")
20748 (license license:gpl3)))
20749
20750 (define-public r-rgdal
20751 (package
20752 (name "r-rgdal")
20753 (version "1.5-32")
20754 (source
20755 (origin
20756 (method url-fetch)
20757 (uri (cran-uri "rgdal" version))
20758 (sha256
20759 (base32 "1vbkyhw8nd7dw1r53qisphav31x6zvpbzilvnlvbjbj9hzhs90s5"))))
20760 (properties `((upstream-name . "rgdal")))
20761 (build-system r-build-system)
20762 (inputs
20763 (list gdal proj zlib))
20764 (propagated-inputs
20765 (list r-sp))
20766 (native-inputs
20767 (list pkg-config r-knitr))
20768 (home-page "http://rgdal.r-forge.r-project.org")
20769 (synopsis "Bindings for the Geospatial Data Abstraction Library")
20770 (description
20771 "This package provides bindings to the Geospatial Data Abstraction
20772 Library (GDAL) and access to projection/transformation operations from the
20773 PROJ.4 library.")
20774 (license license:gpl2+)))
20775
20776 (define-public r-insol
20777 (package
20778 (name "r-insol")
20779 (version "1.2.2")
20780 (source
20781 (origin
20782 (method url-fetch)
20783 (uri (cran-uri "insol" version))
20784 (sha256
20785 (base32
20786 "166kgxgzbh55y2qqya6c2si22x0v7asi70im054g6xxwc5187kh3"))))
20787 (properties `((upstream-name . "insol")))
20788 (build-system r-build-system)
20789 (propagated-inputs
20790 (list r-raster))
20791 (native-inputs
20792 (list gfortran))
20793 (home-page "https://meteoexploration.com/R/insol/index.html")
20794 (synopsis "Tools for calculating solar radiation")
20795 (description
20796 "This package provides functions to compute insolation on tilted
20797 surfaces, computes atmospheric transmittance and related parameters such as:
20798 Earth radius vector, declination, sunset and sunrise, daylength, equation of
20799 time, vector in the direction of the sun, vector normal to surface, and some
20800 atmospheric physics.")
20801 (license license:gpl2+)))
20802
20803 (define-public r-lifecycle
20804 (package
20805 (name "r-lifecycle")
20806 (version "1.0.1")
20807 (source
20808 (origin
20809 (method url-fetch)
20810 (uri (cran-uri "lifecycle" version))
20811 (sha256
20812 (base32
20813 "183v1z1h037pvsgrj6vakpwhnhsr29hsw8p16k59dgpi00f6x9qx"))))
20814 (properties `((upstream-name . "lifecycle")))
20815 (build-system r-build-system)
20816 (propagated-inputs
20817 (list r-glue r-rlang))
20818 (native-inputs
20819 (list r-knitr)) ; for vignettes
20820 (home-page "https://github.com/r-lib/lifecycle")
20821 (synopsis "Manage the life cycle of your package functions")
20822 (description
20823 "Manage the life cycle of your exported functions with shared
20824 conventions, documentation badges, and non-invasive deprecation warnings. The
20825 lifecycle package defines four development stages (experimental, maturing,
20826 stable, and questioning) and three deprecation stages (soft-deprecated,
20827 deprecated, and defunct). It makes it easy to insert badges corresponding to
20828 these stages in your documentation. Usage of deprecated functions are
20829 signalled with increasing levels of non-invasive verbosity.")
20830 (license license:gpl3)))
20831
20832 (define-public r-assertable
20833 (package
20834 (name "r-assertable")
20835 (version "0.2.8")
20836 (source
20837 (origin
20838 (method url-fetch)
20839 (uri (cran-uri "assertable" version))
20840 (sha256
20841 (base32
20842 "1cciil1nzxd8gbj49w99jiv077lbpb59vx7bmb4p218aj2h5hqq4"))))
20843 (build-system r-build-system)
20844 (propagated-inputs
20845 (list r-data-table))
20846 (native-inputs
20847 (list r-knitr))
20848 (home-page "https://cran.r-project.org/web/packages/assertable/")
20849 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
20850 (description "This package provides simple, flexible assertions on
20851 data.frame or data.table objects with verbose output for vetting. While other
20852 assertion packages apply towards more general use-cases, @code{assertable} is
20853 tailored towards tabular data. It includes functions to check variable names
20854 and values, whether the dataset contains all combinations of a given set of
20855 unique identifiers, and whether it is a certain length. In addition,
20856 @code{assertable} includes utility functions to check the existence of target
20857 files and to efficiently import multiple tabular data files into one
20858 data.table.")
20859 (license license:gpl3)))
20860
20861 (define-public r-quadprog
20862 (package
20863 (name "r-quadprog")
20864 (version "1.5-8")
20865 (source
20866 (origin
20867 (method url-fetch)
20868 (uri (cran-uri "quadprog" version))
20869 (sha256
20870 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
20871 (build-system r-build-system)
20872 (native-inputs
20873 (list gfortran))
20874 (home-page "https://cran.r-project.org/web/packages/quadprog")
20875 (synopsis "Functions to solve quadratic programming problems")
20876 (description
20877 "This package contains routines and documentation for solving quadratic
20878 programming problems.")
20879 (license license:gpl3+)))
20880
20881 (define-public r-desolve
20882 (package
20883 (name "r-desolve")
20884 (version "1.32")
20885 (source
20886 (origin
20887 (method url-fetch)
20888 (uri (cran-uri "deSolve" version))
20889 (sha256
20890 (base32 "1bfr4w760nr7mjhpmf32z39swr6isnn1665cld2d1pdgx8b0yrvl"))))
20891 (properties `((upstream-name . "deSolve")))
20892 (build-system r-build-system)
20893 (native-inputs
20894 (list gfortran))
20895 (home-page "https://desolve.r-forge.r-project.org/")
20896 (synopsis "Solvers for initial value problems of differential equations")
20897 (description "This package provides functions that solve initial value
20898 problems of a system of first-order @dfn{ordinary differential
20899 equations} (ODE), of @dfn{partial differential equations} (PDE), of
20900 @dfn{differential algebraic equations} (DAE), and of delay differential
20901 equations. The functions provide an interface to the FORTRAN functions
20902 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
20903 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
20904 C-implementation of solvers of the Runge-Kutta family with fixed or variable
20905 time steps. The package contains routines designed for solving ODEs resulting
20906 from 1-D, 2-D and 3-D partial differential equations that have been converted
20907 to ODEs by numerical differencing.")
20908 (license license:gpl2+)))
20909
20910 (define-public r-pmcmrplus
20911 (package
20912 (name "r-pmcmrplus")
20913 (version "1.9.4")
20914 (source
20915 (origin
20916 (method url-fetch)
20917 (uri (cran-uri "PMCMRplus" version))
20918 (sha256
20919 (base32 "16m1pdrzjq9vnx5v7zv56mz9r1205rkw92883cxaqbvdpds6dhqy"))))
20920 (properties `((upstream-name . "PMCMRplus")))
20921 (build-system r-build-system)
20922 (inputs (list gmp))
20923 (propagated-inputs
20924 (list r-bwstest
20925 r-gmp
20926 r-ksamples
20927 r-mass
20928 r-multcompview
20929 r-mvtnorm
20930 r-rmpfr
20931 r-suppdists))
20932 (native-inputs (list gfortran r-knitr))
20933 (home-page "https://cran.r-project.org/package=PMCMRplus")
20934 (synopsis "Calculate pairwise multiple comparisons of mean rank sums extended")
20935 (description
20936 "This package provides multiple pairwise tests.")
20937 (license license:gpl3+)))
20938
20939 (define-public r-pracma
20940 (package
20941 (name "r-pracma")
20942 (version "2.3.8")
20943 (source (origin
20944 (method url-fetch)
20945 (uri (cran-uri "pracma" version))
20946 (sha256
20947 (base32 "0r17siivm37k4gp253v9mlg5m7cwqp85h9kk2hbp2wkf81ad80i3"))))
20948 (build-system r-build-system)
20949 (home-page "https://cran.r-project.org/web/packages/pracma/")
20950 (synopsis "Practical numerical math functions")
20951 (description "This package provides functions for numerical analysis and
20952 linear algebra, numerical optimization, differential equations, plus some
20953 special functions. It uses Matlab function names where appropriate to simplify
20954 porting.")
20955 (license license:gpl3+)))
20956
20957 (define-public r-subplex
20958 (package
20959 (name "r-subplex")
20960 (version "1.8")
20961 (source
20962 (origin
20963 (method url-fetch)
20964 (uri (cran-uri "subplex" version))
20965 (sha256
20966 (base32
20967 "19g5bd39gmcn27xdsklkzxg99x1r5v5q8zcw1iwry31qj24ivhrv"))))
20968 (build-system r-build-system)
20969 (native-inputs
20970 (list gfortran))
20971 (home-page "https://cran.r-project.org/web/packages/subplex")
20972 (synopsis "Unconstrained optimization using the subplex algorithm")
20973 (description
20974 "This package implements the Subplex optimization algorithm.
20975 It solves unconstrained optimization problems using a simplex method on
20976 subspaces. The method is well suited for optimizing objective functions that
20977 are noisy or are discontinuous at the solution.")
20978 (license license:gpl3+)))
20979
20980 (define-public r-txtplot
20981 (package
20982 (name "r-txtplot")
20983 (version "1.0-4")
20984 (source
20985 (origin
20986 (method url-fetch)
20987 (uri (cran-uri "txtplot" version))
20988 (sha256
20989 (base32
20990 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
20991 (build-system r-build-system)
20992 (home-page "https://cran.r-project.org/web/packages/txtplot/")
20993 (synopsis "Text-based plotting")
20994 (description "This package provides functions to produce rudimentary ASCII
20995 graphics directly in the terminal window. This package provides a basic
20996 plotting function (and equivalents of curve, density, acf and barplot) as well
20997 as a boxplot function.")
20998 (license license:lgpl3+)))
20999
21000 (define-public r-bio3d
21001 (package
21002 (name "r-bio3d")
21003 (version "2.4-3")
21004 (source
21005 (origin
21006 (method url-fetch)
21007 (uri (cran-uri "bio3d" version))
21008 (sha256
21009 (base32
21010 "0x3apqxbk4lvvcnvvdsyjd9f6qh9f9qgml3ih69hl9ikj06iy0y6"))))
21011 (properties `((upstream-name . "bio3d")))
21012 (build-system r-build-system)
21013 (inputs (list zlib))
21014 (propagated-inputs (list r-rcpp))
21015 (native-inputs
21016 (list r-knitr))
21017 (home-page "http://thegrantlab.org/bio3d/")
21018 (synopsis "Biological structure analysis")
21019 (description
21020 "This package provides utilities to process, organize and explore protein
21021 structure, sequence and dynamics data. Features include the ability to read
21022 and write structure, sequence and dynamic trajectory data, perform sequence
21023 and structure database searches, data summaries, atom selection, alignment,
21024 superposition, rigid core identification, clustering, torsion analysis,
21025 distance matrix analysis, structure and sequence conservation analysis, normal
21026 mode analysis, principal component analysis of heterogeneous structure data,
21027 and correlation network analysis from normal mode and molecular dynamics data.
21028 In addition, various utility functions are provided to enable the statistical
21029 and graphical power of the R environment to work with biological sequence and
21030 structural data.")
21031 (license license:gpl2+)))
21032
21033 (define-public r-bios2cor
21034 (package
21035 (name "r-bios2cor")
21036 (version "2.2")
21037 (source
21038 (origin
21039 (method url-fetch)
21040 (uri (cran-uri "Bios2cor" version))
21041 (sha256
21042 (base32
21043 "1wkj9vr33m9jilidil9jpw5rzr3pf7gkimxdvch22ks4bgkx7l1w"))))
21044 (properties `((upstream-name . "Bios2cor")))
21045 (build-system r-build-system)
21046 (propagated-inputs
21047 (list r-bigmemory r-bio3d r-circular r-igraph))
21048 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
21049 (synopsis "From biological sequences and simulations to correlation analysis")
21050 (description
21051 "This package provides utilities for computation and analysis of
21052 correlation/covariation in multiple sequence alignments and in side chain
21053 motions during molecular dynamics simulations. Features include the
21054 computation of correlation/covariation scores using a variety of scoring
21055 functions between either sequence positions in alignments or side chain
21056 dihedral angles in molecular dynamics simulations and utilities to analyze the
21057 correlation/covariation matrix through a variety of tools including network
21058 representation and principal components analysis. In addition, several
21059 utility functions are based on the R graphical environment to provide friendly
21060 tools for help in data interpretation.")
21061 (license license:gpl2+)))
21062
21063 ;; This package includes minified JavaScript files. When upgrading please
21064 ;; check that there are no new minified JavaScript files.
21065 (define-public r-networkd3
21066 (package
21067 (name "r-networkd3")
21068 (version "0.4")
21069 (source
21070 (origin
21071 (method url-fetch)
21072 (uri (cran-uri "networkD3" version))
21073 (sha256
21074 (base32
21075 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
21076 (snippet
21077 '(begin
21078 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
21079 #t))))
21080 (properties `((upstream-name . "networkD3")))
21081 (build-system r-build-system)
21082 (arguments
21083 `(#:modules ((guix build utils)
21084 (guix build r-build-system)
21085 (srfi srfi-1)
21086 (ice-9 popen))
21087 #:phases
21088 (modify-phases %standard-phases
21089 (add-after 'unpack 'process-javascript
21090 (lambda* (#:key inputs #:allow-other-keys)
21091 (with-directory-excursion "inst/htmlwidgets/lib/"
21092 (call-with-values
21093 (lambda ()
21094 (unzip2
21095 `((,(assoc-ref inputs "d3.v4.js")
21096 "d3-4.5.0/d3.min.js"))))
21097 (lambda (sources targets)
21098 (for-each (lambda (source target)
21099 (format #t "Processing ~a --> ~a~%"
21100 source target)
21101 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
21102 (call-with-output-file target
21103 (lambda (port)
21104 (dump-port minified port)))))
21105 sources targets))))
21106 #t)))))
21107 (native-inputs
21108 `(("uglifyjs" ,node-uglify-js)
21109 ;; NOTE: Make sure that this version of d3 is still valid when
21110 ;; upgrading the package.
21111 ("d3.v4.js"
21112 ,(origin
21113 (method url-fetch)
21114 (uri "https://d3js.org/d3.v4.js")
21115 (sha256
21116 (base32
21117 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
21118 (propagated-inputs
21119 (list r-htmlwidgets r-igraph r-magrittr))
21120 (home-page "https://cran.r-project.org/package=networkD3")
21121 (synopsis "D3 JavaScript network graphs from R")
21122 (description
21123 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
21124 graphs from R.")
21125 (license license:gpl3+)))
21126
21127 (define-public r-aasea
21128 (package
21129 (name "r-aasea")
21130 (version "1.1.0")
21131 (source
21132 (origin
21133 (method url-fetch)
21134 (uri (cran-uri "aaSEA" version))
21135 (sha256
21136 (base32
21137 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
21138 (properties `((upstream-name . "aaSEA")))
21139 (build-system r-build-system)
21140 (propagated-inputs
21141 (list r-bios2cor
21142 r-dt
21143 r-hmisc
21144 r-magrittr
21145 r-networkd3
21146 r-plotly
21147 r-seqinr
21148 r-shiny
21149 r-shinydashboard))
21150 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
21151 (synopsis "Amino acid substitution effect analyzer")
21152 (description
21153 "Given a protein multiple sequence alignment, it is a daunting task to
21154 assess the effects of substitutions along sequence length. The aaSEA package
21155 is intended to help researchers to rapidly analyze property changes caused by
21156 single, multiple and correlated amino acid substitutions in proteins.")
21157 (license license:gpl3)))
21158
21159 (define-public r-abacus
21160 (package
21161 (name "r-abacus")
21162 (version "1.0.0")
21163 (source
21164 (origin
21165 (method url-fetch)
21166 (uri (cran-uri "ABACUS" version))
21167 (sha256
21168 (base32
21169 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
21170 (properties `((upstream-name . "ABACUS")))
21171 (build-system r-build-system)
21172 (propagated-inputs
21173 (list r-ggplot2 r-shiny))
21174 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
21175 (synopsis "Apps-based activities for communicating and understanding statistics")
21176 (description
21177 "This package provides a set of Shiny apps for effective communication
21178 and understanding in statistics. The current version includes properties of
21179 normal distribution, properties of sampling distribution, one-sample z and t
21180 tests, two samples independent (unpaired) t test and analysis of variance.")
21181 (license license:gpl3)))
21182
21183 (define-public r-abc-rap
21184 (package
21185 (name "r-abc-rap")
21186 (version "0.9.0")
21187 (source
21188 (origin
21189 (method url-fetch)
21190 (uri (cran-uri "ABC.RAP" version))
21191 (sha256
21192 (base32
21193 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
21194 (properties `((upstream-name . "ABC.RAP")))
21195 (build-system r-build-system)
21196 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
21197 (synopsis "Array-based CpG region analysis pipeline")
21198 (description
21199 "This package aims to identify candidate genes that are differentially
21200 methylated between cases and controls. It applies Student's t-test and delta
21201 beta analysis to identify candidate genes containing multiple CpG sites.")
21202 (license license:gpl3)))
21203
21204 (define-public r-abcadm
21205 (package
21206 (name "r-abcadm")
21207 (version "1.0")
21208 (source
21209 (origin
21210 (method url-fetch)
21211 (uri (cran-uri "abcADM" version))
21212 (sha256
21213 (base32
21214 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
21215 (properties `((upstream-name . "abcADM")))
21216 (build-system r-build-system)
21217 (propagated-inputs
21218 (list r-bh r-rcpp))
21219 (home-page "https://cran.r-project.org/web/packages/abcADM/")
21220 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
21221 (description
21222 "This package provides tools to estimate parameters of accumulated
21223 damage (load duration) models based on failure time data under a Bayesian
21224 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
21225 long-term reliability under stochastic load profiles.")
21226 (license license:gpl3)))
21227
21228 (define-public r-rglpk
21229 (package
21230 (name "r-rglpk")
21231 (version "0.6-4")
21232 (source
21233 (origin
21234 (method url-fetch)
21235 (uri (cran-uri "Rglpk" version))
21236 (sha256
21237 (base32
21238 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
21239 (properties `((upstream-name . "Rglpk")))
21240 (build-system r-build-system)
21241 (propagated-inputs
21242 (list r-slam))
21243 (inputs
21244 (list glpk))
21245 (home-page "https://r-forge.r-project.org/projects/rglp/")
21246 (synopsis "R interface to the GNU Linear Programming Kit")
21247 (description
21248 "This package provides an R interface to the GNU Linear Programming Kit,
21249 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
21250 integer linear programming} (MILP) and other related problems.")
21251 ;; Either license
21252 (license (list license:gpl2 license:gpl3))))
21253
21254 (define-public r-abcdefba
21255 (package
21256 (name "r-abcdefba")
21257 (version "0.4")
21258 (source
21259 (origin
21260 (method url-fetch)
21261 (uri (cran-uri "abcdeFBA" version))
21262 (sha256
21263 (base32
21264 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
21265 (properties `((upstream-name . "abcdeFBA")))
21266 (build-system r-build-system)
21267 (propagated-inputs
21268 (list r-corrplot r-lattice r-rgl r-rglpk))
21269 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
21270 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
21271 (description
21272 "This package provides functions for Constraint Based Simulation using
21273 Flux Balance Analysis and informative analysis of the data generated during
21274 simulation.")
21275 (license license:gpl2)))
21276
21277 (define-public r-abcrlda
21278 (package
21279 (name "r-abcrlda")
21280 (version "1.0.3")
21281 (source
21282 (origin
21283 (method url-fetch)
21284 (uri (cran-uri "abcrlda" version))
21285 (sha256
21286 (base32
21287 "04pcdnk2szfpc2ylcw5ds7y895ivy03bycal03kxw7cwylzxasks"))))
21288 (properties `((upstream-name . "abcrlda")))
21289 (build-system r-build-system)
21290 (home-page "https://ieeexplore.ieee.org/document/8720003/")
21291 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
21292 (description
21293 "This package offers methods to perform @dfn{asymptotically
21294 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
21295 cost-sensitive binary classification. The bias-correction is an estimate of
21296 the bias term added to regularized discriminant analysis that minimizes the
21297 overall risk.")
21298 (license license:gpl3)))
21299
21300 (define-public r-abemus
21301 (package
21302 (name "r-abemus")
21303 (version "1.0.1")
21304 (source
21305 (origin
21306 (method url-fetch)
21307 (uri (cran-uri "abemus" version))
21308 (sha256
21309 (base32
21310 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
21311 (properties `((upstream-name . "abemus")))
21312 (build-system r-build-system)
21313 (propagated-inputs
21314 (list r-data-table))
21315 (home-page "https://cran.r-project.org/web/packages/abemus/")
21316 (synopsis "Adaptive base error model in ultra-deep sequencing data")
21317 (description
21318 "This package provides an implementation of @dfn{Adaptive Base Error
21319 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
21320 platform-specific genetic knowledge and empirical signal to readily detect and
21321 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
21322 cell free DNA} (cfDNA).")
21323 (license license:gpl3)))
21324
21325 ;; This package includes minified JavaScript files. When upgrading please
21326 ;; check that there are no new minified JavaScript files.
21327 (define-public r-rintrojs
21328 (package
21329 (name "r-rintrojs")
21330 (version "0.3.0")
21331 (source
21332 (origin
21333 (method url-fetch)
21334 (uri (cran-uri "rintrojs" version))
21335 (sha256
21336 (base32
21337 "00l5mk80gj3xkbf3m1kip566ic98bhd88lh0bg69ybkpk4gifpyw"))
21338 (snippet
21339 '(delete-file "inst/javascript/introjs/intro.min.js"))))
21340 (properties `((upstream-name . "rintrojs")))
21341 (build-system r-build-system)
21342 (arguments
21343 `(#:phases
21344 (modify-phases %standard-phases
21345 (add-after 'unpack 'process-javascript
21346 (lambda* (#:key inputs #:allow-other-keys)
21347 (with-directory-excursion "inst/javascript/introjs/"
21348 (let ((source (assoc-ref inputs "intro.js"))
21349 (target "intro.min.js"))
21350 (format #true "Processing ~a --> ~a~%"
21351 source target)
21352 (invoke "esbuild" source "--minify"
21353 (string-append "--outfile=" target)))))))))
21354 (native-inputs
21355 `(("esbuild" ,esbuild)
21356 ("intro.js"
21357 ,(origin
21358 (method url-fetch)
21359 (uri "https://cdn.jsdelivr.net/npm/intro.js@3.2.1/intro.js")
21360 (sha256
21361 (base32
21362 "0vh5n7hqqyx2pdvlqq6xadfqibcn78h5961rwhpf817kpxfzv8v7"))))))
21363 (propagated-inputs
21364 (list r-jsonlite r-shiny))
21365 (home-page "https://github.com/carlganz/rintrojs")
21366 (synopsis "Wrapper for the Intro.js library")
21367 (description
21368 "This package provides a wrapper for the @url{http://www.introjs.com,
21369 Intro.js} library. This package makes it easy to include step-by-step
21370 introductions, and clickable hints in a Shiny application. It supports both
21371 static introductions in the UI, and programmatic introductions from the
21372 server-side.")
21373 ;; The intro.js library is licensed under Expat.
21374 (license (list license:agpl3+ license:expat))))
21375
21376 (define-public r-sysfonts
21377 (package
21378 (name "r-sysfonts")
21379 (version "0.8.8")
21380 (source
21381 (origin
21382 (method url-fetch)
21383 (uri (cran-uri "sysfonts" version))
21384 (sha256
21385 (base32
21386 "1fq5dn4l09sgrbznfz9cakf4vgc3761zwicvqaazh0s8mzbaicpn"))))
21387 (properties `((upstream-name . "sysfonts")))
21388 (build-system r-build-system)
21389 (inputs
21390 (list freetype libpng zlib))
21391 (native-inputs
21392 (list pkg-config))
21393 (home-page "https://github.com/yixuan/sysfonts")
21394 (synopsis "Loading fonts into R")
21395 (description
21396 "This is a package to simplify loading of system fonts and Google Fonts
21397 into R, in order to support other packages.")
21398 (license license:gpl2)))
21399
21400 (define-public r-showtextdb
21401 (package
21402 (name "r-showtextdb")
21403 (version "3.0")
21404 (source
21405 (origin
21406 (method url-fetch)
21407 (uri (cran-uri "showtextdb" version))
21408 (sha256
21409 (base32
21410 "0hlnc3fhgrdkd46n7hb6id0gg1v0bf8s4679nrr7rchyp455szq2"))))
21411 (properties `((upstream-name . "showtextdb")))
21412 (build-system r-build-system)
21413 (propagated-inputs
21414 (list r-sysfonts))
21415 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
21416 (synopsis "Font files for the 'showtext' package")
21417 (description
21418 "This package provides font files that can be used by the @code{showtext}
21419 package.")
21420 (license license:asl2.0)))
21421
21422 (define-public r-showtext
21423 (package
21424 (name "r-showtext")
21425 (version "0.9-5")
21426 (source
21427 (origin
21428 (method url-fetch)
21429 (uri (cran-uri "showtext" version))
21430 (sha256
21431 (base32
21432 "1larnqxn9nanbqiadm35ah5hh89xrzm4fdj9pfc93zzzhlfrvhb3"))))
21433 (properties `((upstream-name . "showtext")))
21434 (build-system r-build-system)
21435 (inputs
21436 (list freetype libpng zlib))
21437 (propagated-inputs
21438 (list r-showtextdb r-sysfonts))
21439 (native-inputs
21440 (list pkg-config r-knitr))
21441 (home-page "https://github.com/yixuan/showtext")
21442 (synopsis "Using fonts more easily in R graphs")
21443 (description
21444 "This package aims to make it easy to use various types of
21445 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
21446 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
21447 will be converted into polygons or raster images, hence after the plot has
21448 been created, it no longer relies on the font files. No external software
21449 such as Ghostscript is needed to use this package.")
21450 (license license:asl2.0)))
21451
21452 (define-public r-emojifont
21453 (package
21454 (name "r-emojifont")
21455 (version "0.5.5")
21456 (source
21457 (origin
21458 (method url-fetch)
21459 (uri (cran-uri "emojifont" version))
21460 (sha256
21461 (base32
21462 "1hhrwilv36hd9gs1kcl2zsi6519md0h9aixjrm6lfclxvz8r6k1i"))))
21463 (properties `((upstream-name . "emojifont")))
21464 (build-system r-build-system)
21465 (propagated-inputs
21466 (list r-ggplot2 r-proto r-showtext r-sysfonts))
21467 (native-inputs
21468 (list r-knitr))
21469 (home-page "https://guangchuangyu.github.io/emojifont")
21470 (synopsis "Emoji and Font Awesome in R graphics")
21471 (description
21472 "This package enables the use of emoji and the Font Awesome glyphs in
21473 both base and ggplot2 graphics.")
21474 (license license:artistic2.0)))
21475
21476 (define-public r-abstractr
21477 (package
21478 (name "r-abstractr")
21479 (version "0.1.0")
21480 (source
21481 (origin
21482 (method url-fetch)
21483 (uri (cran-uri "abstractr" version))
21484 (sha256
21485 (base32
21486 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
21487 (properties `((upstream-name . "abstractr")))
21488 (build-system r-build-system)
21489 (propagated-inputs
21490 (list r-colourpicker
21491 r-emojifont
21492 r-ggplot2
21493 r-gridextra
21494 r-rintrojs
21495 r-shiny
21496 r-shinythemes))
21497 (home-page "https://matt-kumar.shinyapps.io/portfolio")
21498 (synopsis "R-Shiny application for creating visual abstracts")
21499 (description
21500 "This package provides an R Shiny application to create visual abstracts
21501 for original research. A variety of user defined options and formatting are
21502 included.")
21503 (license license:gpl3)))
21504
21505 (define-public r-qgam
21506 (package
21507 (name "r-qgam")
21508 (version "1.3.4")
21509 (source
21510 (origin
21511 (method url-fetch)
21512 (uri (cran-uri "qgam" version))
21513 (sha256
21514 (base32
21515 "1jyamamdffaks89rspyhmg18b4iik0nb1j0vgqzvfnm890514cvn"))))
21516 (properties `((upstream-name . "qgam")))
21517 (build-system r-build-system)
21518 (propagated-inputs
21519 (list r-doparallel r-mgcv r-plyr r-shiny))
21520 (native-inputs (list r-knitr))
21521 (home-page "https://cran.r-project.org/web/packages/qgam/")
21522 (synopsis "Smooth additive quantile regression models")
21523 (description
21524 "This package provides smooth additive quantile regression models, fitted
21525 using the methods of Fasiolo et al. (2017). Differently from @code{quantreg},
21526 the smoothing parameters are estimated automatically by marginal loss
21527 minimization, while the regression coefficients are estimated using either
21528 PIRLS or Newton algorithm. The learning rate is determined so that the
21529 Bayesian credible intervals of the estimated effects have approximately the
21530 correct coverage. The main function is @code{qgam()} which is similar to
21531 @code{gam()} in the @code{mgcv} package, but fits non-parametric quantile
21532 regression models.")
21533 (license license:gpl2+)))
21534
21535 (define-public r-abtest
21536 (package
21537 (name "r-abtest")
21538 (version "1.0.1")
21539 (source
21540 (origin
21541 (method url-fetch)
21542 (uri (cran-uri "abtest" version))
21543 (sha256
21544 (base32
21545 "0jz2ry5364p8h8xlk5a5sycn8xlpxd1iasfg99bcr4jqzd92jfqg"))))
21546 (properties `((upstream-name . "abtest")))
21547 (build-system r-build-system)
21548 (propagated-inputs
21549 (list r-matrix
21550 r-mvtnorm
21551 r-plotrix
21552 r-qgam
21553 r-rcolorbrewer
21554 r-rcpp
21555 r-sn
21556 r-truncnorm))
21557 (home-page "https://cran.r-project.org/web/packages/abtest/")
21558 (synopsis "Bayesian A/B testing")
21559 (description
21560 "This package provides functions for Bayesian A/B testing including prior
21561 elicitation options based on Kass and Vaidyanathan (1992)
21562 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
21563 (license license:gpl2+)))
21564
21565 (define-public r-reldist
21566 (package
21567 (name "r-reldist")
21568 (version "1.7-1")
21569 (source
21570 (origin
21571 (method url-fetch)
21572 (uri (cran-uri "reldist" version))
21573 (sha256
21574 (base32
21575 "17kbqqapqmckghv7jizibmicv3bzbycfr3mz4xg3yjp3c2bap4r6"))))
21576 (properties `((upstream-name . "reldist")))
21577 (build-system r-build-system)
21578 (propagated-inputs
21579 (list r-densestbayes r-mgcv))
21580 (home-page "http://www.stat.ucla.edu/~handcock/RelDist")
21581 (synopsis "Relative distribution methods")
21582 (description
21583 "This package provides tools for the comparison of distributions. This
21584 includes nonparametric estimation of the relative distribution PDF and CDF and
21585 numerical summaries as described in \"Relative Distribution Methods in the
21586 Social Sciences\" by Mark S. Handcock and Martina Morris, Springer-Verlag,
21587 1999, Springer-Verlag, ISBN 0387987789.")
21588 ;; See also https://cran.r-project.org/web/packages/reldist/LICENSE for
21589 ;; attribution requirements.
21590 (license license:gpl3)))
21591
21592 (define-public r-accept
21593 (package
21594 (name "r-accept")
21595 (version "0.9.0")
21596 (source
21597 (origin
21598 (method url-fetch)
21599 (uri (cran-uri "accept" version))
21600 (sha256
21601 (base32
21602 "13kx8fbnbpasjklgbq2rf4n73j2s8rvy5v77ywqhfzln24937qgh"))))
21603 (properties `((upstream-name . "accept")))
21604 (build-system r-build-system)
21605 (propagated-inputs
21606 (list r-dplyr r-reldist))
21607 (home-page "https://cran.r-project.org/web/packages/accept/")
21608 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
21609 (description
21610 "This package allows clinicians to predict the rate and severity of
21611 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
21612 Disease} (COPD) patients, based on the clinical prediction model published in
21613 Adibi et al. (2019) @url{doi:10.1101/651901}.")
21614 (license license:gpl3)))
21615
21616 (define-public r-smpracticals
21617 (package
21618 (name "r-smpracticals")
21619 (version "1.4-3")
21620 (source
21621 (origin
21622 (method url-fetch)
21623 (uri (cran-uri "SMPracticals" version))
21624 (sha256
21625 (base32
21626 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
21627 (properties `((upstream-name . "SMPracticals")))
21628 (build-system r-build-system)
21629 (propagated-inputs
21630 (list r-ellipse r-mass r-nlme r-survival))
21631 (home-page "http://statwww.epfl.ch/davison/SM/")
21632 (synopsis "Practicals for use with Davison (2003) Statistical Models")
21633 (description
21634 "This package contains the datasets and a few functions for use with the
21635 practicals outlined in Appendix A of the book Statistical Models (Davison,
21636 2003, Cambridge University Press). The practicals themselves can be found at
21637 @url{http://statwww.epfl.ch/davison/SM/}.")
21638 (license license:gpl2+)))
21639
21640 (define-public r-fgui
21641 (package
21642 (name "r-fgui")
21643 (version "1.0-8")
21644 (source
21645 (origin
21646 (method url-fetch)
21647 (uri (cran-uri "fgui" version))
21648 (sha256
21649 (base32
21650 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
21651 (properties `((upstream-name . "fgui")))
21652 (build-system r-build-system)
21653 (home-page
21654 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
21655 (synopsis "Create GUI for R functions")
21656 (description
21657 "Rapidly create a GUI for a function you created by automatically
21658 creating widgets for arguments of the function. This package automatically
21659 parses help routines for context-sensitive help to these arguments. The
21660 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
21661 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
21662 incorporated into the interface for greater customization for the more
21663 experienced.")
21664 ;; Any version of the GPL.
21665 (license (list license:gpl2+ license:gpl3+))))
21666
21667 (define-public r-tcltk2
21668 (package
21669 (name "r-tcltk2")
21670 (version "1.2-11")
21671 (source
21672 (origin
21673 (method url-fetch)
21674 (uri (cran-uri "tcltk2" version))
21675 (sha256
21676 (base32
21677 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
21678 (properties `((upstream-name . "tcltk2")))
21679 (build-system r-build-system)
21680 (inputs
21681 (list tcl tk))
21682 (home-page "https://www.sciviews.org/SciViews-R")
21683 (synopsis "Tcl/Tk additions")
21684 (description
21685 "This package provides a series of additional Tcl commands and Tk widgets
21686 with style and various functions to supplement the tcltk package")
21687 (license license:lgpl3)))
21688
21689 (define-public r-accrual
21690 (package
21691 (name "r-accrual")
21692 (version "1.3")
21693 (source
21694 (origin
21695 (method url-fetch)
21696 (uri (cran-uri "accrual" version))
21697 (sha256
21698 (base32
21699 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
21700 (properties `((upstream-name . "accrual")))
21701 (build-system r-build-system)
21702 (propagated-inputs
21703 (list r-fgui r-smpracticals r-tcltk2))
21704 (home-page "https://cran.r-project.org/web/packages/accrual/")
21705 (synopsis "Bayesian accrual prediction")
21706 (description
21707 "Subject recruitment for medical research is challenging. Slow patient
21708 accrual leads to delay in research. Accrual monitoring during the process of
21709 recruitment is critical. Researchers need reliable tools to manage the
21710 accrual rate. This package provides an implementation of a Bayesian method
21711 that integrates researcher's experience on previous trials and data from the
21712 current study, providing reliable prediction on accrual rate for clinical
21713 studies. It provides functions for Bayesian accrual prediction which can be
21714 easily used by statisticians and clinical researchers.")
21715 (license license:gpl2)))
21716
21717 (define-public r-accrued
21718 (package
21719 (name "r-accrued")
21720 (version "1.4.1")
21721 (source
21722 (origin
21723 (method url-fetch)
21724 (uri (cran-uri "accrued" version))
21725 (sha256
21726 (base32
21727 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
21728 (properties `((upstream-name . "accrued")))
21729 (build-system r-build-system)
21730 (home-page "https://cran.r-project.org/web/packages/accrued/")
21731 (synopsis "Data quality visualization tools for partially accruing data")
21732 (description
21733 "This is a package for visualizing data quality of partially accruing
21734 data.")
21735 (license license:gpl3)))
21736
21737 (define-public r-mda
21738 (package
21739 (name "r-mda")
21740 (version "0.5-3")
21741 (source
21742 (origin
21743 (method url-fetch)
21744 (uri (cran-uri "mda" version))
21745 (sha256
21746 (base32
21747 "0qw4scc2w7jmnxssj5w2mdxb9rrl4dscqn54gplzm1gk2yf419mx"))))
21748 (properties `((upstream-name . "mda")))
21749 (build-system r-build-system)
21750 (propagated-inputs (list r-class))
21751 (native-inputs (list gfortran))
21752 (home-page "https://cran.r-project.org/web/packages/mda/")
21753 (synopsis "Mixture and flexible discriminant analysis")
21754 (description
21755 "This is a package for mixture and flexible discriminant analysis,
21756 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
21757 (license license:gpl2)))
21758
21759 (define-public r-elasticnet
21760 (package
21761 (name "r-elasticnet")
21762 (version "1.3")
21763 (source
21764 (origin
21765 (method url-fetch)
21766 (uri (cran-uri "elasticnet" version))
21767 (sha256
21768 (base32
21769 "0nxcw06d0cp2mbqzg2fm9yys5xm6xx7bfcfvr0avcs8afkvz29j8"))))
21770 (properties `((upstream-name . "elasticnet")))
21771 (build-system r-build-system)
21772 (propagated-inputs
21773 (list r-lars))
21774 (home-page "http://users.stat.umn.edu/~zouxx019/")
21775 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
21776 (description
21777 "This package provides functions for fitting the entire solution path of
21778 the Elastic-Net and also provides functions for estimating sparse Principal
21779 Components. The Lasso solution paths can be computed by the same function.")
21780 (license license:gpl2+)))
21781
21782 (define-public r-sparselda
21783 (package
21784 (name "r-sparselda")
21785 (version "0.1-9")
21786 (source
21787 (origin
21788 (method url-fetch)
21789 (uri (cran-uri "sparseLDA" version))
21790 (sha256
21791 (base32
21792 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
21793 (properties `((upstream-name . "sparseLDA")))
21794 (build-system r-build-system)
21795 (propagated-inputs
21796 (list r-elasticnet r-mass r-mda))
21797 (home-page "https://www.imm.dtu.dk/~lkhc/")
21798 (synopsis "Sparse discriminant analysis")
21799 (description
21800 "This package performs sparse linear discriminant analysis for Gaussians
21801 and mixture of Gaussian models.")
21802 (license license:gpl2+)))
21803
21804 (define-public r-accsda
21805 (package
21806 (name "r-accsda")
21807 (version "1.1.1")
21808 (source
21809 (origin
21810 (method url-fetch)
21811 (uri (cran-uri "accSDA" version))
21812 (sha256
21813 (base32
21814 "104xdz63mnibh6827xm0pfr9zbhbi2a7iw4m1x27xjqi7zqvbky6"))))
21815 (properties `((upstream-name . "accSDA")))
21816 (build-system r-build-system)
21817 (propagated-inputs
21818 (list r-ggplot2
21819 r-ggthemes
21820 r-gridextra
21821 r-mass))
21822 (home-page "https://github.com/gumeo/accSDA/wiki")
21823 (synopsis "Accelerated sparse discriminant analysis")
21824 (description
21825 "This package provides an implementation of sparse linear discriminant
21826 analysis, which is a supervised classification method for multiple classes.
21827 Various novel optimization approaches to this problem are implemented
21828 including @dfn{alternating direction method of multipliers} (ADMM),
21829 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
21830 Functions for performing cross validation are also supplied along with basic
21831 prediction and plotting functions. @dfn{Sparse zero variance
21832 discriminant} (SZVD) analysis is also included in the package.")
21833 (license license:gpl2+)))
21834
21835 (define-public r-ace2fastq
21836 (package
21837 (name "r-ace2fastq")
21838 (version "0.6.0")
21839 (source
21840 (origin
21841 (method url-fetch)
21842 (uri (cran-uri "ace2fastq" version))
21843 (sha256
21844 (base32
21845 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
21846 (properties `((upstream-name . "ace2fastq")))
21847 (build-system r-build-system)
21848 (propagated-inputs
21849 (list r-stringr))
21850 (home-page "https://github.com/c5sire/ace2fastq")
21851 (synopsis "ACE file to FASTQ converter")
21852 (description
21853 "The ACE file format is used in genomics to store contigs from sequencing
21854 machines. This tools converts it into FASTQ format. Both formats contain the
21855 sequence characters and their corresponding quality information. Unlike the
21856 FASTQ file, the ACE file stores the quality values numerically. The
21857 conversion algorithm uses the standard Sanger formula. The package
21858 facilitates insertion into pipelines, and content inspection.")
21859 (license license:gpl3)))
21860
21861 (define-public r-rngwell
21862 (package
21863 (name "r-rngwell")
21864 (version "0.10-7")
21865 (source
21866 (origin
21867 (method url-fetch)
21868 (uri (cran-uri "rngWELL" version))
21869 (sha256
21870 (base32
21871 "0f1dxxaimfb0fww8ym9ciqf6q760ai46wxldl37m5mfpd57ca00c"))))
21872 (properties `((upstream-name . "rngWELL")))
21873 (build-system r-build-system)
21874 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
21875 (synopsis "Toolbox for WELL random number generators")
21876 (description
21877 "This is a dedicated package to WELL pseudo random generators, which were
21878 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
21879 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
21880 (license license:bsd-3)))
21881
21882 (define-public r-rnmf
21883 (package
21884 (name "r-rnmf")
21885 (version "0.5.0")
21886 (source (origin
21887 (method url-fetch)
21888 (uri (cran-uri "rNMF" version))
21889 (sha256
21890 (base32
21891 "1nz6h0j5ywdh48m0swmhp34hbkycd7n13rclrxaw85qi9wc42597"))))
21892 (build-system r-build-system)
21893 (propagated-inputs
21894 (list r-knitr r-nnls))
21895 (home-page "https://cran.r-project.org/web/packages/rNMF/")
21896 (synopsis "Robust nonnegative matrix factorization")
21897 (description
21898 "This package provides an implementation of robust nonnegative matrix
21899 factorization (rNMF). The rNMF algorithm decomposes a nonnegative high
21900 dimension data matrix into the product of two low rank nonnegative matrices,
21901 while detecting and trimming outliers. The main function is @code{rnmf()}.
21902 The package also includes a visualization tool, @code{see()}, that arranges
21903 and prints vectorized images.")
21904 (license license:gpl2+)))
21905
21906 (define-public r-randtoolbox
21907 (package
21908 (name "r-randtoolbox")
21909 (version "2.0.0")
21910 (source
21911 (origin
21912 (method url-fetch)
21913 (uri (cran-uri "randtoolbox" version))
21914 (sha256
21915 (base32
21916 "005x2igljc6vm0nsmkld9aqjqz1ccwapc8z3aw5c3ivh4n2bghf9"))))
21917 (properties `((upstream-name . "randtoolbox")))
21918 (build-system r-build-system)
21919 (propagated-inputs
21920 (list r-rngwell))
21921 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
21922 (synopsis "Toolbox for pseudo and quasi random number generation")
21923 (description
21924 "This package provides
21925
21926 @enumerate
21927 @item pseudo random generators, such as general linear
21928 congruential generators, multiple recursive generators and generalized
21929 feedback shift register (SF-Mersenne Twister algorithm and WELL
21930 generators)
21931
21932 @item quasi random generators, such as the Torus algorithm, the Sobol
21933 sequence, the Halton sequence (including the Van der Corput sequence), and
21934
21935 @item some generator tests: the gap test, the serial test, the poker test.
21936 @end enumerate
21937
21938 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
21939 (license license:bsd-3)))
21940
21941 (define-public r-lhs
21942 (package
21943 (name "r-lhs")
21944 (version "1.1.5")
21945 (source
21946 (origin
21947 (method url-fetch)
21948 (uri (cran-uri "lhs" version))
21949 (sha256
21950 (base32
21951 "0fb3bc3s5pbwg92qkjbg7v8ah36wm6qs05vf098hwjakr7f6yg3s"))))
21952 (properties `((upstream-name . "lhs")))
21953 (build-system r-build-system)
21954 (propagated-inputs (list r-rcpp))
21955 (native-inputs
21956 (list r-knitr))
21957 (home-page "https://github.com/bertcarnell/lhs")
21958 (synopsis "Latin Hypercube Samples")
21959 (description
21960 "This package provides a number of methods for creating and augmenting
21961 Latin Hypercube Samples.")
21962 (license license:gpl3)))
21963
21964 (define-public r-acebayes
21965 (package
21966 (name "r-acebayes")
21967 (version "1.10")
21968 (source
21969 (origin
21970 (method url-fetch)
21971 (uri (cran-uri "acebayes" version))
21972 (sha256
21973 (base32
21974 "11bffz430gdfdaxjx3simig66vhynmx6l1ylac4q2shcmj52nx73"))))
21975 (properties `((upstream-name . "acebayes")))
21976 (build-system r-build-system)
21977 (propagated-inputs
21978 (list r-compare r-lhs r-randtoolbox r-rcpp r-rcpparmadillo))
21979 (home-page "https://cran.r-project.org/web/packages/acebayes/")
21980 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
21981 (description
21982 "Finding an optimal Bayesian experimental design involves maximizing an
21983 objective function given by the expectation of some appropriately chosen
21984 utility function with respect to the joint distribution of unknown
21985 quantities (including responses). This objective function is usually not
21986 available in closed form and the design space can be continuous and of high
21987 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
21988 to maximise an approximation to the expectation of the utility function.")
21989 (license license:gpl2)))
21990
21991 (define-public r-acet
21992 (package
21993 (name "r-acet")
21994 (version "1.8.1")
21995 (source
21996 (origin
21997 (method url-fetch)
21998 (uri (cran-uri "ACEt" version))
21999 (sha256
22000 (base32
22001 "0b5lfpnppyk0237phr2aybhx29nhm8ngwk2qa1y4lshrvsw97wg4"))))
22002 (properties `((upstream-name . "ACEt")))
22003 (build-system r-build-system)
22004 (propagated-inputs
22005 (list r-bh r-mass r-rcpp r-rcpparmadillo))
22006 (home-page "https://cran.r-project.org/web/packages/ACEt/")
22007 (synopsis "Estimating dynamic heritability and twin model comparison")
22008 (description
22009 "This package supports twin models that are able to estimate the dynamic
22010 behaviour of the variance components in the classical twin models with respect
22011 to age using B-splines and P-splines.")
22012 (license license:gpl2+)))
22013
22014 (define-public r-acfmperiod
22015 (package
22016 (name "r-acfmperiod")
22017 (version "1.0.0")
22018 (source
22019 (origin
22020 (method url-fetch)
22021 (uri (cran-uri "acfMPeriod" version))
22022 (sha256
22023 (base32
22024 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
22025 (properties `((upstream-name . "acfMPeriod")))
22026 (build-system r-build-system)
22027 (propagated-inputs
22028 (list r-mass))
22029 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
22030 (synopsis "Estimation of the ACF from the M-periodogram")
22031 (description
22032 "This package support non-robust and robust computations of the sample
22033 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
22034 univariate and multivariate processes. The methodology consists in reversing
22035 the diagonalization procedure involving the periodogram or the
22036 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
22037 ACOVF or the ACF as discussed in Fuller (1995)
22038 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
22039 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
22040 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
22041 (license license:gpl2+)))
22042
22043 (define-public r-gamlss-data
22044 (package
22045 (name "r-gamlss-data")
22046 (version "6.0-2")
22047 (source
22048 (origin
22049 (method url-fetch)
22050 (uri (cran-uri "gamlss.data" version))
22051 (sha256
22052 (base32
22053 "07mpdl4h9rwmnpl9jmsn6ig8ji11an6pyjfsvg62h2alapwbdcyv"))))
22054 (properties `((upstream-name . "gamlss.data")))
22055 (build-system r-build-system)
22056 (home-page "http://www.gamlss.org/")
22057 (synopsis "GAMLSS data")
22058 (description
22059 "This package provides data used as examples to demonstrate GAMLSS
22060 models.")
22061 ;; Either version of the license
22062 (license (list license:gpl2 license:gpl3))))
22063
22064 (define-public r-gamlss
22065 (package
22066 (name "r-gamlss")
22067 (version "5.4-3")
22068 (source
22069 (origin
22070 (method url-fetch)
22071 (uri (cran-uri "gamlss" version))
22072 (sha256
22073 (base32
22074 "0xih19zqgpjl5qv5j38ana6x29y84shn2jfl2lk4kaw3q7yx86b6"))))
22075 (properties `((upstream-name . "gamlss")))
22076 (build-system r-build-system)
22077 (propagated-inputs
22078 (list r-gamlss-data r-gamlss-dist r-mass r-nlme r-survival))
22079 (home-page "http://www.gamlss.org/")
22080 (synopsis "Generalized additive models for location scale and shape")
22081 (description
22082 "This package provides functions for fitting the generalized additive
22083 models for location scale and shape introduced by Rigby and
22084 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
22085 use a distributional regression approach where all the parameters of the
22086 conditional distribution of the response variable are modelled using
22087 explanatory variables.")
22088 ;; Either version of the license
22089 (license (list license:gpl2 license:gpl3))))
22090
22091 (define-public r-acid
22092 (package
22093 (name "r-acid")
22094 (version "1.1")
22095 (source
22096 (origin
22097 (method url-fetch)
22098 (uri (cran-uri "acid" version))
22099 (sha256
22100 (base32
22101 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
22102 (properties `((upstream-name . "acid")))
22103 (build-system r-build-system)
22104 (propagated-inputs
22105 (list r-gamlss r-gamlss-dist r-hmisc))
22106 (home-page "https://cran.r-project.org/web/packages/acid/")
22107 (synopsis "Analysing conditional income distributions")
22108 (description
22109 "This package provides functions for the analysis of income distributions
22110 for subgroups of the population as defined by a set of variables like age,
22111 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
22112 distribution as well as functions for moments, inequality measures, entropy
22113 measures and polarisation measures of income distributions. This package thus
22114 aides the analysis of income inequality by offering tools for the exploratory
22115 analysis of income distributions at the disaggregated level.")
22116 (license license:gpl3)))
22117
22118 (define-public r-acm4r
22119 (package
22120 (name "r-acm4r")
22121 (version "1.0")
22122 (source
22123 (origin
22124 (method url-fetch)
22125 (uri (cran-uri "acm4r" version))
22126 (sha256
22127 (base32
22128 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
22129 (properties `((upstream-name . "acm4r")))
22130 (build-system r-build-system)
22131 (propagated-inputs (list r-mass))
22132 (home-page "https://cran.r-project.org/web/packages/acm4r/")
22133 (synopsis "Align-and-count method comparisons of RFLP data")
22134 (description
22135 "This is a package to compare sequence fragment lengths or molecular
22136 weights from pairs of lanes. The number of matching bands in the
22137 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
22138 the align-and-count method.")
22139 ;; Any version of the GPL
22140 (license (list license:gpl2+ license:gpl3+))))
22141
22142 (define-public r-filelock
22143 (package
22144 (name "r-filelock")
22145 (version "1.0.2")
22146 (source
22147 (origin
22148 (method url-fetch)
22149 (uri (cran-uri "filelock" version))
22150 (sha256
22151 (base32
22152 "00ql5fw1hidpfnm0szaavf43ahmsnvdbi8i5lr1nrcc90yaiaadc"))))
22153 (properties `((upstream-name . "filelock")))
22154 (build-system r-build-system)
22155 (home-page "https://github.com/r-lib/filelock")
22156 (synopsis "Portable file locking")
22157 (description
22158 "This library lets you place an exclusive or shared lock on a file using
22159 the appropriate system call provided by the underlying operating system.")
22160 (license license:expat)))
22161
22162 (define-public r-filematrix
22163 (package
22164 (name "r-filematrix")
22165 (version "1.3")
22166 (source
22167 (origin
22168 (method url-fetch)
22169 (uri (cran-uri "filematrix" version))
22170 (sha256
22171 (base32
22172 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
22173 (properties `((upstream-name . "filematrix")))
22174 (build-system r-build-system)
22175 ;; These inputs are needed for vignettes
22176 (native-inputs
22177 (list r-knitr r-rmarkdown))
22178 (home-page "https://github.com/andreyshabalin/filematrix")
22179 (synopsis "File-backed matrix class with convenient read and write access")
22180 (description
22181 "This package provides an interface for working with large matrices
22182 stored in files, not in computer memory. It supports multiple non-character
22183 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
22184 byte real values). Access to parts of the matrix is done by indexing, exactly
22185 as with usual R matrices. It supports very large matrices; the package has
22186 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
22187 columns, ad allows for quick addition of extra columns to a filematrix.")
22188 (license license:lgpl3)))
22189
22190 (define-public r-acmeeqtl
22191 (package
22192 (name "r-acmeeqtl")
22193 (version "1.6")
22194 (source
22195 (origin
22196 (method url-fetch)
22197 (uri (cran-uri "ACMEeqtl" version))
22198 (sha256
22199 (base32
22200 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
22201 (properties `((upstream-name . "ACMEeqtl")))
22202 (build-system r-build-system)
22203 (propagated-inputs
22204 (list r-filematrix))
22205 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
22206 (synopsis "Estimation of interpretable eQTL effect sizes")
22207 (description
22208 "This package provides a non-linear model, termed ACME, that reflects a
22209 parsimonious biological model for allelic contributions of cis-acting eQTLs.
22210 With non-linear least-squares algorithm the maximum likelihood parameters can
22211 be estimated. The ACME model provides interpretable effect size estimates and
22212 p-values with well controlled Type-I error.")
22213 (license license:lgpl3)))
22214
22215 (define-public r-acmer
22216 (package
22217 (name "r-acmer")
22218 (version "1.1.0")
22219 (source
22220 (origin
22221 (method url-fetch)
22222 (uri (cran-uri "acmeR" version))
22223 (sha256
22224 (base32
22225 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
22226 (properties `((upstream-name . "acmeR")))
22227 (build-system r-build-system)
22228 (propagated-inputs (list r-foreign))
22229 (home-page "https://cran.r-project.org/web/packages/acmeR/")
22230 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
22231 (description
22232 "This package provides an implementation of the ACME estimator, described
22233 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
22234 Mortality at Wind Turbines. Unlike most other models, this estimator supports
22235 decreasing-hazard Weibull model for persistence; decreasing search proficiency
22236 as carcasses age; variable bleed-through at successive searches; and interval
22237 mortality estimates. The package provides, based on search data, functions
22238 for estimating the mortality inflation factor in Frequentist and Bayesian
22239 settings.")
22240 (license license:expat)))
22241
22242 (define-public r-r-huge
22243 (package
22244 (name "r-r-huge")
22245 (version "0.9.0")
22246 (source
22247 (origin
22248 (method url-fetch)
22249 (uri (cran-uri "R.huge" version))
22250 (sha256
22251 (base32
22252 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
22253 (properties `((upstream-name . "R.huge")))
22254 (build-system r-build-system)
22255 (propagated-inputs
22256 (list r-r-methodss3 r-r-oo r-r-utils))
22257 (home-page "https://github.com/HenrikBengtsson/R.huge")
22258 (synopsis "Methods for accessing huge amounts of data")
22259 (description
22260 "This is a deprecated package for accessing huge amounts of data.
22261 Cross-platform alternatives are the following packages: bigmemory (CRAN),
22262 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
22263 the @code{aroma.affymetrix} package.")
22264 (license license:lgpl2.1+)))
22265
22266 (define-public r-r-filesets
22267 (package
22268 (name "r-r-filesets")
22269 (version "2.14.0")
22270 (source
22271 (origin
22272 (method url-fetch)
22273 (uri (cran-uri "R.filesets" version))
22274 (sha256
22275 (base32
22276 "08xv8b3c81nf54viyr3w912al18483k5gfnjpg7bxbdfk70dfzbh"))))
22277 (properties `((upstream-name . "R.filesets")))
22278 (build-system r-build-system)
22279 (arguments
22280 '(#:phases
22281 (modify-phases %standard-phases
22282 (add-after 'unpack 'set-HOME
22283 (lambda _ (setenv "HOME" "/tmp"))))))
22284 (propagated-inputs
22285 (list r-digest r-r-cache r-r-methodss3 r-r-oo r-r-utils))
22286 (home-page "https://github.com/HenrikBengtsson/R.filesets")
22287 (synopsis "Easy handling of and access to files")
22288 (description
22289 "This package provides classes and methods to locate, setup, subset,
22290 navigate and iterate file sets, i.e. sets of files located in one or more
22291 directories on the file system. The API is designed such that these classes
22292 can be extended via inheritance to provide a richer API for special file
22293 formats. Moreover, a specific name format is defined such that filenames and
22294 directories can be considered to have full names which consists of a name
22295 followed by comma-separated tags. This adds additional flexibility to
22296 identify file sets and individual files.")
22297 (license license:lgpl2.1+)))
22298
22299 (define-public r-r-devices
22300 (package
22301 (name "r-r-devices")
22302 (version "2.17.0")
22303 (source
22304 (origin
22305 (method url-fetch)
22306 (uri (cran-uri "R.devices" version))
22307 (sha256
22308 (base32
22309 "1djz6vm1b7sjvx1q319dl47gbnz9kvipaxcz9i0spyp094lv3m62"))))
22310 (properties `((upstream-name . "R.devices")))
22311 (build-system r-build-system)
22312 (propagated-inputs
22313 (list r-base64enc r-r-methodss3 r-r-oo r-r-utils))
22314 (home-page "https://github.com/HenrikBengtsson/R.devices")
22315 (synopsis "Unified handling of graphics devices")
22316 (description
22317 "This package provides functions for creating plots and image files in a
22318 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
22319 Default device options as well as scales and aspect ratios are controlled in a
22320 uniform way across all device types. Switching output format requires minimal
22321 changes in code. This package is ideal for large-scale batch processing,
22322 because it will never leave open graphics devices or incomplete image files
22323 behind, even on errors or user interrupts.")
22324 (license license:lgpl2.1+)))
22325
22326 (define-public r-acnr
22327 (package
22328 (name "r-acnr")
22329 (version "1.0.0")
22330 (source
22331 (origin
22332 (method url-fetch)
22333 (uri (cran-uri "acnr" version))
22334 (sha256
22335 (base32
22336 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
22337 (properties `((upstream-name . "acnr")))
22338 (build-system r-build-system)
22339 (home-page "https://github.com/mpierrejean/acnr")
22340 (synopsis "Annotated copy-number regions")
22341 (description
22342 "This package provides SNP array data from different types of copy-number
22343 regions. These regions were identified manually by the authors of the package
22344 and may be used to generate realistic data sets with known truth.")
22345 (license license:lgpl2.1+)))
22346
22347 (define-public r-acopula
22348 (package
22349 (name "r-acopula")
22350 (version "0.9.3")
22351 (source
22352 (origin
22353 (method url-fetch)
22354 (uri (cran-uri "acopula" version))
22355 (sha256
22356 (base32
22357 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
22358 (properties `((upstream-name . "acopula")))
22359 (build-system r-build-system)
22360 (home-page "https://cran.r-project.org/web/packages/acopula/")
22361 (synopsis "Modelling dependence with multivariate Archimax copulas")
22362 (description
22363 "Archimax copulas are a mixture of Archimedean and EV copulas. This
22364 package provides definitions of several parametric families of generator and
22365 dependence function, computes CDF and PDF, estimates parameters, tests for
22366 goodness of fit, generates random sample and checks copula properties for
22367 custom constructs. In the 2-dimensional case explicit formulas for density
22368 are used, contrary to higher dimensions when all derivatives are linearly
22369 approximated. Several non-archimax families (normal, FGM, Plackett) are
22370 provided as well.")
22371 (license license:gpl2)))
22372
22373 (define-public r-tuner
22374 (package
22375 (name "r-tuner")
22376 (version "1.4.0")
22377 (source
22378 (origin
22379 (method url-fetch)
22380 (uri (cran-uri "tuneR" version))
22381 (sha256
22382 (base32
22383 "1sd0drxzbdy71bh35fccg9ajhpdhdpy0m9nja2lw82p1pzhyl7jn"))))
22384 (properties `((upstream-name . "tuneR")))
22385 (build-system r-build-system)
22386 (propagated-inputs (list r-signal))
22387 (home-page "https://cran.r-project.org/web/packages/tuneR/")
22388 (synopsis "Analysis of music and speech")
22389 (description
22390 "This is a package for the analysis of music and speech. Analyze music
22391 and speech, extract features like MFCCs, handle wave files and their
22392 representation in various ways, read MP3, read MIDI, perform steps of a
22393 transcription, ...")
22394 ;; Either of these versions.
22395 (license (list license:gpl2 license:gpl3))))
22396
22397 (define-public r-seewave
22398 (package
22399 (name "r-seewave")
22400 (version "2.2.0")
22401 (source
22402 (origin
22403 (method url-fetch)
22404 (uri (cran-uri "seewave" version))
22405 (sha256
22406 (base32
22407 "0bi1l47l3846c18k6h2vrv0xp9xh00n544a578jrndahzrj1hfwl"))))
22408 (properties `((upstream-name . "seewave")))
22409 (build-system r-build-system)
22410 (inputs
22411 (list libsndfile))
22412 (propagated-inputs
22413 (list r-tuner))
22414 (home-page "http://rug.mnhn.fr/seewave")
22415 (synopsis "Sound analysis and synthesis")
22416 (description
22417 "This package provides functions for analysing, manipulating, displaying,
22418 editing and synthesizing time waves (particularly sound). This package
22419 processes time analysis (oscillograms and envelopes), spectral content,
22420 resonance quality factor, entropy, cross correlation and autocorrelation,
22421 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
22422 and 3D spectrograms and many other analyses.")
22423 (license license:gpl2+)))
22424
22425 (define-public r-acousticndlcoder
22426 (package
22427 (name "r-acousticndlcoder")
22428 (version "1.0.2")
22429 (source
22430 (origin
22431 (method url-fetch)
22432 (uri (cran-uri "AcousticNDLCodeR" version))
22433 (sha256
22434 (base32
22435 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
22436 (properties
22437 `((upstream-name . "AcousticNDLCodeR")))
22438 (build-system r-build-system)
22439 (propagated-inputs
22440 (list r-seewave r-tuner r-zoo))
22441 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
22442 (synopsis "Coding sound files for use with NDL")
22443 (description
22444 "Make acoustic cues to use with the R package @code{ndl}.
22445 The package implements functions used in the PLoS ONE paper \"Words from
22446 spontaneous conversational speech can be recognized with human-like accuracy
22447 by an error-driven learning algorithm that discriminates between meanings
22448 straight from smart acoustic features, bypassing the phoneme as recognition
22449 unit.\" @url{doi:10.1371/journal.pone.0174623}")
22450 (license license:gpl2+)))
22451
22452 (define-public r-acp
22453 (package
22454 (name "r-acp")
22455 (version "2.1")
22456 (source
22457 (origin
22458 (method url-fetch)
22459 (uri (cran-uri "acp" version))
22460 (sha256
22461 (base32
22462 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
22463 (properties `((upstream-name . "acp")))
22464 (build-system r-build-system)
22465 (propagated-inputs
22466 (list r-quantmod r-tseries))
22467 (home-page "https://cran.r-project.org/web/packages/acp/")
22468 (synopsis "Autoregressive conditional Poisson")
22469 (description
22470 "This package supports the analysis of count data exhibiting
22471 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
22472 model (ACP(p,q)) proposed by Heinen (2003).")
22473 (license license:gpl2)))
22474
22475 (define-public r-ada
22476 (package
22477 (name "r-ada")
22478 (version "2.0-5")
22479 (source
22480 (origin
22481 (method url-fetch)
22482 (uri (cran-uri "ada" version))
22483 (sha256
22484 (base32
22485 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
22486 (properties `((upstream-name . "ada")))
22487 (build-system r-build-system)
22488 (propagated-inputs (list r-rpart))
22489 (home-page "https://cran.r-project.org/web/packages/ada/")
22490 (synopsis "Stochastic boosting")
22491 (description
22492 "This package provides a straightforward, well-documented, and broad
22493 boosting routine for classification, ideally suited for small to
22494 moderate-sized data sets. It performs discrete, real, and gentle boost under
22495 both exponential and logistic loss on a given data set.")
22496 ;; Any version of the GPL.
22497 (license (list license:gpl2+ license:gpl3+))))
22498
22499 (define-public r-genalg
22500 (package
22501 (name "r-genalg")
22502 (version "0.2.1")
22503 (source
22504 (origin
22505 (method url-fetch)
22506 (uri (cran-uri "genalg" version))
22507 (sha256
22508 (base32
22509 "1y4qz1s85zpd1r3259gr542arssf2vpd4drhy0wnq5q47ignrvna"))))
22510 (properties `((upstream-name . "genalg")))
22511 (build-system r-build-system)
22512 (home-page "https://github.com/egonw/genalg")
22513 (synopsis "R based genetic algorithm")
22514 (description
22515 "This package provides an R based genetic algorithm for binary and
22516 floating point chromosomes.")
22517 (license license:gpl2)))
22518
22519 (define-public r-kernelfactory
22520 (package
22521 (name "r-kernelfactory")
22522 (version "0.3.0")
22523 (source
22524 (origin
22525 (method url-fetch)
22526 (uri (cran-uri "kernelFactory" version))
22527 (sha256
22528 (base32
22529 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
22530 (properties `((upstream-name . "kernelFactory")))
22531 (build-system r-build-system)
22532 (propagated-inputs
22533 (list r-auc r-genalg r-kernlab r-randomforest))
22534 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
22535 (synopsis "Ensemble of kernel machines")
22536 (description
22537 "Kernel factory is an ensemble method where each base classifier (random
22538 forest) is fit on the kernel matrix of a subset of the training data.")
22539 (license license:gpl2+)))
22540
22541 (define-public r-dummies
22542 (package
22543 (name "r-dummies")
22544 (version "1.5.6")
22545 (source
22546 (origin
22547 (method url-fetch)
22548 (uri (cran-uri "dummies" version))
22549 (sha256
22550 (base32
22551 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
22552 (properties `((upstream-name . "dummies")))
22553 (build-system r-build-system)
22554 (home-page "https://decisionpatterns.com")
22555 (synopsis "Create dummy/indicator variables flexibly and efficiently")
22556 (description
22557 "This package lets you expand factors, characters and other eligible
22558 classes into dummy/indicator variables.")
22559 (license license:gpl2+)))
22560
22561 (define-public r-acrm
22562 (package
22563 (name "r-acrm")
22564 (version "0.1.1")
22565 (source
22566 (origin
22567 (method url-fetch)
22568 (uri (cran-uri "aCRM" version))
22569 (sha256
22570 (base32
22571 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
22572 (properties `((upstream-name . "aCRM")))
22573 (build-system r-build-system)
22574 (propagated-inputs
22575 (list r-ada r-dummies r-kernelfactory r-randomforest))
22576 (home-page "https://cran.r-project.org/web/packages/aCRM/")
22577 (synopsis "Convenience functions for analytical customer relationship management")
22578 (description
22579 "This package provides convenience functions for data preparation and
22580 modeling often used in @dfn{analytical customer relationship
22581 management} (aCRM).")
22582 (license license:gpl2+)))
22583
22584 (define-public r-tree
22585 (package
22586 (name "r-tree")
22587 (version "1.0-41")
22588 (source (origin
22589 (method url-fetch)
22590 (uri (cran-uri "tree" version))
22591 (sha256
22592 (base32
22593 "13jwdxx3na16mly176n01zdkaqn4a8x9fc43rq5xx5vx31drkkr1"))))
22594 (build-system r-build-system)
22595 (home-page "https://cran.r-project.org/web/packages/tree/")
22596 (synopsis "Classification and regression trees")
22597 (description "This package provides procedures to work with classification
22598 and regression trees.")
22599 (license license:gpl2+)))
22600
22601 (define-public r-treeclust
22602 (package
22603 (name "r-treeclust")
22604 (version "1.1-7")
22605 (source
22606 (origin
22607 (method url-fetch)
22608 (uri (cran-uri "treeClust" version))
22609 (sha256
22610 (base32
22611 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
22612 (properties `((upstream-name . "treeClust")))
22613 (build-system r-build-system)
22614 (propagated-inputs
22615 (list r-cluster r-rpart))
22616 (home-page "https://cran.r-project.org/web/packages/treeClust/")
22617 (synopsis "Cluster distances through trees")
22618 (description
22619 "This package provides tools to create a measure of inter-point
22620 dissimilarity useful for clustering mixed data, and, optionally, perform the
22621 clustering.")
22622 (license license:gpl2+)))
22623
22624 (define-public r-acrosstic
22625 (package
22626 (name "r-acrosstic")
22627 (version "1.0-3")
22628 (source
22629 (origin
22630 (method url-fetch)
22631 (uri (cran-uri "AcrossTic" version))
22632 (sha256
22633 (base32
22634 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
22635 (properties `((upstream-name . "AcrossTic")))
22636 (build-system r-build-system)
22637 (propagated-inputs
22638 (list r-lpsolve r-treeclust))
22639 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
22640 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
22641 (description
22642 "This is a package for constructing minimum-cost regular spanning
22643 subgraph as part of a non-parametric two-sample test for equality of
22644 distribution.")
22645 (license license:gpl2+)))
22646
22647 (define-public r-acrt
22648 (package
22649 (name "r-acrt")
22650 (version "1.0.1")
22651 (source
22652 (origin
22653 (method url-fetch)
22654 (uri (cran-uri "acrt" version))
22655 (sha256
22656 (base32
22657 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
22658 (properties `((upstream-name . "acrt")))
22659 (build-system r-build-system)
22660 (propagated-inputs
22661 (list r-rcpp r-rcppeigen r-sandwich))
22662 (home-page "https://cran.r-project.org/web/packages/acrt/")
22663 (synopsis "Autocorrelation robust testing")
22664 (description
22665 "This package provides functions for testing affine hypotheses on the
22666 regression coefficient vector in regression models with autocorrelated
22667 errors.")
22668 (license license:gpl2)))
22669
22670 (define-public r-acs
22671 (package
22672 (name "r-acs")
22673 (version "2.1.4")
22674 (source
22675 (origin
22676 (method url-fetch)
22677 (uri (cran-uri "acs" version))
22678 (sha256
22679 (base32
22680 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
22681 (properties `((upstream-name . "acs")))
22682 (build-system r-build-system)
22683 (propagated-inputs
22684 (list r-httr r-plyr r-rcpp r-stringr r-xml))
22685 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
22686 (synopsis "Work with data from the US Census")
22687 (description
22688 "This package provides a general toolkit for downloading, managing,
22689 analyzing, and presenting data from the
22690 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
22691 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
22692 American Community Survey (ACS). Confidence intervals provided with ACS data
22693 are converted to standard errors to be bundled with estimates in complex
22694 @code{acs} objects. The package provides new methods to conduct standard
22695 operations on @code{acs} objects and present/plot data in statistically
22696 appropriate ways.")
22697 (license license:gpl3)))
22698
22699 (define-public r-acss-data
22700 (package
22701 (name "r-acss-data")
22702 (version "1.0")
22703 (source
22704 (origin
22705 (method url-fetch)
22706 (uri (cran-uri "acss.data" version))
22707 (sha256
22708 (base32
22709 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
22710 (properties `((upstream-name . "acss.data")))
22711 (build-system r-build-system)
22712 (home-page "http://complexitycalculator.com/methodology.html")
22713 (synopsis "Data for algorithmic complexity of short strings")
22714 (description
22715 "This is a data only package providing the algorithmic complexity of
22716 short strings, computed using the coding theorem method. For a given set of
22717 symbols in a string, all possible or a large number of random samples of
22718 Turing machines with a given number of states (e.g., 5) and number of symbols
22719 corresponding to the number of symbols in the strings were simulated until
22720 they reached a halting state or failed to end. This package contains data on
22721 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
22722 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
22723 distribution of the halting states.")
22724 (license license:gpl2+)))
22725
22726 (define-public r-acss
22727 (package
22728 (name "r-acss")
22729 (version "0.2-5")
22730 (source
22731 (origin
22732 (method url-fetch)
22733 (uri (cran-uri "acss" version))
22734 (sha256
22735 (base32
22736 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
22737 (properties `((upstream-name . "acss")))
22738 (build-system r-build-system)
22739 (propagated-inputs
22740 (list r-acss-data r-zoo))
22741 (home-page "http://complexitycalculator.com/methodology.html")
22742 (synopsis "Algorithmic complexity for short strings")
22743 (description
22744 "The main purpose of this package is to provide the algorithmic
22745 complexity for short strings, an approximation of the Kolmogorov Complexity of
22746 a short string using the coding theorem method. While the database containing
22747 the complexity is provided in the data only package @code{acss.data}, this
22748 package provides functions accessing the data such as @code{prob_random}
22749 returning the posterior probability that a given string was produced by a
22750 random process. In addition, two traditional (but problematic) measures of
22751 complexity are also provided: entropy and change complexity.")
22752 (license license:gpl2+)))
22753
22754 (define-public r-acswr
22755 (package
22756 (name "r-acswr")
22757 (version "1.0")
22758 (source
22759 (origin
22760 (method url-fetch)
22761 (uri (cran-uri "ACSWR" version))
22762 (sha256
22763 (base32
22764 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
22765 (properties `((upstream-name . "ACSWR")))
22766 (build-system r-build-system)
22767 (propagated-inputs
22768 (list r-mass))
22769 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
22770 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
22771 (description
22772 "This is a companion package for the book \"A Course in Statistics with
22773 R\" (ISBN 978-1-119-15272-9.)")
22774 (license license:gpl2)))
22775
22776 (define-public r-alabama
22777 (package
22778 (name "r-alabama")
22779 (version "2022.4-1")
22780 (source
22781 (origin
22782 (method url-fetch)
22783 (uri (cran-uri "alabama" version))
22784 (sha256
22785 (base32
22786 "0v6kl6ndm8wvp9xzya3x4gj5kh03qgx13x5vyzn410wsndcjiim8"))))
22787 (properties `((upstream-name . "alabama")))
22788 (build-system r-build-system)
22789 (propagated-inputs (list r-numderiv))
22790 (home-page "https://cran.r-project.org/web/packages/alabama/")
22791 (synopsis "Constrained nonlinear optimization")
22792 (description
22793 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
22794 Algorithm; it is used for optimizing smooth nonlinear objective functions with
22795 constraints. Linear or nonlinear equality and inequality constraints are
22796 allowed.")
22797 (license license:gpl2+)))
22798
22799 (define-public r-gdina
22800 (package
22801 (name "r-gdina")
22802 (version "2.8.8")
22803 (source
22804 (origin
22805 (method url-fetch)
22806 (uri (cran-uri "GDINA" version))
22807 (sha256
22808 (base32
22809 "1slq1npsq8s8aghnrpm6vvc6kxj4svz0kr2x0akblndrcr25wxjr"))))
22810 (properties `((upstream-name . "GDINA")))
22811 (build-system r-build-system)
22812 (propagated-inputs
22813 (list r-alabama
22814 r-ggplot2
22815 r-mass
22816 r-numderiv
22817 r-rcpp
22818 r-rcpparmadillo
22819 r-rsolnp
22820 r-shiny
22821 r-shinydashboard))
22822 (native-inputs
22823 (list r-knitr))
22824 (home-page "https://github.com/Wenchao-Ma/GDINA")
22825 (synopsis "Generalized DINA model framework")
22826 (description
22827 "This package provides a set of psychometric tools for cognitive
22828 diagnosis modeling based on the generalized deterministic inputs, noisy and
22829 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
22830 and its extensions, including the sequential G-DINA model by Ma and de la
22831 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
22832 polytomous G-DINA model by Chen and de la Torre
22833 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
22834 distribution can be independent, saturated, higher-order, loglinear smoothed
22835 or structured. Q-matrix validation, item and model fit statistics, model
22836 comparison at test and item level and differential item functioning can also
22837 be conducted. A graphical user interface is also provided.")
22838 (license license:gpl3)))
22839
22840 (define-public r-actcd
22841 (package
22842 (name "r-actcd")
22843 (version "1.2-0")
22844 (source
22845 (origin
22846 (method url-fetch)
22847 (uri (cran-uri "ACTCD" version))
22848 (sha256
22849 (base32
22850 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
22851 (properties `((upstream-name . "ACTCD")))
22852 (build-system r-build-system)
22853 (propagated-inputs
22854 (list r-gdina r-r-methodss3))
22855 (native-inputs
22856 (list gfortran))
22857 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
22858 (synopsis "Asymptotic classification theory for cognitive diagnosis")
22859 (description
22860 "This is a package supporting cluster analysis for cognitive diagnosis
22861 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
22862 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
22863 sum-scores, cluster analysis techniques can be used to classify examinees into
22864 latent classes based on their attribute patterns. In addition to the
22865 algorithms used to classify data, three labeling approaches are proposed to
22866 label clusters so that examinees' attribute profiles can be obtained.")
22867 (license license:gpl2+)))
22868
22869 (define-public r-ineq
22870 (package
22871 (name "r-ineq")
22872 (version "0.2-13")
22873 (source
22874 (origin
22875 (method url-fetch)
22876 (uri (cran-uri "ineq" version))
22877 (sha256
22878 (base32
22879 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
22880 (properties `((upstream-name . "ineq")))
22881 (build-system r-build-system)
22882 (home-page "https://cran.r-project.org/web/packages/ineq/")
22883 (synopsis "Measuring inequality, concentration, and poverty")
22884 (description
22885 "This package provides tools for measuring inequality, concentration, and
22886 poverty measures. It provides both empirical and theoretical Lorenz curves.")
22887 ;; Either of these two versions.
22888 (license (list license:gpl2 license:gpl3))))
22889
22890 (define-public r-actfrag
22891 (package
22892 (name "r-actfrag")
22893 (version "0.1.1")
22894 (source
22895 (origin
22896 (method url-fetch)
22897 (uri (cran-uri "ActFrag" version))
22898 (sha256
22899 (base32
22900 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
22901 (properties `((upstream-name . "ActFrag")))
22902 (build-system r-build-system)
22903 (propagated-inputs
22904 (list r-accelerometry r-dplyr r-ineq r-survival r-tidyr))
22905 (home-page "https://github.com/junruidi/ActFrag")
22906 (synopsis "Activity fragmentation metrics extraction")
22907 (description
22908 "This package provides functions to extract commonly used fragmentation
22909 metrics to quantify time accumulation strategies based on minute level
22910 actigraphy-measured activity counts data.")
22911 (license license:gpl3)))
22912
22913 (define-public r-ash
22914 (package
22915 (name "r-ash")
22916 (version "1.0-15")
22917 (source
22918 (origin
22919 (method url-fetch)
22920 (uri (cran-uri "ash" version))
22921 (sha256
22922 (base32
22923 "1ay2a2agdmiz7zzvn26mli0x0iwk09g5pp4yy1r23knhkp1pn2lb"))))
22924 (properties `((upstream-name . "ash")))
22925 (build-system r-build-system)
22926 (native-inputs (list gfortran))
22927 (home-page "https://cran.r-project.org/web/packages/ash/")
22928 (synopsis "David Scott's ASH routines")
22929 (description
22930 "This package provides David Scott's ASH routines ported from S-PLUS to
22931 R.")
22932 (license license:gpl2+)))
22933
22934 (define-public r-hdrcde
22935 (package
22936 (name "r-hdrcde")
22937 (version "3.4")
22938 (source
22939 (origin
22940 (method url-fetch)
22941 (uri (cran-uri "hdrcde" version))
22942 (sha256
22943 (base32
22944 "16qlk44cjvn2s0vzaf915df65ksdx20dbxhy7fpdqins46hccha3"))))
22945 (properties `((upstream-name . "hdrcde")))
22946 (build-system r-build-system)
22947 (propagated-inputs
22948 (list r-ash
22949 r-ggplot2
22950 r-kernsmooth
22951 r-ks
22952 r-locfit
22953 r-rcolorbrewer))
22954 (native-inputs (list gfortran))
22955 (home-page "http://pkg.robjhyndman.com/hdrcde")
22956 (synopsis "Highest density regions and conditional density estimation")
22957 (description
22958 "This is a package for the computation of highest density regions in one
22959 and two dimensions, kernel estimation of univariate density functions
22960 conditional on one covariate, and multimodal regression.")
22961 (license license:gpl3)))
22962
22963 (define-public r-rainbow
22964 (package
22965 (name "r-rainbow")
22966 (version "3.6")
22967 (source
22968 (origin
22969 (method url-fetch)
22970 (uri (cran-uri "rainbow" version))
22971 (sha256
22972 (base32
22973 "11vfcck17d2xjc049ci5i8l1nqv345anmd110gdz7654i1pj9lb3"))))
22974 (properties `((upstream-name . "rainbow")))
22975 (build-system r-build-system)
22976 (propagated-inputs
22977 (list r-cluster
22978 r-colorspace
22979 r-hdrcde
22980 r-ks
22981 r-mass
22982 r-pcapp))
22983 (home-page "https://cran.r-project.org/web/packages/rainbow/")
22984 (synopsis "Bagplots, boxplots and rainbow plots for functional data")
22985 (description
22986 "This is a package for visualizing functional data and identifying
22987 functional outliers with bagplots, boxplots and rainbow plots.")
22988 (license license:gpl3)))
22989
22990 (define-public r-fds
22991 (package
22992 (name "r-fds")
22993 (version "1.8")
22994 (source
22995 (origin
22996 (method url-fetch)
22997 (uri (cran-uri "fds" version))
22998 (sha256
22999 (base32
23000 "1284vncixrzrz9x6b52gslrbrbia07sd0xac7nwdqhp5f5v5wfi0"))))
23001 (properties `((upstream-name . "fds")))
23002 (build-system r-build-system)
23003 (propagated-inputs
23004 (list r-rainbow r-rcurl))
23005 (home-page "https://cran.r-project.org/web/packages/fds/")
23006 (synopsis "Functional data sets")
23007 (description "This package contains a list of functional time series,
23008 sliced functional time series, and functional data sets. Functional time
23009 series is a special type of functional data observed over time. Sliced
23010 functional time series is a special type of functional time series with a time
23011 variable observed over time.")
23012 (license license:gpl2+)))
23013
23014 (define-public r-fda
23015 (package
23016 (name "r-fda")
23017 (version "6.0.3")
23018 (source
23019 (origin
23020 (method url-fetch)
23021 (uri (cran-uri "fda" version))
23022 (sha256
23023 (base32
23024 "1lvp4i4hqz650k27sa5flbdlkalihc79xy9128hfhr16h6wi8n10"))))
23025 (properties `((upstream-name . "fda")))
23026 (build-system r-build-system)
23027 (propagated-inputs
23028 (list r-desolve r-fds))
23029 (native-inputs
23030 (list r-knitr))
23031 (home-page "https://www.functionaldata.org")
23032 (synopsis "Functional data analysis")
23033 (description
23034 "These functions were developed to support functional data analysis as
23035 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
23036 Analysis. The package includes data sets and script files working many
23037 examples.")
23038 (license license:gpl2+)))
23039
23040 (define-public r-actigraphy
23041 (package
23042 (name "r-actigraphy")
23043 (version "1.4.0")
23044 (source
23045 (origin
23046 (method url-fetch)
23047 (uri (cran-uri "Actigraphy" version))
23048 (sha256
23049 (base32
23050 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
23051 (properties `((upstream-name . "Actigraphy")))
23052 (build-system r-build-system)
23053 (propagated-inputs
23054 (list r-fda))
23055 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
23056 (synopsis "Actigraphy data analysis")
23057 (description
23058 "This package provides tools for functional linear modeling and analysis
23059 of actigraphy data.")
23060 (license license:asl2.0)))
23061
23062 (define-public r-activedriver
23063 (package
23064 (name "r-activedriver")
23065 (version "1.0.0")
23066 (source
23067 (origin
23068 (method url-fetch)
23069 (uri (cran-uri "ActiveDriver" version))
23070 (sha256
23071 (base32
23072 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
23073 (properties `((upstream-name . "ActiveDriver")))
23074 (build-system r-build-system)
23075 (propagated-inputs
23076 (list r-mass))
23077 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
23078 (synopsis "Tools for finding cancer driver proteins")
23079 (description
23080 "This package provides a mutation analysis tool that discovers cancer
23081 driver genes with frequent mutations in protein signalling sites such as
23082 post-translational modifications (phosphorylation, ubiquitination, etc). The
23083 Poisson generalized linear regression model identifies genes where cancer
23084 mutations in signalling sites are more frequent than expected from the
23085 sequence of the entire gene. Integration of mutations with signalling
23086 information helps find new driver genes and propose candidate mechanisms to
23087 known drivers.")
23088 (license license:gpl2+)))
23089
23090 (define-public r-activitycounts
23091 (package
23092 (name "r-activitycounts")
23093 (version "0.1.2")
23094 (source
23095 (origin
23096 (method url-fetch)
23097 (uri (cran-uri "activityCounts" version))
23098 (sha256
23099 (base32
23100 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
23101 (properties
23102 `((upstream-name . "activityCounts")))
23103 (build-system r-build-system)
23104 (propagated-inputs
23105 (list r-lubridate r-magrittr r-seewave r-signal r-tibble))
23106 (home-page "https://github.com/walkabillylab/activityCounts")
23107 (synopsis "Generate ActiLife counts")
23108 (description
23109 "ActiLife generates activity counts from data collected by Actigraph
23110 accelerometers. Actigraph is one of the most common research-grade
23111 accelerometers. There is considerable research validating and developing
23112 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
23113 counts are proprietary and difficult to implement if researchers use different
23114 accelerometer brands. The code creates ActiLife counts from raw acceleration
23115 data for different accelerometer brands.")
23116 (license license:gpl3)))
23117
23118 (define-public r-activityindex
23119 (package
23120 (name "r-activityindex")
23121 (version "0.3.7")
23122 (source
23123 (origin
23124 (method url-fetch)
23125 (uri (cran-uri "ActivityIndex" version))
23126 (sha256
23127 (base32
23128 "1zj2b6x31a1kxl80rarmkrlm7ack4154mrkbqs3fpi48zpmjbgd5"))))
23129 (properties `((upstream-name . "ActivityIndex")))
23130 (build-system r-build-system)
23131 (propagated-inputs
23132 (list r-data-table r-matrixstats r-r-utils))
23133 (native-inputs
23134 (list r-knitr))
23135 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
23136 (synopsis "Activity Index calculation using raw accelerometry data")
23137 (description
23138 "This is a package to read raw accelerometry from GT3X+ accelerometry
23139 data and plain table data to calculate the Activity Index from Bai et
23140 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
23141 (license license:gpl3)))
23142
23143 (define-public r-activpal
23144 (package
23145 (name "r-activpal")
23146 (version "0.1.3")
23147 (source
23148 (origin
23149 (method url-fetch)
23150 (uri (cran-uri "activPAL" version))
23151 (sha256
23152 (base32
23153 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
23154 (properties `((upstream-name . "activPAL")))
23155 (build-system r-build-system)
23156 (propagated-inputs
23157 (list r-devtools
23158 r-dplyr
23159 r-ggplot2
23160 r-lubridate
23161 r-magrittr
23162 r-tidyr))
23163 (home-page "https://cran.r-project.org/web/packages/activPAL")
23164 (synopsis "Processing and chart generation from activPAL events files")
23165 (description
23166 "This package contains functions to generate pre-defined summary
23167 statistics from activPAL events files. The package also contains functions to
23168 produce informative graphics that visualize physical activity behaviour and
23169 trends. This includes generating graphs that align physical activity
23170 behaviour with additional time based observations described by other data
23171 sets, such as sleep diaries and continuous glucose monitoring data.")
23172 (license license:gpl3)))
23173
23174 (define-public r-activpalprocessing
23175 (package
23176 (name "r-activpalprocessing")
23177 (version "1.0.2")
23178 (source
23179 (origin
23180 (method url-fetch)
23181 (uri (cran-uri "activpalProcessing" version))
23182 (sha256
23183 (base32
23184 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
23185 (properties
23186 `((upstream-name . "activpalProcessing")))
23187 (build-system r-build-system)
23188 (propagated-inputs
23189 (list r-chron))
23190 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
23191 (synopsis "Process activPAL events files")
23192 (description
23193 "This package performs estimation of physical activity and sedentary
23194 behavior variables from activPAL events files.")
23195 ;; Either version of the GPL.
23196 (license (list license:gpl2 license:gpl3))))
23197
23198 (define-public r-actogrammr
23199 (package
23200 (name "r-actogrammr")
23201 (version "0.2.3")
23202 (source
23203 (origin
23204 (method url-fetch)
23205 (uri (cran-uri "actogrammr" version))
23206 (sha256
23207 (base32
23208 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
23209 (properties `((upstream-name . "actogrammr")))
23210 (build-system r-build-system)
23211 (propagated-inputs
23212 (list r-dplyr r-ggplot2 r-lubridate r-readr r-tidyr))
23213 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
23214 (synopsis "Read in activity data and plot actograms")
23215 (description
23216 "Read in activity measurements from standard file formats used by
23217 circadian rhythm researchers, currently only ClockLab format, and process and
23218 plot the data. The central type of plot is the actogram, as first described
23219 in \"Activity and distribution of certain wild mice in relation to biotic
23220 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
23221 (license license:gpl3)))
23222
23223 (define-public r-expint
23224 (package
23225 (name "r-expint")
23226 (version "0.1-7")
23227 (source
23228 (origin
23229 (method url-fetch)
23230 (uri (cran-uri "expint" version))
23231 (sha256
23232 (base32
23233 "01d0a7pc4qx7044a0cymnv5ld88r90vdvlqjbnzg9qlfbizdgyvw"))))
23234 (properties `((upstream-name . "expint")))
23235 (build-system r-build-system)
23236 (home-page "https://gitlab.com/vigou3/expint")
23237 (synopsis "Exponential integral and incomplete Gamma function")
23238 (description
23239 "This package provides the exponential integrals @code{E_1(x)},
23240 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
23241 function @code{G(a, x)} defined for negative values of its first argument.
23242 The package also gives easy access to the underlying C routines through an
23243 API; see the package vignette for details.")
23244 (license license:gpl2+)))
23245
23246 (define-public r-actuar
23247 (package
23248 (name "r-actuar")
23249 (version "3.2-2")
23250 (source
23251 (origin
23252 (method url-fetch)
23253 (uri (cran-uri "actuar" version))
23254 (sha256
23255 (base32
23256 "0dhpaivyga0jwvw1csagbx74biy9jfkw4a8sa871579njxl1x7p1"))))
23257 (properties `((upstream-name . "actuar")))
23258 (build-system r-build-system)
23259 (propagated-inputs (list r-expint))
23260 (home-page "https://gitlab.com/vigou3/actuar")
23261 (synopsis "Actuarial functions and heavy tailed distributions")
23262 (description
23263 "This package provides functions and data sets for actuarial science:
23264 modeling of loss distributions; risk theory and ruin theory; simulation of
23265 compound models, discrete mixtures and compound hierarchical models;
23266 credibility theory. It boasts support for many additional probability
23267 distributions to model insurance loss amounts and loss frequency: 19
23268 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
23269 distribution; zero-truncated and zero-modified extensions of the standard
23270 discrete distributions. It also supports phase-type distributions commonly
23271 used to compute ruin probabilities.")
23272 (license license:gpl2+)))
23273
23274 (define-public r-bmp
23275 (package
23276 (name "r-bmp")
23277 (version "0.3")
23278 (source
23279 (origin
23280 (method url-fetch)
23281 (uri (cran-uri "bmp" version))
23282 (sha256
23283 (base32
23284 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
23285 (properties `((upstream-name . "bmp")))
23286 (build-system r-build-system)
23287 (home-page "https://cran.r-project.org/web/packages/bmp/")
23288 (synopsis "Read Bitmap (BMP) images")
23289 (description
23290 "This package provides pure R tools to read BMP format images. It is
23291 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
23292 (license license:gpl2+)))
23293
23294 (define-public r-readbitmap
23295 (package
23296 (name "r-readbitmap")
23297 (version "0.1.5")
23298 (source
23299 (origin
23300 (method url-fetch)
23301 (uri (cran-uri "readbitmap" version))
23302 (sha256
23303 (base32
23304 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
23305 (properties `((upstream-name . "readbitmap")))
23306 (build-system r-build-system)
23307 (inputs
23308 (list libjpeg-turbo libpng))
23309 (propagated-inputs
23310 (list r-bmp r-jpeg r-png r-tiff))
23311 (home-page "https://github.com/jefferis/readbitmap")
23312 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
23313 (description
23314 "This package provides tools to identify and read BMP, JPEG, PNG, and
23315 TIFF format bitmap images. Identification defaults to the use of the magic
23316 number embedded in the file rather than the file extension.")
23317 (license license:gpl2+)))
23318
23319 (define-public r-imager
23320 (package
23321 (name "r-imager")
23322 (version "0.42.13")
23323 (source
23324 (origin
23325 (method url-fetch)
23326 (uri (cran-uri "imager" version))
23327 (sha256
23328 (base32
23329 "0zygnmxwbbmj5i2l2affzdz90xvsa7b5pbkzkhjbm40is69rh2nr"))))
23330 (properties `((upstream-name . "imager")))
23331 (build-system r-build-system)
23332 (inputs
23333 (list fftw libtiff libx11 zlib))
23334 (propagated-inputs
23335 (list r-downloader
23336 r-igraph
23337 r-jpeg
23338 r-magrittr
23339 r-png
23340 r-purrr
23341 r-rcpp
23342 r-readbitmap
23343 r-stringr))
23344 (native-inputs
23345 (list pkg-config r-knitr))
23346 (home-page "https://dahtah.github.io/imager/")
23347 (synopsis "Image processing library")
23348 (description
23349 "This is a package for fast image processing for images in up to 4
23350 dimensions (two spatial dimensions, one time/depth dimension, one color
23351 dimension). It provides most traditional image processing tools (filtering,
23352 morphology, transformations, etc.) as well as various functions for easily
23353 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
23354 simple, modern C++ library for image processing.")
23355 (license license:lgpl3)))
23356
23357 (define-public r-acuityview
23358 (package
23359 (name "r-acuityview")
23360 (version "0.1")
23361 (source
23362 (origin
23363 (method url-fetch)
23364 (uri (cran-uri "AcuityView" version))
23365 (sha256
23366 (base32
23367 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
23368 (properties `((upstream-name . "AcuityView")))
23369 (build-system r-build-system)
23370 (propagated-inputs
23371 (list r-fftwtools r-imager r-plotrix))
23372 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
23373 (synopsis "Display scenes as seen by an animal with less acute vision")
23374 (description
23375 "This package provides a simple method for representing a visual scene as
23376 it may be seen by an animal with less acute vision.")
23377 (license license:gpl2+)))
23378
23379 (define-public r-caret
23380 (package
23381 (name "r-caret")
23382 (version "6.0-92")
23383 (source
23384 (origin
23385 (method url-fetch)
23386 (uri (cran-uri "caret" version))
23387 (sha256
23388 (base32
23389 "048mp325ndfl83a8p4dkd1b6zh5bws4gg9kxka5ss8qsj8m4m08x"))))
23390 (build-system r-build-system)
23391 (propagated-inputs
23392 (list r-e1071
23393 r-foreach
23394 r-ggplot2
23395 r-lattice
23396 r-modelmetrics
23397 r-nlme
23398 r-plyr
23399 r-proc
23400 r-recipes
23401 r-reshape2
23402 r-withr))
23403 (native-inputs
23404 (list r-knitr))
23405 (home-page "https://github.com/topepo/caret")
23406 (synopsis "Classification and regression training")
23407 (description
23408 "This package provides miscellaneous functions for training and plotting
23409 classification and regression models.")
23410 (license license:gpl2+)))
23411
23412 (define-public r-adabag
23413 (package
23414 (name "r-adabag")
23415 (version "4.2")
23416 (source
23417 (origin
23418 (method url-fetch)
23419 (uri (cran-uri "adabag" version))
23420 (sha256
23421 (base32
23422 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
23423 (properties `((upstream-name . "adabag")))
23424 (build-system r-build-system)
23425 (propagated-inputs
23426 (list r-caret r-doparallel r-foreach r-rpart))
23427 (home-page "https://cran.r-project.org/web/packages/adabag/")
23428 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
23429 (description
23430 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
23431 Breiman's Bagging algorithm using classification trees as individual
23432 classifiers. Once these classifiers have been trained, they can be used to
23433 predict on new data. Also, cross validation estimation of the error can be
23434 done.")
23435 (license license:gpl2+)))
23436
23437 (define-public r-adagio
23438 (package
23439 (name "r-adagio")
23440 (version "0.8.4")
23441 (source
23442 (origin
23443 (method url-fetch)
23444 (uri (cran-uri "adagio" version))
23445 (sha256
23446 (base32
23447 "0ihv05402iq003m0338f85pnqnlnrmx0pf1mg8cz9sgi5h98mbnl"))))
23448 (properties `((upstream-name . "adagio")))
23449 (build-system r-build-system)
23450 (propagated-inputs
23451 (list r-lpsolve))
23452 (home-page "https://cran.r-project.org/web/packages/adagio/")
23453 (synopsis "Discrete and global optimization routines")
23454 (description
23455 "This package provides methods and algorithms for discrete optimization,
23456 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
23457 Hooke-Jeeves minimization, and some (evolutionary) global optimization
23458 functions.")
23459 (license license:gpl3+)))
23460
23461 (define-public r-univoutl
23462 (package
23463 (name "r-univoutl")
23464 (version "0.3")
23465 (source
23466 (origin
23467 (method url-fetch)
23468 (uri (cran-uri "univOutl" version))
23469 (sha256
23470 (base32
23471 "1hhpxrpmp2wbrynx9xjndnp2sccirgky2x6ksd6yk6phmk0rbzjp"))))
23472 (properties `((upstream-name . "univOutl")))
23473 (build-system r-build-system)
23474 (propagated-inputs
23475 (list r-hmisc r-robustbase))
23476 (home-page "https://github.com/marcellodo/univOutl")
23477 (synopsis "Detection of univariate outliers")
23478 (description
23479 "This package provides well-known outlier detection techniques in the
23480 univariate case. Methods to deal with skewed distribution are included too.
23481 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
23482 historical data is implemented as well. When available, survey weights can be
23483 used in outliers detection.")
23484 (license license:gpl2+)))
23485
23486 (define-public r-tolerance
23487 (package
23488 (name "r-tolerance")
23489 (version "2.0.0")
23490 (source
23491 (origin
23492 (method url-fetch)
23493 (uri (cran-uri "tolerance" version))
23494 (sha256
23495 (base32
23496 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
23497 (properties `((upstream-name . "tolerance")))
23498 (build-system r-build-system)
23499 (propagated-inputs
23500 (list r-mass r-rgl))
23501 (home-page "https://cran.r-project.org/web/packages/tolerance/")
23502 (synopsis "Statistical tolerance intervals and regions")
23503 (description
23504 "This package provides functions for estimating tolerance
23505 limits (intervals) for various univariate distributions (binomial, Cauchy,
23506 discrete Pareto, exponential, two-parameter exponential, extreme value,
23507 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
23508 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
23509 Bayesian normal tolerance limits, multivariate normal tolerance regions,
23510 nonparametric tolerance intervals, tolerance bands for regression
23511 settings (linear regression, nonlinear regression, nonparametric regression,
23512 and multivariate regression), and analysis of variance tolerance intervals.
23513 Visualizations are also available for most of these settings.")
23514 (license license:gpl2+)))
23515
23516 ;; Keep this in sync with the liblantern package.
23517 (define-public r-torch
23518 (package
23519 (name "r-torch")
23520 (version "0.7.2")
23521 (source
23522 (origin
23523 (method url-fetch)
23524 (uri (cran-uri "torch" version))
23525 (sha256
23526 (base32 "163pvl3gyz7l2fmqhgg4k6pw4dmvfir71yp9l5ra2k4zc32lz166"))))
23527 (properties `((upstream-name . "torch")))
23528 (build-system r-build-system)
23529 (arguments
23530 (list
23531 #:phases
23532 #~(modify-phases %standard-phases
23533 (add-after 'install 'link-libraries
23534 (lambda* (#:key inputs #:allow-other-keys)
23535 (let ((deps (string-append #$output "/site-library/torch/deps")))
23536 (mkdir-p deps)
23537 (symlink
23538 (search-input-file
23539 inputs "/lib/python3.9/site-packages/torch/lib/libtorch.so")
23540 (string-append deps "/libtorch.so"))
23541 (symlink
23542 (search-input-file
23543 inputs "/lib/liblantern.so")
23544 (string-append deps "/liblantern.so"))))))))
23545 (inputs
23546 (list python-pytorch-for-r-torch
23547 liblantern))
23548 (propagated-inputs
23549 (list r-bit64
23550 r-callr
23551 r-cli
23552 r-coro
23553 r-ellipsis
23554 r-magrittr
23555 r-r6
23556 r-rcpp
23557 r-rlang
23558 r-withr))
23559 (native-inputs (list r-knitr))
23560 (home-page "https://torch.mlverse.org/docs")
23561 (synopsis "Tensors and neural networks with GPU acceleration")
23562 (description
23563 "This package provides functionality to define and train neural networks
23564 similar to PyTorch but written entirely in R using the libtorch library. It
23565 also supports low-level tensor operations and GPU acceleration.")
23566 (license license:expat)))
23567
23568 (define-public r-additivitytests
23569 (package
23570 (name "r-additivitytests")
23571 (version "1.1-4")
23572 (source
23573 (origin
23574 (method url-fetch)
23575 (uri (cran-uri "additivityTests" version))
23576 (sha256
23577 (base32
23578 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
23579 (properties
23580 `((upstream-name . "additivityTests")))
23581 (build-system r-build-system)
23582 (home-page "https://github.com/simecek/additivityTests")
23583 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
23584 (description
23585 "This package provides an implementation of the Tukey, Mandel,
23586 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
23587 (license license:gpl3)))
23588
23589 (define-public r-flexclust
23590 (package
23591 (name "r-flexclust")
23592 (version "1.4-1")
23593 (source
23594 (origin
23595 (method url-fetch)
23596 (uri (cran-uri "flexclust" version))
23597 (sha256
23598 (base32
23599 "13akk3w6a76jpws5v9108c3hdmb8i6gm0sc06lr2hqly0pgpfyfn"))))
23600 (properties `((upstream-name . "flexclust")))
23601 (build-system r-build-system)
23602 (propagated-inputs
23603 (list r-class r-lattice r-modeltools))
23604 (home-page "https://cran.r-project.org/web/packages/flexclust/")
23605 (synopsis "Flexible cluster algorithms")
23606 (description
23607 "The main function @code{kcca} implements a general framework for
23608 k-centroids cluster analysis supporting arbitrary distance measures and
23609 centroid computation. Further cluster methods include hard competitive
23610 learning, neural gas, and QT clustering. There are numerous visualization
23611 methods for cluster results (neighborhood graphs, convex cluster hulls,
23612 barcharts of centroids, ...), and bootstrap methods for the analysis of
23613 cluster stability.")
23614 (license license:gpl2)))
23615
23616 (define-public r-biclust
23617 (package
23618 (name "r-biclust")
23619 (version "2.0.3")
23620 (source
23621 (origin
23622 (method url-fetch)
23623 (uri (cran-uri "biclust" version))
23624 (sha256
23625 (base32
23626 "0lgyc2f04dhr65cwga78pradxsdzgjrpp8vphchqn60ab1z95dlp"))))
23627 (properties `((upstream-name . "biclust")))
23628 (build-system r-build-system)
23629 (propagated-inputs
23630 (list r-additivitytests
23631 r-colorspace
23632 r-flexclust
23633 r-ggplot2
23634 r-lattice
23635 r-mass
23636 r-tidyr))
23637 (home-page "https://cran.r-project.org/web/packages/biclust/")
23638 (synopsis "BiCluster algorithms")
23639 (description
23640 "The main function @code{biclust()} provides several algorithms to find
23641 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
23642 In addition, the package provides methods for data
23643 preprocessing (normalization and discretization), visualization, and
23644 validation of bicluster solutions.")
23645 (license license:gpl3)))
23646
23647 (define-public r-icge
23648 (package
23649 (name "r-icge")
23650 (version "0.4.1")
23651 (source
23652 (origin
23653 (method url-fetch)
23654 (uri (cran-uri "ICGE" version))
23655 (sha256
23656 (base32
23657 "0w6hbi3h98q6gsxqbb43p95v6xykgrasxcjivwm8hw9fly4avxyi"))))
23658 (properties `((upstream-name . "ICGE")))
23659 (build-system r-build-system)
23660 (propagated-inputs
23661 (list r-cluster r-fastcluster r-mass))
23662 (home-page "https://cran.r-project.org/web/packages/ICGE/")
23663 (synopsis "Cluster estimation and identification of atypical units")
23664 (description
23665 "ICGE is a package that helps to estimate the number of real clusters in
23666 data as well as to identify atypical units. The underlying methods are based
23667 on distances rather than on unit x variables.")
23668 (license license:gpl2+)))
23669
23670 (define-public r-depth
23671 (package
23672 (name "r-depth")
23673 (version "2.1-1.1")
23674 (source
23675 (origin
23676 (method url-fetch)
23677 (uri (cran-uri "depth" version))
23678 (sha256
23679 (base32
23680 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
23681 (properties `((upstream-name . "depth")))
23682 (build-system r-build-system)
23683 (propagated-inputs
23684 (list r-abind r-circular r-rgl))
23685 (native-inputs
23686 (list gfortran))
23687 (home-page "https://cran.r-project.org/web/packages/depth/")
23688 (synopsis "Nonparametric depth functions for multivariate analysis")
23689 (description
23690 "This package provides tools for depth functions methodology applied to
23691 multivariate analysis. Besides allowing calculation of depth values and
23692 depth-based location estimators, the package includes functions or drawing
23693 contour plots and perspective plots of depth functions. Euclidean and
23694 spherical depths are supported.")
23695 (license license:gpl2)))
23696
23697 (define-public r-archetypes
23698 (package
23699 (name "r-archetypes")
23700 (version "2.2-0.1")
23701 (source
23702 (origin
23703 (method url-fetch)
23704 (uri (cran-uri "archetypes" version))
23705 (sha256
23706 (base32
23707 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
23708 (properties `((upstream-name . "archetypes")))
23709 (build-system r-build-system)
23710 (propagated-inputs
23711 (list r-modeltools r-nnls))
23712 (home-page "https://cran.r-project.org/web/packages/archetypes")
23713 (synopsis "Archetypal analysis")
23714 (description
23715 "The main function @code{archetypes} implements a framework for
23716 archetypal analysis supporting arbitrary problem solving mechanisms for the
23717 different conceptual parts of the algorithm.")
23718 (license license:gpl2+)))
23719
23720 (define-public r-shapes
23721 (package
23722 (name "r-shapes")
23723 (version "1.2.6")
23724 (source
23725 (origin
23726 (method url-fetch)
23727 (uri (cran-uri "shapes" version))
23728 (sha256
23729 (base32
23730 "1p9fr95zk3q2v277c5ksb0nh26mcpzwjzjb2lmag51z6hck8cb66"))))
23731 (properties `((upstream-name . "shapes")))
23732 (build-system r-build-system)
23733 (propagated-inputs
23734 (list r-mass r-minpack-lm r-rgl r-scatterplot3d))
23735 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
23736 (synopsis "Statistical shape analysis")
23737 (description
23738 "This package provides routines for the statistical analysis of landmark
23739 shapes, including Procrustes analysis, graphical displays, principal
23740 components analysis, permutation and bootstrap tests, thin-plate spline
23741 transformation grids and comparing covariance matrices. See Dryden, I.L. and
23742 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
23743 Edition), John Wiley and Sons.")
23744 (license license:gpl2)))
23745
23746 (define-public r-anthropometry
23747 (package
23748 (name "r-anthropometry")
23749 (version "1.17")
23750 (source
23751 (origin
23752 (method url-fetch)
23753 (uri (cran-uri "Anthropometry" version))
23754 (sha256
23755 (base32
23756 "0vxjlzxv16bygw8n57f25msq5bd1dydg41my92ximah0nzzvbg41"))))
23757 (properties `((upstream-name . "Anthropometry")))
23758 (build-system r-build-system)
23759 (propagated-inputs
23760 (list r-archetypes
23761 r-biclust
23762 r-cluster
23763 r-depth
23764 r-fnn
23765 r-icge
23766 r-nnls
23767 r-rgl
23768 r-shapes))
23769 (native-inputs
23770 (list r-knitr))
23771 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
23772 (synopsis "Statistical methods for anthropometric data")
23773 (description
23774 "This package provides statistical methods especially developed to
23775 analyze anthropometric data. These methods are aimed at providing effective
23776 solutions to some commons problems related to Ergonomics and Anthropometry.
23777 They are based on clustering, the statistical concept of data depth,
23778 statistical shape analysis and archetypal analysis.")
23779 (license license:gpl2+)))
23780
23781 (define-public r-anndata
23782 (package
23783 (name "r-anndata")
23784 (version "0.7.5.3")
23785 (source
23786 (origin
23787 (method url-fetch)
23788 (uri (cran-uri "anndata" version))
23789 (sha256
23790 (base32 "115v7gdilayd18hd519vzkixp2s6rvvrd1inc1i6amn7d0spy8r1"))))
23791 (properties `((upstream-name . "anndata")))
23792 (build-system r-build-system)
23793 (propagated-inputs (list r-assertthat r-matrix r-r6 r-reticulate))
23794 (native-inputs (list r-knitr))
23795 (home-page "https://anndata.dynverse.org")
23796 (synopsis "Anndata for R")
23797 (description
23798 "This package provides a reticulate wrapper for the Python package
23799 @code{anndata}. It provides a scalable way of keeping track of data and
23800 learned annotations. It is used to read from and write to the h5ad file
23801 format.")
23802 (license license:expat)))
23803
23804 (define-public r-adamethods
23805 (package
23806 (name "r-adamethods")
23807 (version "1.2.1")
23808 (source
23809 (origin
23810 (method url-fetch)
23811 (uri (cran-uri "adamethods" version))
23812 (sha256
23813 (base32
23814 "150awbd3skb1mqca18bqjykhyycqw8crviw66s6qrcnmcsbk77pj"))))
23815 (properties `((upstream-name . "adamethods")))
23816 (build-system r-build-system)
23817 (propagated-inputs
23818 (list r-anthropometry
23819 r-archetypes
23820 r-fnn
23821 r-foreach
23822 r-nnls
23823 r-tolerance
23824 r-univoutl))
23825 (home-page "https://cran.r-project.org/web/packages/adamethods/")
23826 (synopsis "Archetypoid algorithms and anomaly detection")
23827 (description
23828 "This package is a collection of several algorithms to obtain
23829 archetypoids with small and large databases and with both classical
23830 multivariate data and functional data (univariate and multivariate). Some of
23831 these algorithms also detect anomalies (outliers).")
23832 (license license:gpl2+)))
23833
23834 (define-public r-idpmisc
23835 (package
23836 (name "r-idpmisc")
23837 (version "1.1.20")
23838 (source
23839 (origin
23840 (method url-fetch)
23841 (uri (cran-uri "IDPmisc" version))
23842 (sha256
23843 (base32
23844 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
23845 (properties `((upstream-name . "IDPmisc")))
23846 (build-system r-build-system)
23847 (propagated-inputs
23848 (list r-lattice))
23849 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
23850 (synopsis "Functions for data analyses and visualization")
23851 (description
23852 "This package provides different high-level graphics functions for
23853 displaying large datasets, displaying circular data in a very flexible way,
23854 finding local maxima, brewing color ramps, drawing nice arrows, zooming
23855 2D-plots, creating figures with differently colored margin and plot region.
23856 In addition, the package contains auxiliary functions for data manipulation
23857 like omitting observations with irregular values or selecting data by logical
23858 vectors, which include NAs. Other functions are especially useful in
23859 spectroscopy and analyses of environmental data: robust baseline fitting,
23860 finding peaks in spectra, converting humidity measures.")
23861 (license license:gpl3+)))
23862
23863 (define-public r-qqman
23864 (package
23865 (name "r-qqman")
23866 (version "0.1.8")
23867 (source
23868 (origin
23869 (method url-fetch)
23870 (uri (cran-uri "qqman" version))
23871 (sha256
23872 (base32
23873 "1a6qp5wv9bvwjchfw8x4jh48hkynlnfr21a8vqgnswldvwbq7njq"))))
23874 (properties `((upstream-name . "qqman")))
23875 (build-system r-build-system)
23876 (propagated-inputs
23877 (list r-calibrate))
23878 (native-inputs
23879 (list r-knitr))
23880 (home-page "https://cran.r-project.org/web/packages/qqman/")
23881 (synopsis "Q-Q and Manhattan plots for GWAS data")
23882 (description
23883 "This package allows you to create Q-Q and Manhattan plots for GWAS data
23884 from PLINK results.")
23885 (license license:gpl3)))
23886
23887 (define-public r-gghighlight
23888 (package
23889 (name "r-gghighlight")
23890 (version "0.3.2")
23891 (source
23892 (origin
23893 (method url-fetch)
23894 (uri (cran-uri "gghighlight" version))
23895 (sha256
23896 (base32 "0bxgn4srxz1qhawqa8ck57p8hg5ikwfa9ll03zmnn8fb19akwm2v"))))
23897 (properties `((upstream-name . "gghighlight")))
23898 (build-system r-build-system)
23899 (propagated-inputs
23900 (list r-dplyr r-ggplot2 r-ggrepel r-lifecycle r-purrr r-rlang r-tibble))
23901 (native-inputs (list r-knitr))
23902 (home-page "https://github.com/yutannihilation/gghighlight/")
23903 (synopsis "Highlight lines and points in ggplot2")
23904 (description "Suppose we have data that has so many series that it is hard
23905 to identify them by their colors as the differences are so subtle. With
23906 gghighlight we can highlight those lines that match certain criteria. The
23907 result is a usual @code{ggplot} object, so it is fully customizable and can be
23908 used with custom themes and facets.")
23909 (license license:expat)))
23910
23911 (define-public r-ggplot-multistats
23912 (package
23913 (name "r-ggplot-multistats")
23914 (version "1.0.0")
23915 (source
23916 (origin
23917 (method url-fetch)
23918 (uri (cran-uri "ggplot.multistats" version))
23919 (sha256
23920 (base32
23921 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
23922 (properties
23923 `((upstream-name . "ggplot.multistats")))
23924 (build-system r-build-system)
23925 (propagated-inputs
23926 (list r-ggplot2 r-hexbin r-rlang r-scales))
23927 (home-page "https://github.com/flying-sheep/ggplot.multistats")
23928 (synopsis "Multiple summary statistics for binned stats/geometries")
23929 (description
23930 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
23931 which functions similar to its singular form, but allows the use of multiple
23932 statistics per bin. Those statistics can be mapped to multiple bin
23933 aesthetics.")
23934 (license license:gpl3)))
23935
23936 (define-public r-knn-covertree
23937 (package
23938 (name "r-knn-covertree")
23939 (version "1.0")
23940 (source
23941 (origin
23942 (method url-fetch)
23943 (uri (cran-uri "knn.covertree" version))
23944 (sha256
23945 (base32
23946 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
23947 (properties `((upstream-name . "knn.covertree")))
23948 (build-system r-build-system)
23949 (propagated-inputs
23950 (list r-matrix r-rcpp r-rcppeigen))
23951 (home-page "https://github.com/flying-sheep/knn.covertree")
23952 (synopsis "Accurate kNN Implementation with multiple distance measures")
23953 (description
23954 "Similarly to the FNN package, this package allows calculation of the k
23955 nearest neighbors (kNN) of a data matrix. The implementation is based on
23956 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
23957 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
23958 (license license:agpl3+)))
23959
23960 (define-public r-poibin
23961 (package
23962 (name "r-poibin")
23963 (version "1.5")
23964 (source
23965 (origin
23966 (method url-fetch)
23967 (uri (cran-uri "poibin" version))
23968 (sha256
23969 (base32
23970 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
23971 (properties `((upstream-name . "poibin")))
23972 (build-system r-build-system)
23973 (home-page "https://cran.r-project.org/web/packages/poibin/")
23974 (synopsis "Poisson binomial distribution")
23975 (description
23976 "This package provides an implementation of both the exact and
23977 approximation methods for computing the @dfn{cumulative distribution
23978 function} (CDF) of the Poisson binomial distribution. It also provides the
23979 @dfn{probability mass function} (PMF), quantile function, and random number
23980 generation for the Poisson binomial distribution.")
23981 (license license:gpl2)))
23982
23983 (define-public r-diagram
23984 (package
23985 (name "r-diagram")
23986 (version "1.6.5")
23987 (source
23988 (origin
23989 (method url-fetch)
23990 (uri (cran-uri "diagram" version))
23991 (sha256
23992 (base32
23993 "1r3lyl0h7mk9cfg8smr3jydfkjdawaphnxibkxfjqa7029vkxh79"))))
23994 (properties `((upstream-name . "diagram")))
23995 (build-system r-build-system)
23996 (propagated-inputs
23997 (list r-shape))
23998 (home-page "https://cran.r-project.org/web/packages/diagram/")
23999 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
24000 (description
24001 "This package provides tools to visualize simple graphs (networks) based
24002 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
24003 electrical networks, etc. It also includes supporting material for the book
24004 \"A practical guide to ecological modelling - using R as a simulation
24005 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
24006 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
24007 Francesca Mazzia (2012).")
24008 (license license:gpl2+)))
24009
24010 (define-public r-lim
24011 (package
24012 (name "r-lim")
24013 (version "1.4.7")
24014 (source
24015 (origin
24016 (method url-fetch)
24017 (uri (cran-uri "LIM" version))
24018 (sha256
24019 (base32
24020 "0d9bgyd0mnag8wds993dsvlbpkhyakydlzwc3nghxzv2n8504hjj"))))
24021 (properties `((upstream-name . "LIM")))
24022 (build-system r-build-system)
24023 (propagated-inputs
24024 (list r-diagram r-limsolve))
24025 (home-page "https://cran.r-project.org/web/packages/LIM/")
24026 (synopsis "Linear inverse model examples and solution methods")
24027 (description
24028 "This package provides functions that read and solve linear inverse
24029 problems (food web problems, linear programming problems).")
24030 (license license:gpl2+)))
24031
24032 (define-public r-shinycssloaders
24033 (package
24034 (name "r-shinycssloaders")
24035 (version "1.0.0")
24036 (source
24037 (origin
24038 (method url-fetch)
24039 (uri (cran-uri "shinycssloaders" version))
24040 (sha256
24041 (base32
24042 "0r3xm273lhdhzbs2mkgw1m2kwb7z1dh1pzya8yxy5vacda1l2ikl"))))
24043 (properties
24044 `((upstream-name . "shinycssloaders")))
24045 (build-system r-build-system)
24046 (propagated-inputs
24047 (list r-digest r-glue r-shiny))
24048 (home-page "https://github.com/andrewsali/shinycssloaders")
24049 (synopsis "Add CSS loading animations to Shiny outputs")
24050 (description
24051 "This package provides tools to create a lightweight Shiny wrapper for
24052 the css-loaders created by Luke Hass
24053 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
24054 automatically show a loader when the output is (re)calculating.")
24055 (license license:gpl3)))
24056
24057 (define-public r-rsvg
24058 (package
24059 (name "r-rsvg")
24060 (version "2.3.1")
24061 (source
24062 (origin
24063 (method url-fetch)
24064 (uri (cran-uri "rsvg" version))
24065 (sha256
24066 (base32
24067 "096w4d1gvfc65d4jg7ykp23k9f7cf7f8zvzfhvhd7qkfsbjpxqkj"))))
24068 (properties `((upstream-name . "rsvg")))
24069 (build-system r-build-system)
24070 (inputs
24071 (list librsvg zlib))
24072 (native-inputs
24073 (list pkg-config r-knitr))
24074 (home-page "https://github.com/jeroen/rsvg#readme")
24075 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
24076 (description
24077 "This package allows you to render vector-based SVG images into
24078 high-quality custom-size bitmap arrays using the librsvg2 library. The
24079 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
24080 addition, the package can convert images directly to various formats such as
24081 PDF or PostScript.")
24082 (license license:expat)))
24083
24084 (define-public r-influencer
24085 (package
24086 (name "r-influencer")
24087 (version "0.1.0.1")
24088 (source
24089 (origin
24090 (method url-fetch)
24091 (uri (cran-uri "influenceR" version))
24092 (sha256
24093 (base32
24094 "0rj7rm236vn3v8302nwl12s0kvpv6xpdbm3q3gxk7vgwfl8nzi33"))))
24095 (properties `((upstream-name . "influenceR")))
24096 (build-system r-build-system)
24097 (propagated-inputs
24098 (list r-igraph r-matrix))
24099 (home-page "https://github.com/rcc-uchicago/influenceR")
24100 (synopsis "Tools to quantify structural importance of nodes in a network")
24101 (description
24102 "This package provides functionality to compute various node centrality
24103 measures on networks. Included are functions to compute betweenness
24104 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
24105 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
24106 algorithm to identify key players, and Valente's bridging metric. The
24107 betweenness, Key Players, and bridging implementations are parallelized with
24108 OpenMP.")
24109 (license license:gpl2)))
24110
24111 (define-public r-emplik
24112 (package
24113 (name "r-emplik")
24114 (version "1.1-1")
24115 (source
24116 (origin
24117 (method url-fetch)
24118 (uri (cran-uri "emplik" version))
24119 (sha256
24120 (base32
24121 "1kw8g8j075bsicdvgkjf4870rfv5c30gvmw6qkkaz3ki22x74w77"))))
24122 (properties `((upstream-name . "emplik")))
24123 (build-system r-build-system)
24124 (propagated-inputs
24125 (list r-quantreg))
24126 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
24127 (synopsis "Empirical likelihood ratio for censored/truncated data")
24128 (description
24129 "This package provides empirical likelihood ratio tests for
24130 means/quantiles/hazards from possibly censored and/or truncated data. It also
24131 does regression.")
24132 (license license:gpl2+)))
24133
24134 (define-public r-imputeyn
24135 (package
24136 (name "r-imputeyn")
24137 (version "1.3")
24138 (source
24139 (origin
24140 (method url-fetch)
24141 (uri (cran-uri "imputeYn" version))
24142 (sha256
24143 (base32
24144 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
24145 (properties `((upstream-name . "imputeYn")))
24146 (build-system r-build-system)
24147 (propagated-inputs
24148 (list r-boot r-emplik r-mvtnorm r-quadprog r-survival))
24149 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
24150 (synopsis "Impute last largest censored observation under weighted least squares")
24151 (description
24152 "This package allows for the imputation of the last largest censored
24153 observantions. This method brings less bias and more efficient estimates for
24154 AFT models.")
24155 (license license:gpl2)))
24156
24157 (define-public r-adapenetclass
24158 (package
24159 (name "r-adapenetclass")
24160 (version "1.2")
24161 (source
24162 (origin
24163 (method url-fetch)
24164 (uri (cran-uri "AdapEnetClass" version))
24165 (sha256
24166 (base32
24167 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
24168 (properties `((upstream-name . "AdapEnetClass")))
24169 (build-system r-build-system)
24170 (propagated-inputs
24171 (list r-glmnet r-imputeyn r-lars r-quadprog))
24172 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
24173 (synopsis "Class of adaptive elastic net methods for censored data")
24174 (description
24175 "This package provides methods for variable selection for AFT models.")
24176 (license license:gpl2)))
24177
24178 (define-public r-flock
24179 (package
24180 (name "r-flock")
24181 (version "0.7")
24182 (source
24183 (origin
24184 (method url-fetch)
24185 (uri (cran-uri "flock" version))
24186 (sha256
24187 (base32
24188 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
24189 (properties `((upstream-name . "flock")))
24190 (build-system r-build-system)
24191 (propagated-inputs (list r-rcpp))
24192 (home-page "https://cran.r-project.org/web/packages/flock/")
24193 (synopsis "Process synchronization using file locks")
24194 (description
24195 "This package implements synchronization between R processes (spawned by
24196 using the @code{parallel} package for instance) using file locks. It supports
24197 both exclusive and shared locking.")
24198 (license license:asl2.0)))
24199
24200 (define-public r-archivist
24201 (package
24202 (name "r-archivist")
24203 (version "2.3.6")
24204 (source
24205 (origin
24206 (method url-fetch)
24207 (uri (cran-uri "archivist" version))
24208 (sha256
24209 (base32
24210 "0q1qysack30xzxdbvvi56rk7r85hsj4ghls9r70ki7bl3rqwr4c9"))))
24211 (properties `((upstream-name . "archivist")))
24212 (build-system r-build-system)
24213 (propagated-inputs
24214 (list r-dbi
24215 r-digest
24216 r-flock
24217 r-httr
24218 r-lubridate
24219 r-magrittr
24220 r-rcurl
24221 r-rsqlite))
24222 (native-inputs
24223 (list r-knitr))
24224 (home-page "https://pbiecek.github.io/archivist/")
24225 (synopsis "Tools for storing, restoring and searching for R objects")
24226 (description
24227 "Data exploration and modelling is a process in which a lot of data
24228 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
24229 statistical models, different versions of data sets and different versions of
24230 results. Archivist helps to store and manage artifacts created in R. It
24231 allows you to store selected artifacts as binary files together with their
24232 metadata and relations. Archivist allows sharing artifacts with others. It
24233 can look for already created artifacts by using its class, name, date of the
24234 creation or other properties. It also makes it easy to restore such
24235 artifacts.")
24236 (license license:gpl2)))
24237
24238 (define-public r-versions
24239 (package
24240 (name "r-versions")
24241 (version "0.3")
24242 (source
24243 (origin
24244 (method url-fetch)
24245 (uri (cran-uri "versions" version))
24246 (sha256
24247 (base32
24248 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
24249 (properties `((upstream-name . "versions")))
24250 (build-system r-build-system)
24251 (home-page "https://cran.r-project.org/web/packages/versions/")
24252 (synopsis "Query and install specific versions of CRAN packages")
24253 (description
24254 "This package allows you to install specified versions of R packages
24255 hosted on CRAN and provides functions to list available versions and the
24256 versions of currently installed packages.")
24257 (license license:bsd-3)))
24258
24259 (define-public r-adapr
24260 (package
24261 (name "r-adapr")
24262 (version "2.0.0")
24263 (source
24264 (origin
24265 (method url-fetch)
24266 (uri (cran-uri "adapr" version))
24267 (sha256
24268 (base32
24269 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
24270 (properties `((upstream-name . "adapr")))
24271 (build-system r-build-system)
24272 (propagated-inputs
24273 (list r-archivist
24274 r-devtools
24275 r-digest
24276 r-doparallel
24277 r-gdata
24278 r-ggplot2
24279 r-git2r
24280 r-igraph
24281 r-knitr
24282 r-plotly
24283 r-plyr
24284 r-rmarkdown
24285 r-shiny
24286 r-shinydashboard
24287 r-versions))
24288 (home-page "https://cran.r-project.org/web/packages/adapr/")
24289 (synopsis "Implementation of an accountable data analysis process")
24290 (description
24291 "This package tracks reading and writing within R scripts that are
24292 organized into a directed acyclic graph. It contains an interactive Shiny
24293 application @code{adaprApp()}. It uses Git and file hashes to track version
24294 histories of inputs and outputs.")
24295 (license license:lgpl2.0)))
24296
24297 (define-public r-adapsamp
24298 (package
24299 (name "r-adapsamp")
24300 (version "1.1.1")
24301 (source
24302 (origin
24303 (method url-fetch)
24304 (uri (cran-uri "AdapSamp" version))
24305 (sha256
24306 (base32
24307 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
24308 (properties `((upstream-name . "AdapSamp")))
24309 (build-system r-build-system)
24310 (propagated-inputs (list r-pracma))
24311 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
24312 (synopsis "Adaptive sampling algorithms")
24313 (description
24314 "For distributions whose probability density functions are log-concave,
24315 the adaptive rejection sampling algorithm can be used to build envelope
24316 functions for sampling. For others, the modified adaptive rejection sampling
24317 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
24318 adaptive slice sampling algorithm can be used. This R package mainly includes
24319 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
24320 @code{rASS()}. These functions can realize sampling based on the algorithms
24321 above.")
24322 (license license:gpl2)))
24323
24324 (define-public r-adaptalint
24325 (package
24326 (name "r-adaptalint")
24327 (version "0.2.4")
24328 (source
24329 (origin
24330 (method url-fetch)
24331 (uri (cran-uri "adaptalint" version))
24332 (sha256
24333 (base32
24334 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
24335 (properties `((upstream-name . "adaptalint")))
24336 (build-system r-build-system)
24337 (propagated-inputs
24338 (list r-dplyr r-lintr r-purrr))
24339 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
24340 (synopsis "Check R code style")
24341 (description
24342 "This package provides tools to infer the code style (which style rules
24343 are followed and which ones are not) from one package and use it to check
24344 another. This makes it easier to find and correct the most important problems
24345 first.")
24346 (license license:gpl3)))
24347
24348 (define-public r-fracdiff
24349 (package
24350 (name "r-fracdiff")
24351 (version "1.5-1")
24352 (source
24353 (origin
24354 (method url-fetch)
24355 (uri (cran-uri "fracdiff" version))
24356 (sha256
24357 (base32
24358 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
24359 (properties `((upstream-name . "fracdiff")))
24360 (build-system r-build-system)
24361 (home-page "https://github.com/mmaechler/fracdiff")
24362 (synopsis
24363 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
24364 (description
24365 "This package provides tools for the maximum likelihood estimation of the
24366 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
24367 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
24368 (license license:gpl2+)))
24369
24370 (define-public r-forecast
24371 (package
24372 (name "r-forecast")
24373 (version "8.16")
24374 (source
24375 (origin
24376 (method url-fetch)
24377 (uri (cran-uri "forecast" version))
24378 (sha256
24379 (base32
24380 "0zvn44k7npxai8kj0hgxaaqv1hgd8rxicnvj4cg7wfl8ba4yn0cz"))))
24381 (properties `((upstream-name . "forecast")))
24382 (build-system r-build-system)
24383 (propagated-inputs
24384 (list r-colorspace
24385 r-fracdiff
24386 r-ggplot2
24387 r-lmtest
24388 r-magrittr
24389 r-nnet
24390 r-rcpp
24391 r-rcpparmadillo
24392 r-timedate
24393 r-tseries
24394 r-urca
24395 r-zoo))
24396 (native-inputs
24397 (list r-knitr)) ; needed for vignettes
24398 (home-page "https://pkg.robjhyndman.com/forecast/")
24399 (synopsis "Forecasting functions for time series and linear models")
24400 (description
24401 "This package provides methods and tools for displaying and analysing
24402 univariate time series forecasts including exponential smoothing via state
24403 space models and automatic ARIMA modelling.")
24404 (license license:gpl3)))
24405
24406 (define-public r-formattable
24407 (package
24408 (name "r-formattable")
24409 (version "0.2.1")
24410 (source
24411 (origin
24412 (method url-fetch)
24413 (uri (cran-uri "formattable" version))
24414 (sha256
24415 (base32 "1vdxi0xmg019qyzjrp8bkjxciz245jcxsrkhfzd44ynqcwi4s3ag"))))
24416 (properties `((upstream-name . "formattable")))
24417 (build-system r-build-system)
24418 (propagated-inputs
24419 (list r-htmltools r-htmlwidgets r-lifecycle r-rmarkdown))
24420 (native-inputs
24421 (list r-knitr))
24422 (home-page "https://github.com/renkun-ken/formattable")
24423 (synopsis "Print vectors and data frames with text fromatting")
24424 (description
24425 "This R package provides functions to create formattable vectors and data
24426 frames. @emph{Formattable} vectors are printed with text formatting, and
24427 formattable data frames are printed with multiple types of formatting in HTML
24428 to improve the readability of data presented in tabular form rendered in web
24429 pages.")
24430 (license license:expat)))
24431
24432 (define-public r-xmisc
24433 (package
24434 (name "r-xmisc")
24435 (version "0.2.1")
24436 (source
24437 (origin
24438 (method url-fetch)
24439 (uri (cran-uri "Xmisc" version))
24440 (sha256
24441 (base32
24442 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
24443 (properties `((upstream-name . "Xmisc")))
24444 (build-system r-build-system)
24445 (home-page "https://cran.r-project.org/package=Xmisc")
24446 (synopsis
24447 "Xiaobei's miscellaneous classes and functions")
24448 (description
24449 "This package provides Xiaobei's miscellaneous classes and functions,
24450 which are useful when developing R packages for @dfn{object oriented
24451 programming} (OOP) using R Reference Class.")
24452 (license license:gpl2+)))
24453
24454 (define-public r-proxyc
24455 (package
24456 (name "r-proxyc")
24457 (version "0.2.4")
24458 (source
24459 (origin
24460 (method url-fetch)
24461 (uri (cran-uri "proxyC" version))
24462 (sha256
24463 (base32
24464 "1mcimswrx1cjjm7wsgkzfrgh3jpf4sncwfvdvg2f14fzfzy7afd6"))))
24465 (properties `((upstream-name . "proxyC")))
24466 (build-system r-build-system)
24467 (propagated-inputs
24468 (list r-matrix r-rcpp r-rcpparmadillo r-rcppparallel))
24469 (home-page "https://cran.r-project.org/package=proxyC")
24470 (synopsis "Compute proximity in large sparse matrices")
24471 (description
24472 "This package provides efficient tools to compute the proximity between
24473 rows or columns of large matrices. Functions are optimised for large sparse
24474 matrices using the Armadillo and Intel TBB libraries. Among several built-in
24475 similarity/distance measures, computation of correlation, cosine similarity
24476 and Euclidean distance is particularly fast.")
24477 (license license:gpl3)))
24478
24479 (define-public r-isocodes
24480 (package
24481 (name "r-isocodes")
24482 (version "2022.01.10")
24483 (source
24484 (origin
24485 (method url-fetch)
24486 (uri (cran-uri "ISOcodes" version))
24487 (sha256
24488 (base32
24489 "0gy7n5bgxnl4rawry0pg078bkks9lzsbsrwjq8q5cvxl4k3dwpdj"))))
24490 (properties `((upstream-name . "ISOcodes")))
24491 (build-system r-build-system)
24492 (home-page "https://cran.r-project.org/package=ISOcodes")
24493 (synopsis "Selected ISO codes")
24494 (description
24495 "This package provides ISO language, territory, currency, script and
24496 character codes. It provides ISO 639 language codes, ISO 3166 territory
24497 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
24498 character codes as well as the UN M.49 area codes.")
24499 (license license:gpl2)))
24500
24501 (define-public r-stopwords
24502 (package
24503 (name "r-stopwords")
24504 (version "2.3")
24505 (source
24506 (origin
24507 (method url-fetch)
24508 (uri (cran-uri "stopwords" version))
24509 (sha256
24510 (base32
24511 "1ci1cgxrcvlhhplximsfv0plvjdbcd5kv0nphxnpildsn5m1rv65"))))
24512 (properties `((upstream-name . "stopwords")))
24513 (build-system r-build-system)
24514 (propagated-inputs
24515 (list r-isocodes))
24516 (home-page "https://github.com/quanteda/stopwords")
24517 (synopsis "Multilingual stopword lists")
24518 (description
24519 "This package provides multiple sources of stopwords, for use in text
24520 analysis and natural language processing.")
24521 (license license:expat)))
24522
24523 (define-public r-spacyr
24524 (package
24525 (name "r-spacyr")
24526 (version "1.2.1")
24527 (source
24528 (origin
24529 (method url-fetch)
24530 (uri (cran-uri "spacyr" version))
24531 (sha256
24532 (base32
24533 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
24534 (properties `((upstream-name . "spacyr")))
24535 (build-system r-build-system)
24536 (propagated-inputs
24537 (list r-data-table r-reticulate))
24538 (home-page "https://spacyr.quanteda.io")
24539 (synopsis "R wrapper for the spaCy NLP library")
24540 (description
24541 "This package provides an R wrapper to the Python @dfn{natural language
24542 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
24543 (license license:gpl3)))
24544
24545 (define-public r-snowballc
24546 (package
24547 (name "r-snowballc")
24548 (version "0.7.0")
24549 (source
24550 (origin
24551 (method url-fetch)
24552 (uri (cran-uri "SnowballC" version))
24553 (sha256
24554 (base32
24555 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
24556 (properties `((upstream-name . "SnowballC")))
24557 (build-system r-build-system)
24558 (home-page "https://r-forge.r-project.org/projects/r-temis/")
24559 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
24560 (description
24561 "This package provides an R interface to the C @code{libstemmer} library
24562 that implements Porter's word stemming algorithm for collapsing words to a
24563 common root to aid comparison of vocabulary. Currently supported languages
24564 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
24565 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
24566 (license license:bsd-3)))
24567
24568 (define-public r-quanteda
24569 (package
24570 (name "r-quanteda")
24571 (version "3.2.1")
24572 (source
24573 (origin
24574 (method url-fetch)
24575 (uri (cran-uri "quanteda" version))
24576 (sha256
24577 (base32
24578 "102wlx6481fskgdr5wv467n29f666q0qg9kjm0ivqfg9xsbvza12"))))
24579 (properties `((upstream-name . "quanteda")))
24580 (build-system r-build-system)
24581 (propagated-inputs
24582 (list r-fastmatch
24583 r-magrittr
24584 r-matrix
24585 r-rcpp
24586 r-rcpparmadillo
24587 r-rcppparallel
24588 r-snowballc
24589 r-stopwords
24590 r-stringi
24591 r-xml2
24592 r-yaml))
24593 (native-inputs
24594 (list r-knitr))
24595 (home-page "https://quanteda.io")
24596 (synopsis "Quantitative analysis of textual data")
24597 (description
24598 "This package provides a fast, flexible, and comprehensive framework for
24599 quantitative text analysis in R. It provides functionality for corpus
24600 management, creating and manipulating tokens and ngrams, exploring keywords in
24601 context, forming and manipulating sparse matrices of documents by features and
24602 feature co-occurrences, analyzing keywords, computing feature similarities and
24603 distances, applying content dictionaries, applying supervised and unsupervised
24604 machine learning, visually representing text and text analyses, and more.")
24605 (license license:gpl3)))
24606
24607 (define-public r-topicmodels
24608 (package
24609 (name "r-topicmodels")
24610 (version "0.2-12")
24611 (source
24612 (origin
24613 (method url-fetch)
24614 (uri (cran-uri "topicmodels" version))
24615 (sha256
24616 (base32
24617 "1d6iizmn042b59q2y6qc82z19wq3xm0zvgkf8iqf8fdzh51kmn5g"))))
24618 (properties `((upstream-name . "topicmodels")))
24619 (build-system r-build-system)
24620 (inputs
24621 (list gsl))
24622 (propagated-inputs
24623 (list r-modeltools r-slam r-tm))
24624 (home-page "https://cran.r-project.org/package=topicmodels")
24625 (synopsis "Topic models")
24626 (description
24627 "This package provides an interface to the C code for @dfn{Latent
24628 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
24629 David M. Blei and co-authors and the C++ code for fitting LDA models using
24630 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
24631 (license license:gpl2)))
24632
24633 (define-public r-stm
24634 (package
24635 (name "r-stm")
24636 (version "1.3.6")
24637 (source
24638 (origin
24639 (method url-fetch)
24640 (uri (cran-uri "stm" version))
24641 (sha256
24642 (base32
24643 "0qwq4nin2n9fjd06852r8k7arvcgh46kcfb3lm21swgx6j8bgrhb"))))
24644 (properties `((upstream-name . "stm")))
24645 (build-system r-build-system)
24646 (propagated-inputs
24647 (list r-data-table
24648 r-glmnet
24649 r-lda
24650 r-matrix
24651 r-matrixstats
24652 r-quadprog
24653 r-quanteda
24654 r-rcpp
24655 r-rcpparmadillo
24656 r-slam
24657 r-stringr))
24658 (home-page "http://www.structuraltopicmodel.com/")
24659 (synopsis "Estimation of the Structural Topic Model")
24660 (description
24661 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
24662 topic models with document-level covariates. The package also includes tools
24663 for model selection, visualization, and estimation of topic-covariate
24664 regressions.")
24665 (license license:expat)))
24666
24667 (define-public r-polycor
24668 (package
24669 (name "r-polycor")
24670 (version "0.8-1")
24671 (source
24672 (origin
24673 (method url-fetch)
24674 (uri (cran-uri "polycor" version))
24675 (sha256
24676 (base32
24677 "0285rvx8238qp8dix0jq0cqq7ks8h6cjwsscbc7dx4n9nph56pzh"))))
24678 (properties `((upstream-name . "polycor")))
24679 (build-system r-build-system)
24680 (propagated-inputs
24681 (list r-admisc r-matrix r-mvtnorm))
24682 (home-page "https://r-forge.r-project.org/projects/polycor/")
24683 (synopsis "Polychoric and polyserial correlations")
24684 (description
24685 "This package provides tools to compute polychoric and polyserial
24686 correlations by quick \"two-step\" methods or ML, optionally with standard
24687 errors; tetrachoric and biserial correlations are special cases.")
24688 (license license:gpl2+)))
24689
24690 (define-public r-msm
24691 (package
24692 (name "r-msm")
24693 (version "1.6.9")
24694 (source
24695 (origin
24696 (method url-fetch)
24697 (uri (cran-uri "msm" version))
24698 (sha256
24699 (base32
24700 "08vhazswyxr3y1zb9y60mbg3bappzlizxml8s08p65mh82xxkz5f"))))
24701 (properties `((upstream-name . "msm")))
24702 (build-system r-build-system)
24703 (propagated-inputs
24704 (list r-expm r-mvtnorm r-survival))
24705 (home-page "https://github.com/chjackson/msm")
24706 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
24707 (description
24708 "This package provides functions for fitting continuous-time Markov and
24709 hidden Markov multi-state models to longitudinal data. It was designed for
24710 processes observed at arbitrary times in continuous time (panel data) but some
24711 other observation schemes are supported. Both Markov transition rates and the
24712 hidden Markov output process can be modelled in terms of covariates, which may
24713 be constant or piecewise-constant in time.")
24714 (license license:gpl2+)))
24715
24716 (define-public r-ltm
24717 (package
24718 (name "r-ltm")
24719 (version "1.2-0")
24720 (source
24721 (origin
24722 (method url-fetch)
24723 (uri (cran-uri "ltm" version))
24724 (sha256
24725 (base32
24726 "0vhgbk6j0z3limsrbjkjkpfn2whiaij5j4jf1gg66mjs9dlylap1"))))
24727 (properties `((upstream-name . "ltm")))
24728 (build-system r-build-system)
24729 (propagated-inputs
24730 (list r-mass r-msm r-polycor))
24731 (home-page "https://github.com/drizopoulos/ltm")
24732 (synopsis "Latent trait models under IRT")
24733 (description
24734 "This is a package supporting the analysis of multivariate dichotomous
24735 and polytomous data using latent trait models under the Item Response Theory
24736 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
24737 Three-Parameter, the Graded Response, and the Generalized Partial Credit
24738 Models.")
24739 (license license:gpl2+)))
24740
24741 (define-public r-mi
24742 (package
24743 (name "r-mi")
24744 (version "1.0")
24745 (source
24746 (origin
24747 (method url-fetch)
24748 (uri (cran-uri "mi" version))
24749 (sha256
24750 (base32
24751 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
24752 (properties `((upstream-name . "mi")))
24753 (build-system r-build-system)
24754 (propagated-inputs
24755 (list r-arm r-matrix))
24756 (home-page "http://www.stat.columbia.edu/~gelman/")
24757 (synopsis "Missing data imputation and model checking")
24758 (description
24759 "This package provides functions for data manipulation, imputing missing
24760 values in an approximate Bayesian framework, diagnostics of the models used to
24761 generate the imputations, confidence-building mechanisms to validate some of
24762 the assumptions of the imputation algorithm, and functions to analyze multiply
24763 imputed data sets with the appropriate degree of sampling uncertainty.")
24764 (license license:gpl2+)))
24765
24766 (define-public r-matrixcalc
24767 (package
24768 (name "r-matrixcalc")
24769 (version "1.0-5")
24770 (source
24771 (origin
24772 (method url-fetch)
24773 (uri (cran-uri "matrixcalc" version))
24774 (sha256
24775 (base32
24776 "1jkgl1v1q7cqpl1rf49qahdr9y0f33f0ldsbgby8xhfv0vpy21jr"))))
24777 (properties `((upstream-name . "matrixcalc")))
24778 (build-system r-build-system)
24779 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
24780 (synopsis "Collection of functions for matrix calculations")
24781 (description
24782 "This package provides a collection of functions to support matrix
24783 calculations for probability, econometric and numerical analysis. There are
24784 additional functions that are comparable to APL functions which are useful for
24785 actuarial models such as pension mathematics.")
24786 (license license:gpl2+)))
24787
24788 (define-public r-matrixextra
24789 (package
24790 (name "r-matrixextra")
24791 (version "0.1.10")
24792 (source
24793 (origin
24794 (method url-fetch)
24795 (uri (cran-uri "MatrixExtra" version))
24796 (sha256
24797 (base32 "00f6sgw6p2709gs3df68yr59nvsr429pk9xql71id3kachjzh618"))))
24798 (properties `((upstream-name . "MatrixExtra")))
24799 (build-system r-build-system)
24800 (propagated-inputs
24801 (list r-float r-matrix r-rcpp r-rhpcblasctl))
24802 (native-inputs
24803 (list r-knitr))
24804 (home-page "https://github.com/david-cortes/MatrixExtra")
24805 (synopsis "Extra methods for sparse matrices")
24806 (description
24807 "This package extends sparse matrix and vector classes from the Matrix
24808 package by providing:
24809
24810 @enumerate
24811 @item Methods and operators that work natively on CSR formats (compressed
24812 sparse row, a.k.a. @code{RsparseMatrix}) such as slicing/sub-setting,
24813 assignment, @code{rbind()}, mathematical operators for CSR and COO such as
24814 addition or @code{sqrt()}, and methods such as @code{diag()};
24815 @item Multi-threaded matrix multiplication and cross-product for many
24816 @code{<sparse, dense>} types, including the @code{float32} type from
24817 @code{float};
24818 @item Coercion methods between pairs of classes which are not present in
24819 @code{Matrix}, such as from @code{dgCMatrix} to @code{ngRMatrix}, as well as
24820 convenience conversion functions;
24821 @item Utility functions for sparse matrices such as sorting the indices or
24822 removing zero-valued entries;
24823 @item Fast transposes that work by outputting in the opposite storage format;
24824 @item Faster replacements for many @code{Matrix} methods for all sparse types,
24825 such as slicing and elementwise multiplication.
24826 @item Convenience functions for sparse objects, such as @code{mapSparse} or a
24827 shorter @code{show} method.
24828 @end enumerate
24829 ")
24830 (license license:gpl2+)))
24831
24832 (define-public r-sem
24833 (package
24834 (name "r-sem")
24835 (version "3.1-15")
24836 (source
24837 (origin
24838 (method url-fetch)
24839 (uri (cran-uri "sem" version))
24840 (sha256
24841 (base32
24842 "05hk72zxvyv6kkjhk5y6qw253c64108az7030z8j1sz8wq03n0md"))))
24843 (properties `((upstream-name . "sem")))
24844 (build-system r-build-system)
24845 (propagated-inputs
24846 (list r-boot r-mass r-mi))
24847 (home-page "https://cran.r-project.org/package=sem")
24848 (synopsis "Structural equation models")
24849 (description
24850 "This package provides functions for fitting general linear structural
24851 equation models (with observed and latent variables) using the RAM approach,
24852 and for fitting structural equations in observed-variable models by two-stage
24853 least squares.")
24854 (license license:gpl2+)))
24855
24856 (define-public r-semtools
24857 (package
24858 (name "r-semtools")
24859 (version "0.5-6")
24860 (source
24861 (origin
24862 (method url-fetch)
24863 (uri (cran-uri "semTools" version))
24864 (sha256
24865 (base32
24866 "1wnakz76c4mgkwvx3iycmvgrzqys860jg9zpkba0ln5c08ycw8pm"))))
24867 (properties `((upstream-name . "semTools")))
24868 (build-system r-build-system)
24869 (propagated-inputs
24870 (list r-lavaan r-pbivnorm))
24871 (home-page "https://github.com/simsem/semTools/wiki")
24872 (synopsis "Useful tools for structural equation modeling")
24873 (description
24874 "This package provides useful tools for structural equation modeling.")
24875 (license license:gpl2+)))
24876
24877 (define-public r-regsem
24878 (package
24879 (name "r-regsem")
24880 (version "1.8.0")
24881 (source
24882 (origin
24883 (method url-fetch)
24884 (uri (cran-uri "regsem" version))
24885 (sha256
24886 (base32
24887 "1v33wkrsawcvaa06cijp8ybwi82a0x34y59hdknwdbywplnirzr8"))))
24888 (properties `((upstream-name . "regsem")))
24889 (build-system r-build-system)
24890 (propagated-inputs
24891 (list r-lavaan r-rcpp r-rcpparmadillo r-rsolnp))
24892 (native-inputs
24893 (list r-knitr))
24894 (home-page "https://cran.r-project.org/package=regsem")
24895 (synopsis "Regularized structural equation modeling")
24896 (description
24897 "This package uses both ridge and lasso penalties (and extensions) to
24898 penalize specific parameters in structural equation models. The package
24899 offers additional cost functions, cross validation, and other extensions
24900 beyond traditional structural equation models. It also contains a function to
24901 perform @dfn{exploratory mediation} (XMed).")
24902 (license license:gpl2+)))
24903
24904 (define-public r-stanheaders
24905 (package
24906 (name "r-stanheaders")
24907 (version "2.21.0-7")
24908 (source
24909 (origin
24910 (method url-fetch)
24911 (uri (cran-uri "StanHeaders" version))
24912 (sha256
24913 (base32
24914 "0srkyawyiykn3p5lw1z3zf18s4ax4iasv1ci3l1px40f9w36wm17"))))
24915 (properties `((upstream-name . "StanHeaders")))
24916 (build-system r-build-system)
24917 (inputs (list pandoc))
24918 (propagated-inputs
24919 (list r-rcppeigen r-rcppparallel))
24920 (native-inputs
24921 (list gfortran r-knitr)) ; for vignettes
24922 (home-page "https://mc-stan.org/")
24923 (synopsis "C++ header files for Stan")
24924 (description
24925 "The C++ header files of the Stan project are provided by this package.
24926 There is a shared object containing part of the @code{CVODES} library, but it
24927 is not accessible from R. @code{r-stanheaders} is only useful for developers
24928 who want to utilize the @code{LinkingTo} directive of their package's
24929 DESCRIPTION file to build on the Stan library without incurring unnecessary
24930 dependencies.
24931
24932 The Stan project develops a probabilistic programming language that implements
24933 full or approximate Bayesian statistical inference via Markov Chain Monte
24934 Carlo or variational methods and implements (optionally penalized) maximum
24935 likelihood estimation via optimization. The Stan library includes an advanced
24936 automatic differentiation scheme, templated statistical and linear algebra
24937 functions that can handle the automatically differentiable scalar types (and
24938 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
24939 package provides user-facing R functions to parse, compile, test, estimate,
24940 and analyze Stan models.")
24941 (license license:bsd-3)))
24942
24943 (define-public r-rpf
24944 (package
24945 (name "r-rpf")
24946 (version "1.0.11")
24947 (source
24948 (origin
24949 (method url-fetch)
24950 (uri (cran-uri "rpf" version))
24951 (sha256
24952 (base32
24953 "1yr1i7kswq57mcxv05lh7bvbicz1djqxcl6f13dlgsf3ww56gzg1"))))
24954 (properties `((upstream-name . "rpf")))
24955 (build-system r-build-system)
24956 (propagated-inputs
24957 (list r-lifecycle r-mvtnorm r-rcpp r-rcppeigen))
24958 (native-inputs
24959 (list r-knitr))
24960 (home-page "https://github.com/jpritikin/rpf")
24961 (synopsis "Response probability functions")
24962 (description
24963 "The purpose of this package is to factor out logic and math common to
24964 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
24965 core support code suitable for more specialized IRT packages to build upon.
24966 Complete access to optimized C functions is made available with
24967 @code{R_RegisterCCallable()}.")
24968 (license license:gpl3+)))
24969
24970 (define-public r-openmx
24971 (package
24972 (name "r-openmx")
24973 (version "2.20.6")
24974 (source
24975 (origin
24976 (method url-fetch)
24977 (uri (cran-uri "OpenMx" version))
24978 (sha256
24979 (base32
24980 "1v969100hllh0lwlxd2gv0k7krrsp9gc07iinx0nn04wkzh0rib5"))))
24981 (properties `((upstream-name . "OpenMx")))
24982 (build-system r-build-system)
24983 (propagated-inputs
24984 (list r-bh
24985 r-digest
24986 r-lifecycle
24987 r-mass
24988 r-matrix
24989 r-rcpp
24990 r-rcppeigen
24991 r-rcppparallel
24992 r-rpf
24993 r-stanheaders))
24994 (native-inputs (list r-knitr gfortran))
24995 (home-page "http://openmx.ssri.psu.edu")
24996 (synopsis "Extended structural equation modelling")
24997 (description
24998 "This package allows for the estimation of a wide variety of advanced
24999 multivariate statistical models. It consists of a library of functions and
25000 optimizers that allow you to quickly and flexibly define an SEM model and
25001 estimate parameters given observed data.")
25002 (license license:asl2.0)))
25003
25004 (define-public r-kutils
25005 (package
25006 (name "r-kutils")
25007 (version "1.70")
25008 (source
25009 (origin
25010 (method url-fetch)
25011 (uri (cran-uri "kutils" version))
25012 (sha256
25013 (base32
25014 "06jk66wbq3jmdf2jdhqns6r3yk36l2x7c907x977zv80sqxa1l37"))))
25015 (properties `((upstream-name . "kutils")))
25016 (build-system r-build-system)
25017 (propagated-inputs
25018 (list r-foreign r-openxlsx r-plyr r-runit r-xtable))
25019 (home-page "https://cran.r-project.org/package=kutils")
25020 (synopsis "Project management tools")
25021 (description
25022 "This package provides tools for data importation, recoding, and
25023 inspection. There are functions to create new project folders, R code
25024 templates, create uniquely named output directories, and to quickly obtain a
25025 visual summary for each variable in a data frame. The main feature here is
25026 the systematic implementation of the \"variable key\" framework for data
25027 importation and recoding.")
25028 (license license:gpl2)))
25029
25030 (define-public r-rockchalk
25031 (package
25032 (name "r-rockchalk")
25033 (version "1.8.152")
25034 (source
25035 (origin
25036 (method url-fetch)
25037 (uri (cran-uri "rockchalk" version))
25038 (sha256
25039 (base32
25040 "1d15jlgcy35pvaicaddd4zrhwm5ajb9yc3jk6dyxm99gc5wcn6h3"))))
25041 (properties `((upstream-name . "rockchalk")))
25042 (build-system r-build-system)
25043 (propagated-inputs
25044 (list r-cardata r-kutils r-lme4 r-mass))
25045 (home-page "https://cran.r-project.org/package=rockchalk")
25046 (synopsis "Regression estimation and presentation")
25047 (description
25048 "This package provides a collection of functions for interpretation and
25049 presentation of regression analysis. These functions are used to produce the
25050 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
25051 includes regression diagnostics, regression tables, and plots of interactions
25052 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
25053 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
25054 fairly comprehensive overview.")
25055 (license license:gpl3+)))
25056
25057 (define-public r-lisreltor
25058 (package
25059 (name "r-lisreltor")
25060 (version "0.1.5")
25061 (source
25062 (origin
25063 (method url-fetch)
25064 (uri (cran-uri "lisrelToR" version))
25065 (sha256
25066 (base32
25067 "0i51v0x87277ly0kggdd594w6q4zq62b4n7xs9r25j08bzs82nfk"))))
25068 (properties `((upstream-name . "lisrelToR")))
25069 (build-system r-build-system)
25070 (home-page "https://cran.r-project.org/package=lisrelToR")
25071 (synopsis "Import output from LISREL into R")
25072 (description
25073 "This is an unofficial package aimed at automating the import of LISREL
25074 output in R.")
25075 (license license:gpl2)))
25076
25077 (define-public r-bdgraph
25078 (package
25079 (name "r-bdgraph")
25080 (version "2.67")
25081 (source
25082 (origin
25083 (method url-fetch)
25084 (uri (cran-uri "BDgraph" version))
25085 (sha256
25086 (base32
25087 "0s2j4462zlgyjnqvvvxg4lynhmwwnjaw1cr1chzmagfvaj94qhhz"))))
25088 (properties `((upstream-name . "BDgraph")))
25089 (build-system r-build-system)
25090 (propagated-inputs
25091 (list r-igraph))
25092 (native-inputs
25093 (list r-knitr))
25094 (home-page "https://www.uva.nl/profile/a.mohammadi")
25095 (synopsis "Bayesian structure learning in graphical models")
25096 (description
25097 "This package provides statistical tools for Bayesian structure learning
25098 in undirected graphical models for continuous, discrete, and mixed data. It
25099 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
25100 on a continuous-time birth-death process.")
25101 (license license:gpl2+)))
25102
25103 (define-public r-d3network
25104 (package
25105 (name "r-d3network")
25106 (version "0.5.2.1")
25107 (source
25108 (origin
25109 (method url-fetch)
25110 (uri (cran-uri "d3Network" version))
25111 (sha256
25112 (base32
25113 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
25114 (properties `((upstream-name . "d3Network")))
25115 (build-system r-build-system)
25116 (propagated-inputs
25117 (list r-plyr r-rjson r-whisker))
25118 (home-page "http://christophergandrud.github.io/d3Network/")
25119 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
25120 (description
25121 "This package is intended to make it easy to create D3 JavaScript
25122 network, tree, dendrogram, and Sankey graphs from R using data frames.")
25123 (license license:gpl3+)))
25124
25125 (define-public r-qgraph
25126 (package
25127 (name "r-qgraph")
25128 (version "1.9.2")
25129 (source
25130 (origin
25131 (method url-fetch)
25132 (uri (cran-uri "qgraph" version))
25133 (sha256
25134 (base32
25135 "0r225b7rnsv6wz41ij0msmqr1xy0iqxh9dbsvjixbi1hvgv91wds"))))
25136 (properties `((upstream-name . "qgraph")))
25137 (build-system r-build-system)
25138 (propagated-inputs
25139 (list r-abind
25140 r-colorspace
25141 r-corpcor
25142 r-fdrtool
25143 r-ggplot2
25144 r-glasso
25145 r-gtools
25146 r-hmisc
25147 r-igraph
25148 r-jpeg
25149 r-lavaan
25150 r-matrix
25151 r-pbapply
25152 r-plyr
25153 r-png
25154 r-psych
25155 r-rcpp
25156 r-reshape2))
25157 (home-page "http://sachaepskamp.com/qgraph/")
25158 (synopsis "Weighted network visualization and analysis")
25159 (description
25160 "This package implements tools for weighted network visualization and
25161 analysis, as well as Gaussian graphical model computation. It contains graph
25162 plotting methods, and tools for psychometric data visualization and graphical
25163 model estimation. See Epskamp et al. (2012)
25164 @url{doi:10.18637/jss.v048.i04}.")
25165 (license license:gpl2)))
25166
25167 (define-public r-semplot
25168 (package
25169 (name "r-semplot")
25170 (version "1.1.5")
25171 (source
25172 (origin
25173 (method url-fetch)
25174 (uri (cran-uri "semPlot" version))
25175 (sha256
25176 (base32
25177 "0d7v9yqc9nhx3hdrp444w1ah66zai3lg5y778m85r7ngh1prxlvc"))))
25178 (properties `((upstream-name . "semPlot")))
25179 (build-system r-build-system)
25180 (propagated-inputs
25181 (list r-colorspace
25182 r-corpcor
25183 r-igraph
25184 r-lavaan
25185 r-lisreltor
25186 r-openmx
25187 r-plyr
25188 r-qgraph
25189 r-rockchalk
25190 r-sem
25191 r-xml))
25192 (home-page "https://github.com/SachaEpskamp/semPlot")
25193 (synopsis "Unified visualizations of structural equation models")
25194 (description
25195 "Structural equation modeling (SEM) has a long history of representing
25196 models graphically as path diagrams. The semPlot package for R fills the gap
25197 between advanced, but time-consuming, graphical software and the limited
25198 graphics produced automatically by SEM software. In addition, semPlot offers
25199 more functionality than drawing path diagrams: it can act as a common ground
25200 for importing SEM results into R. Any result usable as input to semPlot can
25201 also be represented in any of the three popular SEM frame-works, as well as
25202 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
25203 (license license:gpl2)))
25204
25205 (define-public r-cdm
25206 (package
25207 (name "r-cdm")
25208 (version "8.1-12")
25209 (source
25210 (origin
25211 (method url-fetch)
25212 (uri (cran-uri "CDM" version))
25213 (sha256
25214 (base32
25215 "1cnk19k09cj81ic43rwbvcalvczfca4ncdyy8r1gyc8fzf2glb0i"))))
25216 (properties `((upstream-name . "CDM")))
25217 (build-system r-build-system)
25218 (propagated-inputs
25219 (list r-mvtnorm r-polycor r-rcpp r-rcpparmadillo))
25220 (home-page
25221 "https://github.com/alexanderrobitzsch/CDM")
25222 (synopsis "Cognitive diagnosis modeling")
25223 (description
25224 "This package provides functions for cognitive diagnosis modeling and
25225 multidimensional item response modeling for dichotomous and polytomous item
25226 responses. It enables the estimation of the DINA and DINO model, the multiple
25227 group (polytomous) GDINA model, the multiple choice DINA model, the general
25228 diagnostic model (GDM), the structured latent class model (SLCA), and
25229 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
25230 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
25231 estimation and the package structure. For tutorials on how to use the CDM
25232 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
25233 well as Ravand and Robitzsch (2015).")
25234 (license license:gpl2+)))
25235
25236 (define-public r-tam
25237 (package
25238 (name "r-tam")
25239 (version "4.0-16")
25240 (source
25241 (origin
25242 (method url-fetch)
25243 (uri (cran-uri "TAM" version))
25244 (sha256
25245 (base32
25246 "00ww277hsyci5rph4gb155h0y95dmjhqgn9amz6g8zbrjb2748dw"))))
25247 (properties `((upstream-name . "TAM")))
25248 (build-system r-build-system)
25249 (propagated-inputs
25250 (list r-cdm r-rcpp r-rcpparmadillo))
25251 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
25252 (synopsis "Test analysis modules")
25253 (description
25254 "This package includes tools for marginal maximum likelihood estimation
25255 and joint maximum likelihood estimation for unidimensional and
25256 multidimensional item response models. The package functionality covers the
25257 Rasch model, 2PL model, 3PL model, generalized partial credit model,
25258 multi-faceted Rasch model, nominal item response model, structured latent
25259 class model, mixture distribution IRT models, and located latent class models.
25260 Latent regression models and plausible value imputation are also supported.")
25261 (license license:gpl2+)))
25262
25263 (define-public r-erm
25264 (package
25265 (name "r-erm")
25266 (version "1.0-2")
25267 (source
25268 (origin
25269 (method url-fetch)
25270 (uri (cran-uri "eRm" version))
25271 (sha256
25272 (base32
25273 "0smym010kswc5vx90qr3x1vl16xj1x1i54rvrj006dc4agc1vmlk"))))
25274 (properties `((upstream-name . "eRm")))
25275 (build-system r-build-system)
25276 (propagated-inputs
25277 (list r-colorspace r-lattice r-mass r-matrix r-psych))
25278 (native-inputs (list gfortran))
25279 (home-page "https://cran.r-project.org/package=eRm")
25280 (synopsis "Extended Rasch modeling")
25281 (description
25282 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
25283 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
25284 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
25285 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
25286 data matrix. Additional features are the ML estimation of the person
25287 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
25288 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
25289 infit and outfit measures, ICC and other plots, automated stepwise item
25290 elimination, and a simulation module for various binary data matrices.")
25291 (license license:gpl3)))
25292
25293 (define-public r-irtoys
25294 (package
25295 (name "r-irtoys")
25296 (version "0.2.2")
25297 (source
25298 (origin
25299 (method url-fetch)
25300 (uri (cran-uri "irtoys" version))
25301 (sha256
25302 (base32
25303 "1qshz6czykgf53mq6xiswzv5xsjwrkrinpfkf1yavql4v08hs82b"))))
25304 (properties `((upstream-name . "irtoys")))
25305 (build-system r-build-system)
25306 (propagated-inputs
25307 (list r-ltm r-sm))
25308 (native-inputs
25309 (list r-knitr))
25310 (home-page "https://cran.r-project.org/package=irtoys")
25311 (synopsis "Collection of functions related to Item Response Theory (IRT)")
25312 (description
25313 "This package provides a collection of functions useful in learning and
25314 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
25315 programs. It provides basic CTT analysis, a simple common interface to the
25316 estimation of item parameters in IRT models for binary responses with three
25317 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
25318 EAP, WLE, plausible values), item and person fit statistics, scaling
25319 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
25320 array of parametric and non-parametric (kernel) plots. It estimates and plots
25321 Haberman's interaction model when all items are dichotomously scored.")
25322 (license license:gpl2+)))
25323
25324 (define-public r-iheatmapr
25325 (package
25326 (name "r-iheatmapr")
25327 (version "0.5.1")
25328 (source
25329 (origin
25330 (method url-fetch)
25331 (uri (cran-uri "iheatmapr" version))
25332 (sha256
25333 (base32
25334 "1pwkwh7ljlpr6zyz6j8knpz3iw60xzkw8amc98x4pc2mw148jvzx"))))
25335 (properties `((upstream-name . "iheatmapr")))
25336 (build-system r-build-system)
25337 (propagated-inputs
25338 (list r-fastcluster
25339 r-ggdendro
25340 r-htmlwidgets
25341 r-jsonlite
25342 r-knitr
25343 r-magrittr
25344 r-rcolorbrewer
25345 r-scales))
25346 (native-inputs
25347 (list r-knitr))
25348 (home-page "https://docs.ropensci.org/iheatmapr")
25349 (synopsis "Interactive, Complex Heatmaps")
25350 (description
25351 "iheatmapr is an R package for building complex, interactive heatmaps
25352 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
25353 subplots along the rows or columns of the main heatmap add more information
25354 about each row or column. For example, a one column additional heatmap may
25355 indicate what group a particular row or column belongs to. Complex heatmaps
25356 may also include multiple side by side heatmaps which show different types of
25357 data for the same conditions. Interactivity can improve complex heatmaps by
25358 providing tooltips with information about each cell and enabling zooming into
25359 interesting features. iheatmapr uses the plotly library for interactivity.")
25360 (license license:expat)))
25361
25362 (define-public r-packrat
25363 (package
25364 (name "r-packrat")
25365 (version "0.8.0")
25366 (source
25367 (origin
25368 (method url-fetch)
25369 (uri (cran-uri "packrat" version))
25370 (sha256
25371 (base32
25372 "1vs4i19x6jdwl3jnanp127k4hk80h1mj56cjn07w1gkl542vj99h"))))
25373 (properties `((upstream-name . "packrat")))
25374 (build-system r-build-system)
25375 (home-page "https://github.com/rstudio/packrat/")
25376 (synopsis "Dependency management R projects")
25377 (description
25378 "This package provides a dependency manager for R projects that allows
25379 you to manage the R packages your project depends on in an isolated, portable,
25380 and reproducible way.")
25381 (license license:gpl2)))
25382
25383 (define-public r-rsconnect
25384 (package
25385 (name "r-rsconnect")
25386 (version "0.8.25")
25387 (source
25388 (origin
25389 (method url-fetch)
25390 (uri (cran-uri "rsconnect" version))
25391 (sha256
25392 (base32
25393 "1kyr4v7vds2yw3xmkk2yr56ylz1h95944brylwvwmwj5yxvm419w"))))
25394 (properties `((upstream-name . "rsconnect")))
25395 (build-system r-build-system)
25396 (propagated-inputs
25397 (list r-curl
25398 r-digest
25399 r-jsonlite
25400 r-openssl
25401 r-packrat
25402 r-rstudioapi
25403 r-yaml))
25404 (home-page "https://github.com/rstudio/rsconnect")
25405 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
25406 (description
25407 "This package provides a programmatic deployment interface for RPubs,
25408 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
25409 documents, Shiny applications, Plumber APIs, plots, and static web content.")
25410 (license license:gpl2)))
25411
25412 ;; This package includes minified JavaScript files. When upgrading please
25413 ;; check that there are no new minified JavaScript files.
25414 (define-public r-dygraphs
25415 (package
25416 (name "r-dygraphs")
25417 (version "1.1.1.6")
25418 (source
25419 (origin
25420 (method url-fetch)
25421 (uri (cran-uri "dygraphs" version))
25422 (sha256
25423 (base32
25424 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
25425 (properties `((upstream-name . "dygraphs")))
25426 (build-system r-build-system)
25427 (arguments
25428 `(#:modules ((guix build utils)
25429 (guix build r-build-system)
25430 (srfi srfi-1)
25431 (ice-9 popen))
25432 #:phases
25433 (modify-phases %standard-phases
25434 (add-after 'unpack 'process-javascript
25435 (lambda* (#:key inputs #:allow-other-keys)
25436 (with-directory-excursion "inst/htmlwidgets/lib/"
25437 (call-with-values
25438 (lambda ()
25439 (unzip2
25440 `(("dygraphs/dygraph-combined-dev.js"
25441 "dygraph-combined.js")
25442 (,(assoc-ref inputs "js-jquery")
25443 "jquery/jquery.min.js")
25444 (,(assoc-ref inputs "js-fquarter")
25445 "fquarter/moment-fquarter.min.js"))))
25446 (lambda (sources targets)
25447 (for-each (lambda (source target)
25448 (format #t "Processing ~a --> ~a~%"
25449 source target)
25450 (let ((minified (open-pipe* OPEN_READ "uglifyjs" source)))
25451 (call-with-output-file target
25452 (lambda (port)
25453 (dump-port minified port)))))
25454 sources targets))))
25455 #t)))))
25456 (native-inputs
25457 `(("uglifyjs" ,node-uglify-js)
25458 ;; They actually use version 1.11.1, but this more recent version
25459 ;; should be just fine.
25460 ("js-jquery"
25461 ,(origin
25462 (method url-fetch)
25463 (uri "https://code.jquery.com/jquery-1.12.4.js")
25464 (sha256
25465 (base32
25466 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
25467 ("js-fquarter"
25468 ,(origin
25469 (method url-fetch)
25470 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
25471 "moment-fquarter/1.0.1/moment-fquarter.js"))
25472 (sha256
25473 (base32
25474 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
25475 (propagated-inputs
25476 (list r-htmltools r-htmlwidgets r-magrittr r-xts r-zoo))
25477 (home-page "https://github.com/rstudio/dygraphs")
25478 (synopsis "Interface to Dygraphs interactive time series charting library")
25479 (description
25480 "This package provides an R interface to the dygraphs JavaScript charting
25481 library (a copy of which is included in the package). It provides rich
25482 facilities for charting time-series data in R, including highly configurable
25483 series- and axis-display and interactive features like zoom/pan and
25484 series/point highlighting.")
25485 (license license:expat)))
25486
25487 (define-public r-shinystan
25488 (package
25489 (name "r-shinystan")
25490 (version "2.6.0")
25491 (source
25492 (origin
25493 (method url-fetch)
25494 (uri (cran-uri "shinystan" version))
25495 (sha256
25496 (base32
25497 "0afm703zriyqprz1zvypir80lq2ylfff3qvj5i7p9n365mm8b150"))))
25498 (properties `((upstream-name . "shinystan")))
25499 (build-system r-build-system)
25500 (propagated-inputs
25501 (list r-bayesplot
25502 r-colourpicker
25503 r-dt
25504 r-dygraphs
25505 r-ggplot2
25506 r-gridextra
25507 r-gtools
25508 r-markdown
25509 r-reshape2
25510 r-rstan
25511 r-shiny
25512 r-shinyjs
25513 r-shinythemes
25514 r-threejs
25515 r-xtable
25516 r-xts))
25517 (home-page "https://mc-stan.org/")
25518 (synopsis "Interactive visual and numerical analysis for Bayesian models")
25519 (description
25520 "This package provides a graphical user interface for interactive
25521 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
25522 for analyzing a posterior sample. The interface is powered by the Shiny web
25523 application framework and works with the output of MCMC programs written in
25524 any programming language (and has extended functionality for Stan models fit
25525 using the @code{rstan} and @code{rstanarm} packages).")
25526 (license license:gpl3+)))
25527
25528 (define-public r-rstantools
25529 (package
25530 (name "r-rstantools")
25531 (version "2.2.0")
25532 (source
25533 (origin
25534 (method url-fetch)
25535 (uri (cran-uri "rstantools" version))
25536 (sha256
25537 (base32
25538 "1dsfgi02hps878n3vimfdbzpm4gr5n3ccrmnc61ncrqcp6p0p0fb"))))
25539 (properties `((upstream-name . "rstantools")))
25540 (build-system r-build-system)
25541 (inputs (list pandoc))
25542 (propagated-inputs
25543 (list r-desc r-rcpp r-rcppparallel))
25544 (native-inputs
25545 (list r-knitr))
25546 (home-page "https://mc-stan.org/rstantools/")
25547 (synopsis "Tools for developing R packages interfacing with Stan")
25548 (description
25549 "This package provides various tools for developers of R packages
25550 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
25551 up the required package structure, S3 generics and default methods to unify
25552 function naming across Stan-based R packages, and vignettes with
25553 recommendations for developers.")
25554 (license license:gpl3+)))
25555
25556 (define-public r-loo
25557 (package
25558 (name "r-loo")
25559 (version "2.5.1")
25560 (source
25561 (origin
25562 (method url-fetch)
25563 (uri (cran-uri "loo" version))
25564 (sha256
25565 (base32 "1wa5hxk7lkr88mway6b7xd5arrkkl2ldl9rf0v1nqwp8lia2ysl6"))))
25566 (properties `((upstream-name . "loo")))
25567 (build-system r-build-system)
25568 (inputs
25569 (list pandoc))
25570 (propagated-inputs
25571 (list r-checkmate r-matrixstats))
25572 (native-inputs
25573 (list r-knitr))
25574 (home-page "https://mc-stan.org/loo/")
25575 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
25576 (description
25577 "This package provides an implementation of efficient approximate
25578 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
25579 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
25580 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
25581 procedure for regularizing importance weights. As a byproduct of the
25582 calculations, we also obtain approximate standard errors for estimated
25583 predictive errors and for the comparison of predictive errors between models.
25584 The package also provides methods for using stacking and other model weighting
25585 techniques to average Bayesian predictive distributions.")
25586 (license license:gpl3+)))
25587
25588 (define-public r-rstan
25589 (package
25590 (name "r-rstan")
25591 (version "2.21.5")
25592 (source
25593 (origin
25594 (method url-fetch)
25595 (uri (cran-uri "rstan" version))
25596 (sha256
25597 (base32
25598 "1smr5cjrqvpdnkmjpjp73p96sy581x15mwrn4fqd1p4d5mbgxr46"))))
25599 (properties `((upstream-name . "rstan")))
25600 (build-system r-build-system)
25601 (arguments
25602 `(#:phases
25603 (modify-phases %standard-phases
25604 (add-before 'install 'set-timezone
25605 ;; This package is picky about timezones.
25606 (lambda* (#:key inputs #:allow-other-keys)
25607 (setenv "TZ" "UTC+1")
25608 (setenv "TZDIR"
25609 (search-input-directory inputs
25610 "share/zoneinfo")))))))
25611 (native-inputs
25612 (list tzdata-for-tests pandoc r-knitr))
25613 (propagated-inputs
25614 (list r-bh
25615 r-ggplot2
25616 r-gridextra
25617 r-inline
25618 r-loo
25619 r-pkgbuild
25620 r-rcpp
25621 r-rcppeigen
25622 r-rcppparallel
25623 r-stanheaders))
25624 (home-page "https://discourse.mc-stan.org/")
25625 (synopsis "R interface to Stan")
25626 (description
25627 "User-facing R functions are provided to parse, compile, test, estimate,
25628 and analyze Stan models by accessing the header-only Stan library provided by
25629 the StanHeaders package. The Stan project develops a probabilistic
25630 programming language that implements full Bayesian statistical inference via
25631 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
25632 approximation, and (optionally penalized) maximum likelihood estimation via
25633 optimization. In all three cases, automatic differentiation is used to
25634 quickly and accurately evaluate gradients without burdening the user with the
25635 need to derive the partial derivatives.")
25636 (license license:gpl3+)))
25637
25638 (define-public r-rstanarm
25639 (package
25640 (name "r-rstanarm")
25641 (version "2.21.3")
25642 (source
25643 (origin
25644 (method url-fetch)
25645 (uri (cran-uri "rstanarm" version))
25646 (sha256
25647 (base32
25648 "19rj396q84maxnd9d2xcd5rblg3310xn7sqbd6k18kwf3dvd7wp9"))))
25649 (properties `((upstream-name . "rstanarm")))
25650 (build-system r-build-system)
25651 (inputs
25652 (list pandoc))
25653 (propagated-inputs
25654 (list r-bayesplot
25655 r-bh
25656 r-ggplot2
25657 r-lme4
25658 r-loo
25659 r-matrix
25660 r-nlme
25661 r-rcpp
25662 r-rcppeigen
25663 r-rcppparallel
25664 r-rstan
25665 r-rstantools
25666 r-shinystan
25667 r-stanheaders
25668 r-survival))
25669 (native-inputs
25670 (list r-knitr))
25671 (home-page "https://mc-stan.org/rstanarm/")
25672 (synopsis "Bayesian applied regression modeling via Stan")
25673 (description
25674 "This package estimates previously compiled regression models using the
25675 @code{rstan} package, which provides the R interface to the Stan C++ library
25676 for Bayesian estimation. Users specify models via the customary R syntax with
25677 a formula and @code{data.frame} plus some additional arguments for priors.")
25678 (license license:gpl3+)))
25679
25680 (define-public r-kendall
25681 (package
25682 (name "r-kendall")
25683 (version "2.2.1")
25684 (source
25685 (origin
25686 (method url-fetch)
25687 (uri (cran-uri "Kendall" version))
25688 (sha256
25689 (base32
25690 "1xmk95l4i3kj9jn0xh1chi2rj322k29jq14ra5pa7316gwf9vx2m"))))
25691 (properties `((upstream-name . "Kendall")))
25692 (build-system r-build-system)
25693 (propagated-inputs
25694 (list r-boot))
25695 (native-inputs
25696 (list gfortran))
25697 (home-page "https://cran.r-project.org/web/packages/Kendall/")
25698 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
25699 (description
25700 "This package computes the Kendall rank correlation and Mann-Kendall
25701 trend test.")
25702 (license license:gpl2+)))
25703
25704 (define-public r-keyring
25705 (package
25706 (name "r-keyring")
25707 (version "1.3.0")
25708 (source
25709 (origin
25710 (method url-fetch)
25711 (uri (cran-uri "keyring" version))
25712 (sha256
25713 (base32
25714 "1j8l6nmh4dr70kwybiais8yh687fdwrj134xynq68igw1b1rm8ga"))))
25715 (properties `((upstream-name . "keyring")))
25716 (build-system r-build-system)
25717 (propagated-inputs
25718 (list r-askpass
25719 r-assertthat
25720 r-filelock
25721 r-openssl
25722 r-r6
25723 r-rappdirs
25724 r-sodium
25725 r-yaml))
25726 (native-inputs (list pkg-config))
25727 (home-page "https://github.com/r-lib/keyring")
25728 (synopsis "Access the system credential store from R")
25729 (description
25730 "This package provides a platform-independent API to access the operating
25731 system's credential store. It currently supports Keychain on macOS,
25732 Credential Store on Windows, the Secret Service API on GNU/Linux, and a
25733 simple, platform independent store implemented with environment variables.
25734 Additional storage back-ends can be added easily.")
25735 (license license:expat)))
25736
25737 (define-public r-zyp
25738 (package
25739 (name "r-zyp")
25740 (version "0.10-1.1")
25741 (source
25742 (origin
25743 (method url-fetch)
25744 (uri (cran-uri "zyp" version))
25745 (sha256
25746 (base32
25747 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
25748 (properties `((upstream-name . "zyp")))
25749 (build-system r-build-system)
25750 (propagated-inputs
25751 (list r-kendall))
25752 (home-page "https://cran.r-project.org/web/packages/zyp/")
25753 (synopsis "Zhang + Yue-Pilon Trends Package")
25754 (description
25755 "This package contains an efficient implementation of Sen's slope
25756 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
25757 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
25758 climate data.")
25759 (license license:lgpl2.1)))
25760
25761 (define-public r-rlinsolve
25762 (package
25763 (name "r-rlinsolve")
25764 (version "0.3.2")
25765 (source
25766 (origin
25767 (method url-fetch)
25768 (uri (cran-uri "Rlinsolve" version))
25769 (sha256
25770 (base32
25771 "1xv500n1480qyakw0isanw1s5ywykhc207hqja4804s5s2m8zfjw"))))
25772 (properties `((upstream-name . "Rlinsolve")))
25773 (build-system r-build-system)
25774 (propagated-inputs
25775 (list r-matrix r-rcpp r-rcpparmadillo r-rdpack))
25776 (home-page "https://cran.r-project.org/web/packages/Rlinsolve/")
25777 (synopsis "Iterative solvers for (sparse) linear system of equations")
25778 (description
25779 "Solving a system of linear equations is one of the most fundamental
25780 computational problems for many fields of mathematical studies, such as
25781 regression problems from statistics or numerical partial differential
25782 equations. This package provides basic stationary iterative solvers such as
25783 Jacobi, Gauss-Seidel, Successive Over-Relaxation and SSOR methods.
25784 Nonstationary, also known as Krylov subspace methods are also provided.
25785 Sparse matrix computation is also supported in that solving large and sparse
25786 linear systems can be manageable using the @code{Matrix} package along with
25787 @code{RcppArmadillo}.")
25788 (license license:gpl3+)))
25789
25790 (define-public r-zvcv
25791 (package
25792 (name "r-zvcv")
25793 (version "2.1.1")
25794 (source
25795 (origin
25796 (method url-fetch)
25797 (uri (cran-uri "ZVCV" version))
25798 (sha256
25799 (base32
25800 "0gc76j9i8fkm2v638nyzzb1qxl4zmapbspkkaffb8gi5qyjja448"))))
25801 (properties `((upstream-name . "ZVCV")))
25802 (build-system r-build-system)
25803 (propagated-inputs
25804 (list r-abind
25805 r-bh
25806 r-dplyr
25807 r-glmnet
25808 r-magrittr
25809 r-mvtnorm
25810 r-rcpp
25811 r-rcpparmadillo
25812 r-rlinsolve))
25813 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
25814 (synopsis "Zero-Variance Control Variates")
25815 (description
25816 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
25817 to reduce the variance of Monte Carlo estimators of expectations using the
25818 derivatives of the log target. Once the derivatives are available, the only
25819 additional computational effort is in solving a linear regression problem.
25820 This method has been extended to higher dimensions using regularisation. This
25821 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
25822 samples, derivatives and function evaluations are available. Additional
25823 functions for applying ZV-CV to two estimators for the normalising constant of
25824 the posterior distribution in Bayesian statistics are also supplied.")
25825 (license license:gpl2+)))
25826
25827 (define-public r-ztype
25828 (package
25829 (name "r-ztype")
25830 (version "0.1.0")
25831 (source
25832 (origin
25833 (method url-fetch)
25834 (uri (cran-uri "ztype" version))
25835 (sha256
25836 (base32
25837 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
25838 (properties `((upstream-name . "ztype")))
25839 (build-system r-build-system)
25840 (propagated-inputs
25841 (list r-assertthat
25842 r-dplyr
25843 r-ggplot2
25844 r-lubridate
25845 r-magrittr
25846 r-rvest
25847 r-stringr))
25848 (home-page "https://cran.r-project.org/web/packages/ztype/")
25849 (synopsis "Run a Ztype game loaded with R functions")
25850 (description
25851 "How fast can you type R functions on your keyboard? Find out by running
25852 a @code{zty.pe} game: export R functions as instructions to type to destroy
25853 opponents' vessels.")
25854 (license license:gpl3)))
25855
25856 (define-public r-zseq
25857 (package
25858 (name "r-zseq")
25859 (version "0.2.0")
25860 (source
25861 (origin
25862 (method url-fetch)
25863 (uri (cran-uri "Zseq" version))
25864 (sha256
25865 (base32
25866 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
25867 (properties `((upstream-name . "Zseq")))
25868 (build-system r-build-system)
25869 (propagated-inputs
25870 (list r-gmp))
25871 (home-page "https://cran.r-project.org/web/packages/Zseq/")
25872 (synopsis "Integer sequence generator")
25873 (description
25874 "This package generates well-known integer sequences. The @code{gmp}
25875 package is adopted for computing with arbitrarily large numbers. Every
25876 function has a hyperlink to its corresponding item in the @dfn{On-Line
25877 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
25878 (license license:gpl3+)))
25879
25880 (define-public r-isoband
25881 (package
25882 (name "r-isoband")
25883 (version "0.2.5")
25884 (source
25885 (origin
25886 (method url-fetch)
25887 (uri (cran-uri "isoband" version))
25888 (sha256
25889 (base32
25890 "19bbi0n0kz33xdgmdprcmc6raphd1hcm1w1brc16z5phcsh3zxa6"))))
25891 (properties `((upstream-name . "isoband")))
25892 (build-system r-build-system)
25893 (native-inputs
25894 (list r-knitr))
25895 (home-page "https://github.com/wilkelab/isoband")
25896 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
25897 (description
25898 "This package provides a fast C++ implementation to generate contour
25899 lines (isolines) and contour polygons (isobands) from regularly spaced grids
25900 containing elevation data.")
25901 (license license:expat)))
25902
25903 (define-public r-ppcor
25904 (package
25905 (name "r-ppcor")
25906 (version "1.1")
25907 (source
25908 (origin
25909 (method url-fetch)
25910 (uri (cran-uri "ppcor" version))
25911 (sha256
25912 (base32
25913 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
25914 (properties `((upstream-name . "ppcor")))
25915 (build-system r-build-system)
25916 (propagated-inputs
25917 (list r-mass))
25918 (home-page "https://cran.r-project.org/web/packages/ppcor/")
25919 (synopsis "Partial and semi-partial correlation")
25920 (description
25921 "This package provides users not only with a function to readily
25922 calculate the higher-order partial and semi-partial correlations but also with
25923 statistics and p-values of the correlation coefficients.")
25924 (license license:gpl2)))
25925
25926 (define-public r-hrbrthemes
25927 (package
25928 (name "r-hrbrthemes")
25929 (version "0.8.0")
25930 (source
25931 (origin
25932 (method url-fetch)
25933 (uri (cran-uri "hrbrthemes" version))
25934 (sha256
25935 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
25936 (properties `((upstream-name . "hrbrthemes")))
25937 (build-system r-build-system)
25938 (propagated-inputs
25939 (list r-extrafont
25940 r-gdtools
25941 r-ggplot2
25942 r-htmltools
25943 r-knitr
25944 r-magrittr
25945 r-rmarkdown
25946 r-scales))
25947 (native-inputs
25948 (list r-knitr))
25949 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
25950 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
25951 (description
25952 "This package provides a compilation of extra @code{ggplot2} themes,
25953 scales and utilities, including a spell check function for plot label fields
25954 and an overall emphasis on typography.")
25955 (license license:expat)))
25956
25957 (define-public r-crochet
25958 (package
25959 (name "r-crochet")
25960 (version "2.3.0")
25961 (source
25962 (origin
25963 (method url-fetch)
25964 (uri (cran-uri "crochet" version))
25965 (sha256
25966 (base32
25967 "0zvjaf6cv0nrjb4l4llkr0mmgha7ig31p4ri2rlnqyjlxi5l8hyq"))))
25968 (build-system r-build-system)
25969 (native-inputs
25970 (list r-knitr))
25971 (home-page "https://github.com/agrueneberg/crochet")
25972 (synopsis "Implementation Helper for Matrix-Like Types")
25973 (description
25974 "Functions to help implement the extraction / subsetting / indexing
25975 function @code{[} and replacement function @code{[<-} of custom matrix-like
25976 types (based on S3, S4, etc.), modeled as closely to the base matrix class
25977 as possible (with tests to prove it).")
25978 (license license:expat)))
25979
25980 (define-public r-boa
25981 (package
25982 (name "r-boa")
25983 (version "1.1.8-2")
25984 (source
25985 (origin
25986 (method url-fetch)
25987 (uri (cran-uri "boa" version))
25988 (sha256
25989 (base32
25990 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
25991 (properties `((upstream-name . "boa")))
25992 (build-system r-build-system)
25993 (home-page "https://www.jstatsoft.org/v21/i11")
25994 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
25995 (description
25996 "This package provides a menu-driven program and library of functions for
25997 carrying out convergence diagnostics and statistical and graphical analysis of
25998 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
25999 (license license:gpl2+)))
26000
26001 (define-public r-httpcode
26002 (package
26003 (name "r-httpcode")
26004 (version "0.3.0")
26005 (source (origin
26006 (method url-fetch)
26007 (uri (cran-uri "httpcode" version))
26008 (sha256
26009 (base32
26010 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
26011 (build-system r-build-system)
26012 (home-page "https://github.com/sckott/httpcode")
26013 (synopsis "HTTP status code helper")
26014 (description "@code{httpcode} provides functionality for finding and
26015 explaining the meaning of @code{HTTP} status codes. Functions are included for
26016 searching for codes by full or partial number, by message, and to get
26017 appropriate dog and cat images for many status codes.")
26018 (license license:expat)))
26019
26020 (define-public r-latex2exp
26021 (package
26022 (name "r-latex2exp")
26023 (version "0.9.4")
26024 (source (origin
26025 (method url-fetch)
26026 (uri (cran-uri "latex2exp" version))
26027 (sha256
26028 (base32
26029 "0zbbrbgg524lpm733j8qsqk5ssg75c51s6dgzb18c6fk8byrx945"))))
26030 (build-system r-build-system)
26031 (propagated-inputs
26032 (list r-stringr r-magrittr))
26033 (native-inputs
26034 (list r-knitr))
26035 (home-page "https://github.com/stefano-meschiari/latex2exp/")
26036 (synopsis "Use LaTeX expressions in plots")
26037 (description "@code{latex2exp} parses and converts LaTeX math formulas to
26038 R's plotmath expressions, used to enter mathematical formulas and symbols to be
26039 rendered as text, axis labels, etc. throughout R's plotting system.")
26040 (license license:expat)))
26041
26042 (define-public r-oai
26043 (package
26044 (name "r-oai")
26045 (version "0.3.2")
26046 (source (origin
26047 (method url-fetch)
26048 (uri (cran-uri "oai" version))
26049 (sha256
26050 (base32
26051 "1zcbcxhw692s0y6izvwazyzhgx0iwsxsbcan2nk0mb7n11p7bypb"))))
26052 (build-system r-build-system)
26053 (propagated-inputs
26054 (list r-xml2 r-httr r-plyr r-stringr r-tibble))
26055 (native-inputs
26056 (list r-knitr))
26057 (home-page "https://github.com/ropensci/oai/")
26058 (synopsis "General purpose OAI-PMH services client")
26059 (description "@code{oai} provides a general purpose client to work with
26060 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
26061 service. Functions are provided to work with the OAI-PMH verbs:
26062 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
26063 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
26064 (license license:expat)))
26065
26066 (define-public r-argon2
26067 (package
26068 (name "r-argon2")
26069 (version "0.4-0")
26070 (source
26071 (origin
26072 (method url-fetch)
26073 (uri (cran-uri "argon2" version))
26074 (sha256
26075 (base32
26076 "09hzl0wz0lw2v7g64rdv0lij2hq36zl37a6rmxwvinmjdzijcsyw"))))
26077 (properties `((upstream-name . "argon2")))
26078 (build-system r-build-system)
26079 (home-page "https://github.com/wrathematics/argon2")
26080 (synopsis "Secure password hashing based on the argon2 algorithm")
26081 (description
26082 "This package provides utilities for secure password hashing via the
26083 argon2 algorithm.")
26084 (license license:bsd-2)))
26085
26086 (define-public r-getpass
26087 (package
26088 (name "r-getpass")
26089 (version "0.2-2")
26090 (source
26091 (origin
26092 (method url-fetch)
26093 (uri (cran-uri "getPass" version))
26094 (sha256
26095 (base32
26096 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
26097 (properties `((upstream-name . "getPass")))
26098 (build-system r-build-system)
26099 (propagated-inputs
26100 (list r-rstudioapi))
26101 (home-page "https://github.com/wrathematics/getPass")
26102 (synopsis "Masked user input")
26103 (description
26104 "This package provides a micro-package for reading \"passwords\", i.e.
26105 reading user input with masking, so that the input is not displayed as it is
26106 typed. Currently, RStudio, the command line (every OS), and any platform
26107 where tcltk is present are supported.")
26108 (license license:bsd-2)))
26109
26110 (define-public r-remoter
26111 (package
26112 (name "r-remoter")
26113 (version "0.4-0")
26114 (source
26115 (origin
26116 (method url-fetch)
26117 (uri (cran-uri "remoter" version))
26118 (sha256
26119 (base32
26120 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
26121 (properties `((upstream-name . "remoter")))
26122 (build-system r-build-system)
26123 (propagated-inputs
26124 (list r-argon2 r-getpass r-pbdzmq r-png))
26125 (home-page "https://github.com/RBigData/remoter")
26126 (synopsis "Control a remote R session from a local one")
26127 (description
26128 "This package provides a set of utilities for client/server computing
26129 with R, controlling a remote R session (the server) from a local one (the
26130 client).")
26131 (license license:bsd-2)))
26132
26133 (define-public r-asd
26134 (package
26135 (name "r-asd")
26136 (version "2.2")
26137 (source
26138 (origin
26139 (method url-fetch)
26140 (uri (cran-uri "asd" version))
26141 (sha256
26142 (base32
26143 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
26144 (properties `((upstream-name . "asd")))
26145 (build-system r-build-system)
26146 (propagated-inputs
26147 (list r-mvtnorm))
26148 (home-page "https://cran.r-project.org/web/packages/asd")
26149 (synopsis "Simulations for Adaptive Seamless Designs")
26150 (description
26151 "This package provdes means to run simulations for adaptive seamless
26152 designs with and without early outcomes for treatment selection and
26153 subpopulation type designs.")
26154 (license license:gpl3)))
26155
26156 (define-public r-nbconvertr
26157 (package
26158 (name "r-nbconvertr")
26159 (version "1.3.2")
26160 (source
26161 (origin
26162 (method url-fetch)
26163 (uri (cran-uri "nbconvertR" version))
26164 (sha256
26165 (base32
26166 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
26167 (properties `((upstream-name . "nbconvertR")))
26168 (build-system r-build-system)
26169 (inputs
26170 (list python-nbconvert pandoc))
26171 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
26172 (synopsis "Vignette engine wrapping Jupyter notebooks")
26173 (description
26174 "This package calls the Jupyter script @code{nbconvert} to create
26175 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
26176 containing rich text, code, and its output. Code cells can be edited and
26177 evaluated interactively.")
26178 (license license:gpl3)))
26179
26180 (define-public r-bridgesampling
26181 (package
26182 (name "r-bridgesampling")
26183 (version "1.1-2")
26184 (source
26185 (origin
26186 (method url-fetch)
26187 (uri (cran-uri "bridgesampling" version))
26188 (sha256
26189 (base32
26190 "0sry1xwiv4y52k44hq6z8y2kysp5kxgl4dix3m94svg3ladd7v2l"))))
26191 (properties
26192 `((upstream-name . "bridgesampling")))
26193 (build-system r-build-system)
26194 (propagated-inputs
26195 (list r-brobdingnag
26196 r-coda
26197 r-matrix
26198 r-mvtnorm
26199 r-scales
26200 r-stringr))
26201 (native-inputs
26202 (list r-knitr))
26203 (home-page "https://github.com/quentingronau/bridgesampling")
26204 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
26205 (description
26206 "This package provides functions for estimating marginal likelihoods,
26207 Bayes factors, posterior model probabilities, and normalizing constants in
26208 general, via different versions of bridge sampling.")
26209 (license license:gpl2+)))
26210
26211 (define-public r-tea
26212 (package
26213 (name "r-tea")
26214 (version "1.1")
26215 (source
26216 (origin
26217 (method url-fetch)
26218 (uri (cran-uri "tea" version))
26219 (sha256
26220 (base32
26221 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
26222 (properties
26223 `((upstream-name . "tea")))
26224 (build-system r-build-system)
26225 (propagated-inputs
26226 (list r-matrix))
26227 (home-page "https://cran.r-project.org/web/packages/tea/")
26228 (synopsis "Threshold estimation approaches")
26229 (description
26230 "This package provides different approaches for selecting the threshold
26231 in generalized Pareto distributions. Most of them are based on minimizing the
26232 AMSE-criterion or at least by reducing the bias of the assumed GPD-model.
26233 Others are heuristically motivated by searching for stable sample paths, i.e.
26234 a nearly constant region of the tail index estimator with respect to k, which
26235 is the number of data in the tail. The third class is motivated by graphical
26236 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
26237 is also implemented here.")
26238 (license license:gpl3)))
26239
26240 (define-public r-awsmethods
26241 (package
26242 (name "r-awsmethods")
26243 (version "1.1-1")
26244 (source
26245 (origin
26246 (method url-fetch)
26247 (uri (cran-uri "awsMethods" version))
26248 (sha256
26249 (base32
26250 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
26251 (properties
26252 `((upstream-name . "awsMethods")))
26253 (build-system r-build-system)
26254 (home-page "http://www.wias-berlin.de/software/imaging/")
26255 (synopsis "Class and methods definitions")
26256 (description
26257 "This package defines the generic method @code{extract} and provides
26258 @code{openMP} support as needed in several packages like
26259 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
26260 (license license:gpl2+)))
26261
26262 (define-public r-aws
26263 (package
26264 (name "r-aws")
26265 (version "2.5-1")
26266 (source
26267 (origin
26268 (method url-fetch)
26269 (uri (cran-uri "aws" version))
26270 (sha256
26271 (base32
26272 "1fhm87iax6bkvd4vszvjbcqw3b2drs11rjxr7zf2w4sgc72svaz8"))))
26273 (properties
26274 `((upstream-name . "aws")))
26275 (build-system r-build-system)
26276 (propagated-inputs
26277 (list r-awsmethods r-gsl))
26278 (native-inputs
26279 (list gfortran))
26280 (home-page "https://cran.r-project.org/web/packages/aws/")
26281 (synopsis "Adaptive weights smoothing")
26282 (description
26283 "This package provides a collection of R-functions implementing adaptive
26284 smoothing procedures in 1D, 2D and 3D. This includes the
26285 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
26286 Confidence Intervals} (ICI), variational approaches, and a non-local means
26287 filter.")
26288 (license license:gpl2+)))
26289
26290 (define-public r-sgloptim
26291 (package
26292 (name "r-sgloptim")
26293 (version "1.3.8")
26294 (source
26295 (origin
26296 (method url-fetch)
26297 (uri (cran-uri "sglOptim" version))
26298 (sha256
26299 (base32
26300 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
26301 (properties
26302 `((upstream-name . "sglOptim")))
26303 (build-system r-build-system)
26304 (propagated-inputs
26305 (list r-bh
26306 r-doparallel
26307 r-foreach
26308 r-matrix
26309 r-rcpp
26310 r-rcpparmadillo
26311 r-rcppprogress))
26312 (native-inputs
26313 (list r-knitr))
26314 (home-page "https://github.com/nielsrhansen/sglOptim")
26315 (synopsis "Generic sparse group Lasso solver")
26316 (description
26317 "This package provides a fast generic solver for sparse group lasso
26318 optimization problems. The loss (objective) function must be defined in a C++
26319 module. The optimization problem is solved using a coordinate gradient
26320 descent algorithm. Convergence of the algorithm is established and the
26321 algorithm is applicable to a broad class of loss functions. Use of parallel
26322 computing for cross validation and subsampling is supported through the
26323 @code{foreach} and @code{doParallel} packages.")
26324 (license license:gpl2+)))
26325
26326 (define-public r-grouped
26327 (package
26328 (name "r-grouped")
26329 (version "0.6-0")
26330 (source
26331 (origin
26332 (method url-fetch)
26333 (uri (cran-uri "grouped" version))
26334 (sha256
26335 (base32
26336 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
26337 (properties
26338 `((upstream-name . "grouped")))
26339 (build-system r-build-system)
26340 (propagated-inputs
26341 (list r-mass))
26342 (home-page "https://cran.r-project.org/web/packages/grouped/")
26343 (synopsis "Regression analysis of grouped and coarse data")
26344 (description
26345 "This package provides regression models for grouped and coarse data,
26346 under the coarsened at random assumption.")
26347 (license license:gpl2+)))
26348
26349 (define-public r-stam
26350 (package
26351 (name "r-stam")
26352 (version "0.0-1")
26353 (source
26354 (origin
26355 (method url-fetch)
26356 (uri (cran-uri "stam" version))
26357 (sha256
26358 (base32
26359 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
26360 (properties
26361 `((upstream-name . "stam")))
26362 (build-system r-build-system)
26363 (propagated-inputs
26364 (list r-np r-sp))
26365 (home-page "https://cran.r-project.org/web/packages/stam")
26366 (synopsis "Spatio-temporal analysis and modelling")
26367 (description
26368 "This package provides various methods to conduct Spatio-Temporal
26369 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
26370 Inferred Spatio-Temporal Modelling.")
26371 (license license:gpl2+)))
26372
26373 (define-public r-dcv
26374 (package
26375 (name "r-dcv")
26376 (version "0.1.1")
26377 (source
26378 (origin
26379 (method url-fetch)
26380 (uri (cran-uri "dcv" version))
26381 (sha256
26382 (base32
26383 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
26384 (properties
26385 `((upstream-name . "dcv")))
26386 (build-system r-build-system)
26387 (propagated-inputs
26388 (list r-lmtest))
26389 (home-page "https://cran.r-project.org/web/packages/dcv/")
26390 (synopsis "Conventional cross-validation statistics for climate-growth model")
26391 (description
26392 "This package performs several conventional cross-validation statistical
26393 methods for climate-growth model in the climate reconstruction from tree
26394 rings, including Sign Test statistic, Reduction of Error statistic, Product
26395 Mean Test, Durbin-Watson statistic etc.")
26396 (license license:gpl2)))
26397
26398 (define-public r-rcdd
26399 (package
26400 (name "r-rcdd")
26401 (version "1.5")
26402 (source
26403 (origin
26404 (method url-fetch)
26405 (uri (cran-uri "rcdd" version))
26406 (sha256
26407 (base32
26408 "0zxx0qvv26ba30jkm8mvca4h59rqklay4jwazpcw7h9dzp4189jr"))))
26409 (properties
26410 `((upstream-name . "rcdd")))
26411 (build-system r-build-system)
26412 (inputs
26413 (list gmp))
26414 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
26415 (synopsis "Computational geometry")
26416 (description
26417 "This package converts back and forth between two representations of a
26418 convex polytope: as solution of a set of linear equalities and inequalities
26419 and as convex hull of set of points and rays. Also does linear programming
26420 and redundant generator elimination. All functions can use exact
26421 infinite-precision rational arithmetic.")
26422 (license license:gpl2)))
26423
26424 (define-public r-rxnat
26425 (package
26426 (name "r-rxnat")
26427 (version "1.0.15")
26428 (source
26429 (origin
26430 (method url-fetch)
26431 (uri (cran-uri "Rxnat" version))
26432 (sha256
26433 (base32
26434 "0siylypjd8cgcmr2c443w8krg8sgr5gz4zapbinanp8vsfzivdv2"))))
26435 (properties
26436 `((upstream-name . "Rxnat")))
26437 (build-system r-build-system)
26438 (propagated-inputs
26439 (list r-httr r-rcurl r-tibble))
26440 (native-inputs
26441 (list r-knitr))
26442 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
26443 (synopsis "Queries and extracts images from neuroimaging datasets")
26444 (description
26445 "This package allows communication with the Extensible Neuroimaging
26446 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
26447 download images.")
26448 (license license:gpl2)))
26449
26450 (define-public r-rserve
26451 (package
26452 (name "r-rserve")
26453 (version "1.8-6")
26454 (source
26455 (origin
26456 (method url-fetch)
26457 (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
26458 version ".tar.gz"))
26459 (sha256
26460 (base32
26461 "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
26462 (build-system r-build-system)
26463 (arguments
26464 `(#:phases
26465 (modify-phases %standard-phases
26466 (add-before 'install 'install-server-binary
26467 ;; Makevars tries to install to R's store directory.
26468 (lambda* (#:key outputs #:allow-other-keys)
26469 (let* ((out (assoc-ref outputs "out"))
26470 (bin (string-append out "/bin")))
26471 (substitute* "src/Makevars.in"
26472 (("\\$\\(R_HOME\\)") out))
26473 (mkdir-p bin)))))))
26474 (propagated-inputs
26475 (list r-checkmate
26476 r-mime
26477 r-jsonlite
26478 r-knitr
26479 r-r6
26480 r-rcpp
26481 r-uuid))
26482 (inputs
26483 (list openssl zlib))
26484 (home-page "https://github.com/s-u/Rserve")
26485 (synopsis
26486 "Server providing access to R from many languages and systems")
26487 (description
26488 "Rserve acts as a socket server (TCP/IP or local sockets) which allows
26489 binary requests to be sent to R. Every connection has a separate workspace
26490 and working directory. Client-side implementations are available for popular
26491 languages such as C/C++ and Java, allowing any application to use facilities
26492 of R without the need of linking to R code. Rserve supports remote
26493 connection, user authentication and file transfer. A simple R client is
26494 included in this package as well.")
26495 (license license:gpl2)))
26496
26497 (define-public r-gamm4
26498 (package
26499 (name "r-gamm4")
26500 (version "0.2-6")
26501 (source
26502 (origin
26503 (method url-fetch)
26504 (uri (cran-uri "gamm4" version))
26505 (sha256
26506 (base32
26507 "128c725y9s07c1m9cvd9hgi9hldrymcs5divd8pw7bdjh9jvdiap"))))
26508 (properties `((upstream-name . "gamm4")))
26509 (build-system r-build-system)
26510 (propagated-inputs
26511 (list r-lme4 r-matrix r-mgcv))
26512 (home-page "https://cran.r-project.org/web/packages/gamm4/")
26513 (synopsis "Generalized additive mixed models using mgcv and lme4")
26514 (description
26515 "Estimate generalized additive mixed models via a version of function
26516 @code{gamm} from the @code{mgcv} package, using the @code{lme4} packagefor
26517 estimation.")
26518 (license license:gpl2+)))
26519
26520 (define-public r-optimx
26521 (package
26522 (name "r-optimx")
26523 (version "2022-4.30")
26524 (source
26525 (origin
26526 (method url-fetch)
26527 (uri (cran-uri "optimx" version))
26528 (sha256
26529 (base32
26530 "045ls1vl1392ihwln6mngz0zg2w93ym1m607vfrg8v1949x8isgb"))))
26531 (properties `((upstream-name . "optimx")))
26532 (build-system r-build-system)
26533 (propagated-inputs (list r-numderiv))
26534 (native-inputs (list r-knitr))
26535 (home-page "https://cran.r-project.org/web/packages/optimx/")
26536 (synopsis "Expanded replacement and extension of the optim function")
26537 (description
26538 "This package provides a replacement and extension of the @code{optim}
26539 function to call to several function minimization codes in R in a single
26540 statement. These methods handle smooth, possibly box constrained functions of
26541 several or many parameters. Note that the function @code{optimr} was prepared
26542 to simplify the incorporation of minimization codes going forward. This
26543 package also implements some utility codes and some extra solvers, including
26544 safeguarded Newton methods. Many methods previously separate are now included
26545 here.")
26546 (license license:gpl2)))
26547
26548 (define-public r-projpred
26549 (package
26550 (name "r-projpred")
26551 (version "2.1.2")
26552 (source
26553 (origin
26554 (method url-fetch)
26555 (uri (cran-uri "projpred" version))
26556 (sha256
26557 (base32
26558 "1c6gnmknd3vb0fb5h6gd372dk27nzif90b4c1snql49wacg6b2m8"))))
26559 (properties `((upstream-name . "projpred")))
26560 (build-system r-build-system)
26561 (propagated-inputs
26562 (list r-dplyr
26563 r-gamm4
26564 r-ggplot2
26565 r-lme4
26566 r-loo
26567 r-magrittr
26568 r-mgcv
26569 r-mvtnorm
26570 r-rcpp
26571 r-rcpparmadillo
26572 r-rlang
26573 r-rstantools))
26574 (native-inputs (list r-knitr))
26575 (home-page "https://mc-stan.org/projpred/")
26576 (synopsis "Projection predictive feature selection")
26577 (description
26578 "This package performs projection predictive feature selection for
26579 generalized linear models and generalized linear and additive multilevel
26580 models. The package is compatible with the @code{rstanarm} and @code{brms}
26581 packages, but other reference models can also be used. See the package
26582 vignette for more information and examples.")
26583 (license license:gpl3)))
26584
26585 (define-public r-distributional
26586 (package
26587 (name "r-distributional")
26588 (version "0.3.0")
26589 (source
26590 (origin
26591 (method url-fetch)
26592 (uri (cran-uri "distributional" version))
26593 (sha256
26594 (base32
26595 "1mji8xlhwrw8msih5wdpbzwv4g59kly0xkdklhn8yzb18rrnrczs"))))
26596 (properties
26597 `((upstream-name . "distributional")))
26598 (build-system r-build-system)
26599 (propagated-inputs
26600 (list r-digest
26601 r-ellipsis
26602 r-farver
26603 r-generics
26604 r-ggplot2
26605 r-lifecycle
26606 r-numderiv
26607 r-rlang
26608 r-scales
26609 r-vctrs))
26610 (home-page "https://pkg.mitchelloharawild.com/distributional/")
26611 (synopsis "Vectorized probability distributions")
26612 (description
26613 "This package provides vectorized distribution objects with tools for
26614 manipulating, visualizing, and using probability distributions. It was
26615 designed to allow model prediction outputs to return distributions rather than
26616 their parameters, allowing users to directly interact with predictive
26617 distributions in a data-oriented workflow. In addition to providing generic
26618 replacements for p/d/q/r functions, other useful statistics can be computed
26619 including means, variances, intervals, and highest density regions.")
26620 (license license:gpl3)))
26621
26622 (define-public r-posterior
26623 (package
26624 (name "r-posterior")
26625 (version "1.2.1")
26626 (source
26627 (origin
26628 (method url-fetch)
26629 (uri (cran-uri "posterior" version))
26630 (sha256
26631 (base32
26632 "1qdg22l868daqg2axr36szl1m9z0rfpgx8zmv1x1xwm1hmlf0mxp"))))
26633 (properties `((upstream-name . "posterior")))
26634 (build-system r-build-system)
26635 (propagated-inputs
26636 (list r-abind
26637 r-checkmate
26638 r-distributional
26639 r-matrixstats
26640 r-pillar
26641 r-rlang
26642 r-tensora
26643 r-tibble
26644 r-vctrs))
26645 (native-inputs
26646 (list r-knitr))
26647 (home-page "https://mc-stan.org/posterior/")
26648 (synopsis "Tools for working with posterior distributions")
26649 (description
26650 "This package provides useful tools for both users and developers of
26651 packages for fitting Bayesian models or working with output from Bayesian
26652 models. The primary goals of the package are to:
26653
26654 @enumerate
26655 @item Efficiently convert between many different useful formats of
26656 draws (samples) from posterior or prior distributions.
26657
26658 @item Provide consistent methods for operations commonly performed on draws,
26659 for example, subsetting, binding, or mutating draws.
26660
26661 @item Provide various summaries of draws in convenient formats.
26662
26663 @item Provide lightweight implementations of state of the art posterior
26664 inference diagnostics.
26665 @end enumerate
26666 ")
26667 (license license:bsd-3)))
26668
26669 (define-public r-brms
26670 (package
26671 (name "r-brms")
26672 (version "2.17.0")
26673 (source
26674 (origin
26675 (method url-fetch)
26676 (uri (cran-uri "brms" version))
26677 (sha256
26678 (base32
26679 "0wff5rld4kgkk2nbllvm1h4c596igzgd0q7nx1cabgl11fja7r94"))))
26680 (properties `((upstream-name . "brms")))
26681 (build-system r-build-system)
26682 (propagated-inputs
26683 (list r-abind
26684 r-backports
26685 r-bayesplot
26686 r-bridgesampling
26687 r-coda
26688 r-future
26689 r-ggplot2
26690 r-glue
26691 r-loo
26692 r-matrix
26693 r-matrixstats
26694 r-mgcv
26695 r-nleqslv
26696 r-nlme
26697 r-posterior
26698 r-rcpp
26699 r-rstan
26700 r-rstantools
26701 r-shinystan))
26702 (native-inputs (list r-knitr))
26703 (home-page
26704 "https://github.com/paul-buerkner/brms")
26705 (synopsis
26706 "Bayesian Regression Models using 'Stan'")
26707 (description
26708 "Fit Bayesian generalized (non-)linear multivariate multilevel models
26709 using 'Stan' for full Bayesian inference. A wide range of distributions and
26710 link functions are supported, allowing users to fit -- among others -- linear,
26711 robust linear, count data, survival, response times, ordinal, zero-inflated,
26712 hurdle, and even self-defined mixture models all in a multilevel context.
26713 Further modeling options include non-linear and smooth terms, auto-correlation
26714 structures, censored data, meta-analytic standard errors, and quite a few
26715 more. In addition, all parameters of the response distribution can be
26716 predicted in order to perform distributional regression. Prior specifications
26717 are flexible and explicitly encourage users to apply prior distributions that
26718 actually reflect their beliefs. Model fit can easily be assessed and compared
26719 with posterior predictive checks and leave-one-out cross-validation.")
26720 (license license:gpl2)))
26721
26722 (define-public r-mstate
26723 (package
26724 (name "r-mstate")
26725 (version "0.3.2")
26726 (source
26727 (origin
26728 (method url-fetch)
26729 (uri (cran-uri "mstate" version))
26730 (sha256
26731 (base32
26732 "054dzrd5b0xjjjl7862q3aq1jwgrxbkqz7zpvbdirqsld3zksirw"))))
26733 (properties `((upstream-name . "mstate")))
26734 (build-system r-build-system)
26735 (propagated-inputs
26736 (list r-data-table
26737 r-lattice
26738 r-rcolorbrewer
26739 r-rlang
26740 r-survival
26741 r-viridislite))
26742 (native-inputs
26743 (list r-knitr))
26744 (home-page
26745 "https://www.lumc.nl/org/bds/research/medische-statistiek/survival-analysis/")
26746 (synopsis
26747 "Data Preparation, Estimation and Prediction in Multi-State Models")
26748 (description
26749 "Contains functions for data preparation, descriptives, hazard estimation
26750 and prediction with Aalen-Johansen or simulation in competing risks and
26751 multi-state models.")
26752 (license license:gpl2+)))
26753
26754 (define-public r-scatterpie
26755 (package
26756 (name "r-scatterpie")
26757 (version "0.1.7")
26758 (source
26759 (origin
26760 (method url-fetch)
26761 (uri (cran-uri "scatterpie" version))
26762 (sha256
26763 (base32
26764 "1pmspv8a7k20zyd5xvmav2k9mnjrkfhdij3rr9k504zyki8hfy1z"))))
26765 (properties `((upstream-name . "scatterpie")))
26766 (build-system r-build-system)
26767 (propagated-inputs
26768 (list r-ggforce r-ggfun r-ggplot2 r-rlang r-tidyr))
26769 (native-inputs
26770 (list r-knitr))
26771 (home-page "https://cran.r-project.org/web/packages/scatterpie/")
26772 (synopsis "Scatter pie plot")
26773 (description
26774 "This package creates scatterpie plots, especially useful for plotting
26775 pies on a map.")
26776 (license license:artistic2.0)))
26777
26778 (define-public r-scrypt
26779 (package
26780 (name "r-scrypt")
26781 (version "0.1.4")
26782 (source
26783 (origin
26784 (method url-fetch)
26785 (uri (cran-uri "scrypt" version))
26786 (sha256
26787 (base32
26788 "12q9d4m7flbvlgssvjh1ga4jswkmqjfshf6pna6qk6v087gmzdsj"))))
26789 (properties `((upstream-name . "scrypt")))
26790 (build-system r-build-system)
26791 (propagated-inputs
26792 (list r-rcpp))
26793 (home-page "https://github.com/rstudio/rscrypt")
26794 (synopsis "Key derivation functions for R based on Scrypt")
26795 (description
26796 "This package provides functions for working with the scrypt key
26797 derivation functions. Scrypt is a password-based key derivation function
26798 created by Colin Percival. The algorithm was specifically designed to make it
26799 costly to perform large-scale custom hardware attacks by requiring large
26800 amounts of memory.")
26801 (license license:bsd-2)))
26802
26803 (define-public r-boruta
26804 (package
26805 (name "r-boruta")
26806 (version "7.0.0")
26807 (source
26808 (origin
26809 (method url-fetch)
26810 (uri (cran-uri "Boruta" version))
26811 (sha256
26812 (base32
26813 "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg"))))
26814 (properties `((upstream-name . "Boruta")))
26815 (build-system r-build-system)
26816 (propagated-inputs (list r-ranger))
26817 (home-page "https://gitlab.com/mbq/Boruta/")
26818 (synopsis "Wrapper algorithm for all relevant feature selection")
26819 (description
26820 "This package provides an all relevant feature selection wrapper
26821 algorithm. It finds relevant features by comparing original attributes'
26822 importance with importance achievable at random, estimated using their
26823 permuted copies (shadows).")
26824 (license license:gpl2+)))
26825
26826 (define-public r-directlabels
26827 (package
26828 (name "r-directlabels")
26829 (version "2021.1.13")
26830 (source
26831 (origin
26832 (method url-fetch)
26833 (uri (cran-uri "directlabels" version))
26834 (sha256
26835 (base32
26836 "0415kh9k2qzdwi8zb32fh2icl5wf5335kyj11cyfdmfxji39zv2w"))))
26837 (build-system r-build-system)
26838 (propagated-inputs
26839 (list r-quadprog))
26840 (native-inputs
26841 (list r-knitr))
26842 (home-page "http://directlabels.r-forge.r-project.org/")
26843 (synopsis "Direct labels for multicolor plots")
26844 (description
26845 "This package provides an extensible framework for automatically placing
26846 direct labels onto multicolor plots. Label positions are described using
26847 positioning methods that can be re-used across several different plots. There
26848 are heuristics for examining @code{trellis} and @code{ggplot} objects and
26849 inferring an appropriate positioning method.")
26850 (license license:gpl3)))
26851
26852 (define-public r-lsd
26853 (package
26854 (name "r-lsd")
26855 (version "4.1-0")
26856 (source
26857 (origin
26858 (method url-fetch)
26859 (uri (cran-uri "LSD" version))
26860 (sha256
26861 (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm"))))
26862 (properties `((upstream-name . "LSD")))
26863 (build-system r-build-system)
26864 (home-page "https://cran.r-project.org/web/packages/LSD/")
26865 (synopsis "Lots of superior depictions tool creates colorful plots")
26866 (description
26867 "This package creates lots of colorful plots in a multitude of variations.
26868 Try a demo of the LSD by running @code{demotour()}.")
26869 ;; Either version
26870 (license (list license:gpl2 license:gpl3))))
26871
26872 (define-public r-phylogram
26873 (package
26874 (name "r-phylogram")
26875 (version "2.1.0")
26876 (source
26877 (origin
26878 (method url-fetch)
26879 (uri (cran-uri "phylogram" version))
26880 (sha256
26881 (base32 "1p4h5pirc0m5pzc18q0jk3mcmb5n48gdf9abz03vml3a209xxl2v"))))
26882 (properties `((upstream-name . "phylogram")))
26883 (build-system r-build-system)
26884 (propagated-inputs (list r-ape))
26885 (home-page "https://github.com/ropensci/phylogram/")
26886 (synopsis "Dendrograms for evolutionary analysis")
26887 (description
26888 "The @code{r-phylogram} package is a tool for for developing phylogenetic
26889 trees as deeply-nested lists known as \"dendrogram\" objects. It provides
26890 functions for conversion between \"dendrogram\" and \"phylo\" class objects,
26891 as well as several tools for command-line tree manipulation and import/export
26892 via Newick parenthetic text. This improves accessibility to the comprehensive
26893 range of object-specific analytical and tree-visualization functions found
26894 across a wide array of bioinformatic R packages.")
26895 (license license:gpl3)))
26896
26897 (define-public r-kmer
26898 (package
26899 (name "r-kmer")
26900 (version "1.1.2")
26901 (source
26902 (origin
26903 (method url-fetch)
26904 (uri (cran-uri "kmer" version))
26905 (sha256
26906 (base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
26907 (properties `((upstream-name . "kmer")))
26908 (build-system r-build-system)
26909 (propagated-inputs
26910 (list r-openssl r-phylogram r-rcpp))
26911 (home-page "https://github.com/shaunpwilkinson/kmer/")
26912 (synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
26913 (description
26914 "@code{r-kmer} is an R package for rapidly computing distance matrices
26915 and clustering large sequence datasets using fast alignment-free k-mer
26916 counting and recursive k-means partitioning.")
26917 (license license:gpl3)))
26918
26919 (define-public r-hardhat
26920 (package
26921 (name "r-hardhat")
26922 (version "0.2.0")
26923 (source
26924 (origin
26925 (method url-fetch)
26926 (uri (cran-uri "hardhat" version))
26927 (sha256
26928 (base32
26929 "0a4nq93cmps5xy8h0qsv6xyzrbsz9ka4iwkrvb8m8v10wq7wm5wl"))))
26930 (properties `((upstream-name . "hardhat")))
26931 (build-system r-build-system)
26932 (propagated-inputs
26933 (list r-glue r-rlang r-tibble r-vctrs))
26934 (native-inputs
26935 (list r-knitr))
26936 (home-page "https://github.com/tidymodels/hardhat")
26937 (synopsis "Construct modeling packages")
26938 (description
26939 "Building modeling packages is hard. A large amount of effort generally
26940 goes into providing an implementation for a new method that is efficient,
26941 fast, and correct, but often less emphasis is put on the user interface. A
26942 good interface requires specialized knowledge about S3 methods and formulas,
26943 which the average package developer might not have. The goal of
26944 @code{hardhat} is to reduce the burden around building new modeling packages
26945 by providing functionality for preprocessing, predicting, and validating
26946 input.")
26947 (license license:expat)))
26948
26949 (define-public r-lightgbm
26950 (package
26951 (name "r-lightgbm")
26952 (version "3.3.2")
26953 (source
26954 (origin
26955 (method url-fetch)
26956 (uri (cran-uri "lightgbm" version))
26957 (sha256
26958 (base32
26959 "12hbvm1va6sb5yny564jvhhzrkcq4j33rcdhqhwxaac2m08cpi8s"))))
26960 (properties `((upstream-name . "lightgbm")))
26961 (build-system r-build-system)
26962 (propagated-inputs
26963 (list r-data-table r-jsonlite r-matrix r-r6))
26964 (home-page "https://github.com/Microsoft/LightGBM")
26965 (synopsis "Light gradient boosting machine")
26966 (description
26967 "Tree based algorithms can be improved by introducing boosting
26968 frameworks. LightGBM is one such framework, based on Ke, Guolin et
26969 al. (2017). This package offers an R interface to work with it. It is
26970 designed to be distributed and efficient with the following goals:
26971
26972 @enumerate
26973 @item Faster training speed and higher efficiency;
26974 @item lower memory usage;
26975 @item better accuracy;
26976 @item parallel learning supported; and
26977 @item capable of handling large-scale data.
26978 @end enumerate
26979 ")
26980 (license license:expat)))
26981
26982 (define-public r-shapforxgboost
26983 (package
26984 (name "r-shapforxgboost")
26985 (version "0.1.1")
26986 (source
26987 (origin
26988 (method url-fetch)
26989 (uri (cran-uri "SHAPforxgboost" version))
26990 (sha256
26991 (base32
26992 "106nsf02b1w3yshb55lwnyw1rl1a60162v2wk8znjz3b4ln3mqj5"))))
26993 (properties
26994 `((upstream-name . "SHAPforxgboost")))
26995 (build-system r-build-system)
26996 (propagated-inputs
26997 (list r-bbmisc
26998 r-data-table
26999 r-ggextra
27000 r-ggforce
27001 r-ggplot2
27002 r-ggpubr
27003 r-rcolorbrewer
27004 r-xgboost))
27005 (native-inputs
27006 (list r-knitr))
27007 (home-page "https://github.com/liuyanguu/SHAPforxgboost")
27008 (synopsis "SHAP Plots for XGBoost")
27009 (description
27010 "The aim of @code{SHAPforxgboost} is to aid in visual data investigations
27011 using @dfn{SHAP} (Shapley additive explanation) visualization plots for
27012 @code{XGBoost}. It provides summary plot, dependence plot, interaction plot,
27013 and force plot. It relies on the @code{XGBoost} package to produce SHAP
27014 values.")
27015 (license license:expat)))
27016
27017 (define-public r-rismed
27018 (package
27019 (name "r-rismed")
27020 (version "2.3.0")
27021 (source
27022 (origin
27023 (method url-fetch)
27024 (uri (cran-uri "RISmed" version))
27025 (sha256
27026 (base32
27027 "0vpi88gzi9r85v6nhjz9jbw671zkrmyazwna2z881346wfyr3l8b"))))
27028 (properties `((upstream-name . "RISmed")))
27029 (build-system r-build-system)
27030 (propagated-inputs
27031 (list r-httr r-xml2))
27032 (home-page "https://cran.r-project.org/web/packages/RISmed")
27033 (synopsis "Download content from NCBI databases")
27034 (description
27035 "This package provides a set of tools to extract bibliographic
27036 content from the National Center for Biotechnology Information (NCBI)
27037 databases, including PubMed. The name RISmed is a portmanteau of
27038 RIS (for Research Information Systems, a common tag format for
27039 bibliographic data) and PubMed.")
27040 (license license:gpl2+)))
27041
27042 (define-public r-semver
27043 (package
27044 (name "r-semver")
27045 (version "0.2.0")
27046 (source
27047 (origin
27048 (method url-fetch)
27049 (uri (cran-uri "semver" version))
27050 (sha256
27051 (base32
27052 "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
27053 (properties `((upstream-name . "semver")))
27054 (build-system r-build-system)
27055 (propagated-inputs
27056 (list r-assertthat r-rcpp))
27057 (native-inputs (list r-knitr))
27058 (home-page "https://github.com/johndharrison/semver")
27059 (synopsis "Parser for Semantic Versioning 2.0.0")
27060 (description
27061 "This package provides tools and functions for parsing, rendering and
27062 operating on semantic version strings. Semantic versioning is a simple set of
27063 rules and requirements that dictate how version numbers are assigned and
27064 incremented as outlined at @url{http://semver.org}.")
27065 (license license:expat)))
27066
27067 (define-public r-binman
27068 (package
27069 (name "r-binman")
27070 (version "0.1.2")
27071 (source
27072 (origin
27073 (method url-fetch)
27074 (uri (cran-uri "binman" version))
27075 (sha256
27076 (base32
27077 "00l7m98h41r67gf0qxqis3vx63j7wylnk9vlgcyk41szkrz8ikkc"))))
27078 (properties `((upstream-name . "binman")))
27079 (build-system r-build-system)
27080 (propagated-inputs
27081 (list r-assertthat
27082 r-httr
27083 r-jsonlite
27084 r-rappdirs
27085 r-semver
27086 r-xml2
27087 r-yaml))
27088 (native-inputs (list r-knitr))
27089 (home-page "https://github.com/ropensci/binman")
27090 (synopsis "Binary download manager")
27091 (description
27092 "This package provides tools and functions for managing the download of
27093 binary files. Binary repositories are defined in the YAML format. Defining
27094 new pre-download, download and post-download templates allow additional
27095 repositories to be added.")
27096 (license license:expat)))
27097
27098 (define-public r-wdman
27099 (package
27100 (name "r-wdman")
27101 (version "0.2.5")
27102 (source
27103 (origin
27104 (method url-fetch)
27105 (uri (cran-uri "wdman" version))
27106 (sha256
27107 (base32
27108 "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
27109 (properties `((upstream-name . "wdman")))
27110 (build-system r-build-system)
27111 (propagated-inputs
27112 (list r-assertthat r-binman r-processx r-semver r-yaml))
27113 (native-inputs (list r-knitr))
27114 (home-page "https://docs.ropensci.org/wdman/")
27115 (synopsis "Webdriver/Selenium binary manager")
27116 (description
27117 "There are a number of binary files associated with the
27118 Webdriver/Selenium project (see @url{http://www.seleniumhq.org/download/},
27119 @url{https://sites.google.com/a/chromium.org/chromedriver/},
27120 @url{https://github.com/mozilla/geckodriver},
27121 @url{http://phantomjs.org/download.html}, and
27122 @url{https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver} for
27123 more information). This package provides functions to download these binaries
27124 and to manage processes involving them.")
27125 (license license:expat)))
27126
27127 (define-public r-rselenium
27128 (package
27129 (name "r-rselenium")
27130 (version "1.7.7")
27131 (source
27132 (origin
27133 (method url-fetch)
27134 (uri (cran-uri "RSelenium" version))
27135 (sha256
27136 (base32
27137 "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
27138 (properties `((upstream-name . "RSelenium")))
27139 (build-system r-build-system)
27140 (propagated-inputs
27141 (list r-binman
27142 r-catools
27143 r-httr
27144 r-openssl
27145 r-wdman
27146 r-xml))
27147 (native-inputs (list r-knitr))
27148 (home-page "https://docs.ropensci.org/RSelenium/")
27149 (synopsis "R bindings for Selenium WebDriver")
27150 (description
27151 "This package provides a set of R bindings for the Selenium 2.0
27152 WebDriver (see @url{https://selenium.dev/documentation/en/} for more
27153 information) using the @code{JsonWireProtocol} (see
27154 @url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
27155 information). Selenium 2.0 WebDriver allows driving a web browser natively as
27156 a user would either locally or on a remote machine using the Selenium server
27157 it marks a leap forward in terms of web browser automation. Selenium
27158 automates web browsers (commonly referred to as browsers). Using RSelenium
27159 you can automate browsers locally or remotely.")
27160 (license license:agpl3+)))
27161
27162 (define-public r-conquer
27163 (package
27164 (name "r-conquer")
27165 (version "1.3.0")
27166 (source
27167 (origin
27168 (method url-fetch)
27169 (uri (cran-uri "conquer" version))
27170 (sha256
27171 (base32
27172 "1ynmaf7lgqjb8grsifx5dzy29cd5kz4x3yh0abnl2vxdr4c4wddc"))))
27173 (properties `((upstream-name . "conquer")))
27174 (build-system r-build-system)
27175 (propagated-inputs
27176 (list r-matrix r-matrixstats r-rcpp r-rcpparmadillo))
27177 (home-page "https://github.com/XiaoouPan/conquer")
27178 (synopsis "Convolution-type smoothed quantile regression")
27179 (description
27180 "This package provides fast and accurate convolution-type smoothed
27181 quantile regression, implemented using Barzilai-Borwein gradient descent with
27182 a Huber regression warm start. Confidence intervals for regression
27183 coefficients are constructed using multiplier bootstrap.")
27184 (license license:gpl3)))
27185
27186 (define-public r-fastshap
27187 (package
27188 (name "r-fastshap")
27189 (version "0.0.7")
27190 (source
27191 (origin
27192 (method url-fetch)
27193 (uri (cran-uri "fastshap" version))
27194 (sha256
27195 (base32
27196 "0gxch67i3bj6m8nb94m5hswq058w6n1q9war4dy2qnimlv7cmhdv"))))
27197 (properties `((upstream-name . "fastshap")))
27198 (build-system r-build-system)
27199 (propagated-inputs
27200 (list r-abind
27201 r-ggplot2
27202 r-gridextra
27203 r-matrixstats
27204 r-plyr
27205 r-rcpp
27206 r-rcpparmadillo
27207 r-tibble))
27208 (home-page "https://github.com/bgreenwell/fastshap")
27209 (synopsis "Fast approximate Shapley values")
27210 (description
27211 "This package computes fast (relative to other implementations)
27212 approximate Shapley values for any supervised learning model. Shapley values
27213 help to explain the predictions from any black box model using ideas from game
27214 theory; see @url{Strumbel and Kononenko (2014),
27215 doi.org/10.1007/s10115-013-0679-x} for details.")
27216 (license license:gpl2+)))
27217
27218 (define-public r-memuse
27219 (package
27220 (name "r-memuse")
27221 (version "4.2-1")
27222 (source (origin
27223 (method url-fetch)
27224 (uri (cran-uri "memuse" version))
27225 (sha256
27226 (base32
27227 "1wvwnjaaiv2647561z2b55dss35033ildx4kk8hzxfzgsjmdpsgm"))))
27228 (properties `((upstream-name . "memuse")))
27229 (build-system r-build-system)
27230 (home-page "https://github.com/shinra-dev/memuse")
27231 (synopsis "Memory Estimation Utilities")
27232 (description
27233 "This package provides procedures to answer the following questions:
27234 How much ram do you need to store a 100,000 by 100,000 matrix? How much ram is
27235 your current R session using? How much ram do you even have?")
27236 (license license:bsd-2)))
27237
27238 (define-public r-metrics
27239 (package
27240 (name "r-metrics")
27241 (version "0.1.4")
27242 (source
27243 (origin
27244 (method url-fetch)
27245 (uri (cran-uri "Metrics" version))
27246 (sha256
27247 (base32
27248 "0fh8qbjlwzagh272lgwr4bxcqcjb1qpz53mgs8rzlvncax6nk5bk"))))
27249 (properties `((upstream-name . "Metrics")))
27250 (build-system r-build-system)
27251 (home-page "https://github.com/mfrasco/Metrics")
27252 (synopsis "Evaluation metrics for machine learning")
27253 (description
27254 "This package provides an implementation of evaluation metrics in R that
27255 are commonly used in supervised machine learning. It implements metrics for
27256 regression, time series, binary classification, classification, and
27257 information retrieval problems. It has zero dependencies and a consistent,
27258 simple interface for all functions.")
27259 (license license:bsd-3)))
27260
27261 (define-public r-iml
27262 (package
27263 (name "r-iml")
27264 (version "0.11.0")
27265 (source
27266 (origin
27267 (method url-fetch)
27268 (uri (cran-uri "iml" version))
27269 (sha256
27270 (base32
27271 "1za7bjnp07i20vyb6vxz2ya5cr8g4p076w61n8m38wnz04lz5yz5"))))
27272 (properties `((upstream-name . "iml")))
27273 (build-system r-build-system)
27274 (propagated-inputs
27275 (list r-checkmate
27276 r-data-table
27277 r-formula
27278 r-future
27279 r-future-apply
27280 r-ggplot2
27281 r-metrics
27282 r-prediction
27283 r-r6))
27284 (native-inputs (list r-knitr))
27285 (home-page "https://github.com/christophM/iml")
27286 (synopsis "Interpretable machine learning")
27287 (description
27288 "This package provides interpretability methods to analyze the behavior
27289 and predictions of any machine learning model. Implemented methods are:
27290
27291 @itemize
27292 @item Feature importance described by Fisher et al. (2018),
27293 @item accumulated local effects plots described by Apley (2018),
27294 @item partial dependence plots described by Friedman (2001),
27295 @item individual conditional expectation ('ice') plots described by Goldstein
27296 et al. (2013) @url{https://doi.org/10.1080/10618600.2014.907095},
27297 @item local models (variant of 'lime') described by Ribeiro et. al (2016),
27298 @item the Shapley Value described by Strumbelj et. al (2014)
27299 @url{https://doi.org/10.1007/s10115-013-0679-x},
27300 @item feature interactions described by Friedman et. al
27301 @url{https://doi.org/10.1214/07-AOAS148} and tree surrogate models.
27302 @end itemize
27303 ")
27304 (license license:expat)))
27305
27306 (define-public r-goftest
27307 (package
27308 (name "r-goftest")
27309 (version "1.2-3")
27310 (source
27311 (origin
27312 (method url-fetch)
27313 (uri (cran-uri "goftest" version))
27314 (sha256
27315 (base32
27316 "06bz6k7smr4jbvzmb73qc5fkf4my59w5gbl18wlmpkkymsv78prs"))))
27317 (properties `((upstream-name . "goftest")))
27318 (build-system r-build-system)
27319 (home-page "https://github.com/baddstats/goftest")
27320 (synopsis "Classical Goodness-of-Fit tests for univariate distributions")
27321 (description
27322 "This package provides Cramer-Von Mises and Anderson-Darling tests of
27323 goodness-of-fit for continuous univariate distributions, using efficient
27324 algorithms.")
27325 (license license:gpl2+)))
27326
27327 (define-public r-tensor
27328 (package
27329 (name "r-tensor")
27330 (version "1.5")
27331 (source
27332 (origin
27333 (method url-fetch)
27334 (uri (cran-uri "tensor" version))
27335 (sha256
27336 (base32
27337 "19mfsgr6vz4lgwidm80i4yw0y1dr3n8i6qz7g4n2xa0k74zc5pp1"))))
27338 (properties `((upstream-name . "tensor")))
27339 (build-system r-build-system)
27340 (home-page "https://cran.r-project.org/web/packages/tensor/")
27341 (synopsis "Tensor product of arrays")
27342 (description
27343 "The tensor product of two arrays is notionally an outer product of the
27344 arrays collapsed in specific extents by summing along the appropriate
27345 diagonals. This package allows you to compute the tensor product of arrays.")
27346 (license license:gpl2+)))
27347
27348 (define-public r-spatstat-utils
27349 (package
27350 (name "r-spatstat-utils")
27351 (version "2.3-1")
27352 (source
27353 (origin
27354 (method url-fetch)
27355 (uri (cran-uri "spatstat.utils" version))
27356 (sha256
27357 (base32
27358 "08pybliv4r3v4rcazmlfr4a07sjfhrkmksdmhhq9k185vw4474av"))))
27359 (properties
27360 `((upstream-name . "spatstat.utils")))
27361 (build-system r-build-system)
27362 (home-page "http://www.spatstat.org")
27363 (synopsis "Utility functions for spatstat")
27364 (description
27365 "This package contains utility functions for the @code{spatstat} package
27366 which may also be useful for other purposes.")
27367 (license license:gpl2+)))
27368
27369 (define-public r-spatstat-sparse
27370 (package
27371 (name "r-spatstat-sparse")
27372 (version "2.1-1")
27373 (source
27374 (origin
27375 (method url-fetch)
27376 (uri (cran-uri "spatstat.sparse" version))
27377 (sha256
27378 (base32
27379 "00vkvv5pnm82gn7vqnzrrp68y46gbkhdq0hbwqx7nxjvf5lssdcs"))))
27380 (properties
27381 `((upstream-name . "spatstat.sparse")))
27382 (build-system r-build-system)
27383 (propagated-inputs
27384 (list r-abind r-matrix r-spatstat-utils r-tensor))
27385 (home-page "http://spatstat.org/")
27386 (synopsis "Sparse three-dimensional arrays and linear algebra utilities")
27387 (description
27388 "This package defines sparse three-dimensional arrays and supports
27389 standard operations on them. The package also includes utility functions for
27390 matrix calculations that are common in statistics, such as quadratic forms.")
27391 (license license:gpl2+)))
27392
27393 (define-public r-spatstat-data
27394 (package
27395 (name "r-spatstat-data")
27396 (version "2.2-0")
27397 (source
27398 (origin
27399 (method url-fetch)
27400 (uri (cran-uri "spatstat.data" version))
27401 (sha256
27402 (base32
27403 "1rf36zy29h9qabpv19hx84gjdiay7i9y9777d2zn17ahyss3p56k"))))
27404 (properties `((upstream-name . "spatstat.data")))
27405 (build-system r-build-system)
27406 (propagated-inputs
27407 (list r-matrix r-spatstat-utils))
27408 (home-page "http://www.spatstat.org")
27409 (synopsis "Datasets for spatstat")
27410 (description
27411 "This package contains all the datasets for the @code{spatstat}
27412 package.")
27413 (license license:gpl2+)))
27414
27415 (define-public r-spatstat-geom
27416 (package
27417 (name "r-spatstat-geom")
27418 (version "2.4-0")
27419 (source
27420 (origin
27421 (method url-fetch)
27422 (uri (cran-uri "spatstat.geom" version))
27423 (sha256
27424 (base32
27425 "0rwysq9a0ylbsr53q5kfh7wjk5mcdji211sc3s8gwzz8ki09mf1j"))))
27426 (properties `((upstream-name . "spatstat.geom")))
27427 (build-system r-build-system)
27428 (propagated-inputs
27429 (list r-deldir r-polyclip r-spatstat-data r-spatstat-utils))
27430 (home-page "http://spatstat.org/")
27431 (synopsis "Geometrical functionality of the spatstat package")
27432 (description
27433 "This is a subset of the original spatstat package, containing the
27434 user-level code from spatstat which performs geometrical operations, except
27435 for the geometry of linear networks.")
27436 (license license:gpl2+)))
27437
27438 (define-public r-spatstat-core
27439 (package
27440 (name "r-spatstat-core")
27441 (version "2.4-4")
27442 (source
27443 (origin
27444 (method url-fetch)
27445 (uri (cran-uri "spatstat.core" version))
27446 (sha256
27447 (base32
27448 "0fyi8y1z919nzn47kaviln7gflhcp5qdi3gfvf7nwkdix3pkk373"))))
27449 (properties `((upstream-name . "spatstat.core")))
27450 (build-system r-build-system)
27451 (propagated-inputs
27452 (list r-abind
27453 r-goftest
27454 r-matrix
27455 r-mgcv
27456 r-nlme
27457 r-rpart
27458 r-spatstat-data
27459 r-spatstat-geom
27460 r-spatstat-random
27461 r-spatstat-sparse
27462 r-spatstat-utils
27463 r-tensor))
27464 (home-page "http://spatstat.org/")
27465 (synopsis "Core functionality of the spatstat package")
27466 (description
27467 "This is a subset of the original spatstat package, containing all of the
27468 user-level code from spatstat, except for the code for linear networks.")
27469 (license license:gpl2+)))
27470
27471 (define-public r-spatstat-linnet
27472 (package
27473 (name "r-spatstat-linnet")
27474 (version "2.3-2")
27475 (source
27476 (origin
27477 (method url-fetch)
27478 (uri (cran-uri "spatstat.linnet" version))
27479 (sha256
27480 (base32
27481 "0y1py6x0xbw4ad3pjwcspi4ysgfh61f5fd79787zzgyyh2va8y4w"))))
27482 (properties
27483 `((upstream-name . "spatstat.linnet")))
27484 (build-system r-build-system)
27485 (propagated-inputs
27486 (list r-matrix
27487 r-spatstat-core
27488 r-spatstat-data
27489 r-spatstat-geom
27490 r-spatstat-random
27491 r-spatstat-sparse
27492 r-spatstat-utils))
27493 (home-page "http://spatstat.org/")
27494 (synopsis "Linear networks functionality of the spatstat package")
27495 (description
27496 "This is a subset of the spatstat package, containing its functionality
27497 for spatial data on a linear network.")
27498 (license license:gpl2+)))
27499
27500 (define-public r-spatstat-random
27501 (package
27502 (name "r-spatstat-random")
27503 (version "2.2-0")
27504 (source
27505 (origin
27506 (method url-fetch)
27507 (uri (cran-uri "spatstat.random" version))
27508 (sha256
27509 (base32 "0kb01s8k67ydcfqcnz3i55vpiksihh4xsg0w2p2bclxxkpdvpw25"))))
27510 (properties `((upstream-name . "spatstat.random")))
27511 (build-system r-build-system)
27512 (propagated-inputs (list r-spatstat-data r-spatstat-geom r-spatstat-utils))
27513 (home-page "http://spatstat.org/")
27514 (synopsis "Random Generation Functionality for the 'spatstat' Family")
27515 (description
27516 "This package provides functionality for random generation of spatial
27517 data in the spatstat family of packages. It generates random spatial patterns
27518 of points according to many simple rules (complete spatial randomness,
27519 Poisson, binomial, random grid, systematic, cell), randomised alteration of
27520 patterns (thinning, random shift, jittering), simulated realisations of random
27521 point processes (simple sequential inhibition, Matern inhibition models,
27522 Matern cluster process, Neyman-Scott cluster processes, log-Gaussian Cox
27523 processes, product shot noise cluster processes) and simulation of Gibbs point
27524 processes (Metropolis-Hastings birth-death-shift algorithm, alternating Gibbs
27525 sampler).")
27526 (license license:gpl2+)))
27527
27528 (define-public r-spatstat
27529 (package
27530 (name "r-spatstat")
27531 (version "2.3-4")
27532 (source
27533 (origin
27534 (method url-fetch)
27535 (uri (cran-uri "spatstat" version))
27536 (sha256
27537 (base32
27538 "1nlrp7660y68axlm4pczc5rxbdhbbac1ylh69azr4swj1gbzi82f"))))
27539 (properties `((upstream-name . "spatstat")))
27540 (build-system r-build-system)
27541 (propagated-inputs
27542 (list r-spatstat-core r-spatstat-data r-spatstat-geom
27543 r-spatstat-linnet r-spatstat-random r-spatstat-utils))
27544 (home-page "http://www.spatstat.org")
27545 (synopsis "Spatial Point Pattern analysis, model-fitting, simulation, tests")
27546 (description
27547 "This package provides a comprehensive toolbox for analysing Spatial
27548 Point Patterns. It is focused mainly on two-dimensional point patterns,
27549 including multitype/marked points, in any spatial region. It also supports
27550 three-dimensional point patterns, space-time point patterns in any number of
27551 dimensions, point patterns on a linear network, and patterns of other
27552 geometrical objects. It supports spatial covariate data such as pixel images
27553 and contains over 2000 functions for plotting spatial data, exploratory data
27554 analysis, model-fitting, simulation, spatial sampling, model diagnostics, and
27555 formal inference.")
27556 (license license:gpl2+)))
27557
27558 (define-public r-gaston
27559 (package
27560 (name "r-gaston")
27561 (version "1.5.7")
27562 (source
27563 (origin
27564 (method url-fetch)
27565 (uri (cran-uri "gaston" version))
27566 (sha256
27567 (base32
27568 "14z94dpln4dvgrv2w7w9ik7h6rpvbf02qhq1hqzx8c2cndzxr21i"))))
27569 (properties `((upstream-name . "gaston")))
27570 (build-system r-build-system)
27571 (inputs (list zlib))
27572 (propagated-inputs
27573 (list r-rcpp r-rcppeigen r-rcppparallel))
27574 (native-inputs (list r-knitr))
27575 (home-page "https://cran.r-project.org/web/packages/gaston/")
27576 (synopsis "Genetic data handling (QC, GRM, LD, PCA) and linear mixed models")
27577 (description
27578 "This is a package for the manipulation of genetic data (SNPs).
27579 Computation of @dfn{genetic relationship matrix} (GRM) and dominance matrix,
27580 @dfn{linkage disequilibrium} (LD), and heritability with efficient algorithms
27581 for linear mixed models (AIREML).")
27582 (license license:gpl3)))
27583
27584 (define-public r-cpp11
27585 (package
27586 (name "r-cpp11")
27587 (version "0.4.2")
27588 (source
27589 (origin
27590 (method url-fetch)
27591 (uri (cran-uri "cpp11" version))
27592 (sha256
27593 (base32
27594 "16cvjfkbc7c0ymdmbcqg9px6pjsqx6qhyfq5frqj739mhazy0g20"))))
27595 (properties `((upstream-name . "cpp11")))
27596 (build-system r-build-system)
27597 (native-inputs (list r-knitr))
27598 (home-page "https://github.com/r-lib/cpp11")
27599 (synopsis "C++11 Interface for R's C Interface")
27600 (description
27601 "This package provides a header only, C++11 interface to R's C interface.
27602 Compared to other approaches @code{cpp11} strives to be safe against long
27603 jumps from the C API as well as C++ exceptions, conform to normal R function
27604 semantics and supports interaction with @code{ALTREP} vectors.")
27605 (license license:expat)))
27606
27607 (define-public r-rcpptoml
27608 (package
27609 (name "r-rcpptoml")
27610 (version "0.1.7")
27611 (source
27612 (origin
27613 (method url-fetch)
27614 (uri (cran-uri "RcppTOML" version))
27615 (sha256
27616 (base32 "0h8517ipwqhqkhcfiyqmvsb585g01p0ra0azbpzyxip6pq6g029g"))))
27617 (properties `((upstream-name . "RcppTOML")))
27618 (build-system r-build-system)
27619 (propagated-inputs (list r-rcpp))
27620 (home-page "http://dirk.eddelbuettel.com/code/rcpp.toml.html")
27621 (synopsis "Rcpp bindings to TOML parser")
27622 (description
27623 "The TOML configuration format specifies an excellent format suitable for
27624 both human editing as well as the common uses of a machine-readable format.
27625 This package provides Rcpp bindings to a TOML parser.")
27626 (license license:gpl2+)))
27627
27628 (define-public r-rcppziggurat
27629 (package
27630 (name "r-rcppziggurat")
27631 (version "0.1.6")
27632 (source
27633 (origin
27634 (method url-fetch)
27635 (uri (cran-uri "RcppZiggurat" version))
27636 (sha256
27637 (base32
27638 "0wgd1v2p7zajnbrjf3hfi56p3pk3ld6iwkanbb04bjbnlif2ay4w"))))
27639 (properties `((upstream-name . "RcppZiggurat")))
27640 (build-system r-build-system)
27641 (propagated-inputs
27642 (list r-rcpp r-rcppgsl))
27643 (native-inputs (list r-knitr))
27644 (home-page "https://cran.r-project.org/web/packages/RcppZiggurat/")
27645 (synopsis "Rcpp integration of different \"Ziggurat\" normal RNG implementations")
27646 (description
27647 "The Ziggurat generator for normally distributed random numbers,
27648 originally proposed by Marsaglia and Tsang (2000,
27649 @url{https://doi.org/10.18637/jss.v005.i08}) has been improved upon a few
27650 times starting with Leong et al (2005,
27651 @url{https://doi.org/10.18637/jss.v012.i07}). This package provides an
27652 aggregation for comparing different implementations in order to provide a
27653 'faster but good enough' alternative for use with R and C++ code.")
27654 (license license:gpl2+)))
27655
27656 (define-public r-rfast
27657 (package
27658 (name "r-rfast")
27659 (version "2.0.6")
27660 (source
27661 (origin
27662 (method url-fetch)
27663 (uri (cran-uri "Rfast" version))
27664 (sha256
27665 (base32
27666 "0zxykq021h57mq0n6giqbx8ncjsdly0arhmaj3fcp3yfcxf4ns9l"))))
27667 (properties `((upstream-name . "Rfast")))
27668 (build-system r-build-system)
27669 (propagated-inputs
27670 (list r-rcpp r-rcpparmadillo r-rcppziggurat))
27671 (home-page "https://github.com/RfastOfficial/Rfast")
27672 (synopsis "Collection of efficient and fast R functions")
27673 (description
27674 "This package provides a collection of fast (utility) functions for data
27675 analysis. Column- and row- wise means, medians, variances, minimums,
27676 maximums, many t, F and G-square tests, many regressions (normal, logistic,
27677 Poisson), are some of the many fast functions.")
27678 (license license:gpl2+)))
27679
27680 (define-public r-rffc
27681 (package
27682 (name "r-rffc")
27683 (version "1.0")
27684 (source (origin
27685 (method url-fetch)
27686 (uri (string-append
27687 "https://download.r-forge.r-project.org/src/contrib/"
27688 "rfFC_" version ".tar.gz"))
27689 (sha256
27690 (base32
27691 "05x9wgzsmx4vb12lmcspymgmpb2xw8bwryb8ysg7vzg2nkh0ma3g"))))
27692 (build-system r-build-system)
27693 (propagated-inputs
27694 (list r-randomforest))
27695 (home-page "https://r-forge.r-project.org/projects/rffc/")
27696 (synopsis "Random Forest Feature Contributions")
27697 (description "This package provides functions for extracting feature
27698 contributions from a random forest model from package @code{randomForest}.
27699 Feature contributions provide detailed information about the relationship
27700 between data variables and the predicted value returned by random forest
27701 model.")
27702 (license license:gpl2)))
27703
27704 (define-public r-clusterr
27705 (package
27706 (name "r-clusterr")
27707 (version "1.2.6")
27708 (source
27709 (origin
27710 (method url-fetch)
27711 (uri (cran-uri "ClusterR" version))
27712 (sha256
27713 (base32
27714 "00mha8madcba83ix4fc04rb7sagfm0lxlh1wvs7dvjdrngps41jr"))))
27715 (properties `((upstream-name . "ClusterR")))
27716 (build-system r-build-system)
27717 (propagated-inputs
27718 (list r-ggplot2 r-gmp r-gtools r-rcpp r-rcpparmadillo))
27719 (native-inputs (list r-knitr))
27720 (home-page "https://github.com/mlampros/ClusterR")
27721 (synopsis "Clustering")
27722 (description
27723 "This package provides Gaussian mixture models, k-means,
27724 mini-batch-kmeans, k-medoids and affinity propagation clustering with the
27725 option to plot, validate, predict (new data) and estimate the optimal number
27726 of clusters. The package takes advantage of @code{RcppArmadillo} to speed up
27727 the computationally intensive parts of the functions. For more information,
27728 see
27729
27730 @enumerate
27731 @item \"Clustering in an Object-Oriented Environment\" by Anja Struyf, Mia
27732 Hubert, Peter Rousseeuw (1997), Journal of Statistical Software,
27733 @url{https://doi.org/10.18637/jss.v001.i04};
27734 @item \"Web-scale k-means clustering\" by D. Sculley (2010), ACM Digital
27735 Library, @url{https://doi.org/10.1145/1772690.1772862};
27736 @item \"Armadillo: a template-based C++ library
27737 for linear algebra\" by Sanderson et al (2016), The Journal of Open Source
27738 Software, @url{https://doi.org/10.21105/joss.00026};
27739 @item \"Clustering by Passing Messages Between Data Points\" by Brendan
27740 J. Frey and Delbert Dueck, Science 16 Feb 2007: Vol. 315, Issue 5814,
27741 pp. 972-976, @url{https://doi.org/10.1126/science.1136800}.
27742 @end enumerate
27743 ")
27744 (license license:gpl3)))
27745
27746 (define-public r-spectrum
27747 (package
27748 (name "r-spectrum")
27749 (version "1.1")
27750 (source
27751 (origin
27752 (method url-fetch)
27753 (uri (cran-uri "Spectrum" version))
27754 (sha256
27755 (base32
27756 "0n38d360azkck6vvhr771zsh0gbvd9qsf9ygg5r18vhz0pb1xcfw"))))
27757 (properties `((upstream-name . "Spectrum")))
27758 (build-system r-build-system)
27759 (propagated-inputs
27760 (list r-clusterr r-diptest r-ggplot2 r-rfast))
27761 (native-inputs (list r-knitr))
27762 (home-page "https://cran.r-project.org/web/packages/Spectrum/")
27763 (synopsis "Fast adaptive spectral clustering for single and multi-view data")
27764 (description
27765 "This package provides a self-tuning spectral clustering method for
27766 single or multi-view data. Spectrum uses a new type of adaptive density aware
27767 kernel that strengthens connections in the graph based on common nearest
27768 neighbours. It uses a tensor product graph data integration and diffusion
27769 procedure to integrate different data sources and reduce noise. Spectrum uses
27770 either the eigengap or multimodality gap heuristics to determine the number of
27771 clusters. The method is sufficiently flexible so that a wide range of
27772 Gaussian and non-Gaussian structures can be clustered with automatic selection
27773 of K.")
27774 (license license:agpl3+)))
27775
27776 (define-public r-nabor
27777 (package
27778 (name "r-nabor")
27779 (version "0.5.0")
27780 (source
27781 (origin
27782 (method url-fetch)
27783 (uri (cran-uri "nabor" version))
27784 (sha256
27785 (base32
27786 "1nj39cdfwrmhgsi3cq8imxv3n6xzc1v6dzdb2cf2hybjk368v4s7"))))
27787 (properties `((upstream-name . "nabor")))
27788 (build-system r-build-system)
27789 (propagated-inputs
27790 (list r-bh r-rcpp r-rcppeigen))
27791 (home-page "https://cran.r-project.org/web/packages/nabor/")
27792 (synopsis "Wrapper for K nearest neighbour library for low dimensions")
27793 (description
27794 "This package provides an R wrapper for libnabo, an exact or approximate
27795 k nearest neighbour library which is optimised for low dimensional
27796 spaces (e.g. 3D). @code{nabor} includes a @code{knn} function that is
27797 designed as a drop-in replacement for the RANN function @code{nn2}. In
27798 addition, objects which include the k-d tree search structure can be returned
27799 to speed up repeated queries of the same set of target points.")
27800 (license license:bsd-3)))
27801
27802 (define-public r-naturalsort
27803 (package
27804 (name "r-naturalsort")
27805 (version "0.1.3")
27806 (source (origin
27807 (method url-fetch)
27808 (uri (cran-uri "naturalsort" version))
27809 (sha256
27810 (base32
27811 "0mz801y9mzld9ypp3xmsjw2d8l9q97sdnv09wrci9xi3yg2sjf6d"))))
27812 (build-system r-build-system)
27813 (home-page "https://cran.r-project.org/web/packages/naturalsort/")
27814 (synopsis "Natural ordering")
27815 (description "This package provides functions related to human natural
27816 ordering. It handles adjacent digits in a character sequence as a number
27817 so that natural sort function arranges a character vector by their numbers,
27818 not digit characters.")
27819 (license license:bsd-3)))
27820
27821 (define-public r-visdat
27822 (package
27823 (name "r-visdat")
27824 (version "0.5.3")
27825 (source (origin
27826 (method url-fetch)
27827 (uri (cran-uri "visdat" version))
27828 (sha256
27829 (base32
27830 "1ikqp29nncbw1xlwyb9dqqgcdk9q0bs3wxhnhnjpb11vcjv7cz2j"))))
27831 (build-system r-build-system)
27832 (propagated-inputs
27833 (list r-dplyr
27834 r-ggplot2
27835 r-glue
27836 r-magrittr
27837 r-purrr
27838 r-readr
27839 r-tibble
27840 r-tidyr))
27841 (native-inputs
27842 (list r-knitr))
27843 (home-page "https://visdat.njtierney.com/")
27844 (synopsis "Preliminary Visualisation of Data")
27845 (description "This package provides procedures to create preliminary exploratory
27846 data visualisations of an entire dataset to identify problems or unexpected features
27847 using @code{ggplot2}.")
27848 (license license:expat)))
27849
27850 (define-public r-muhaz
27851 (package
27852 (name "r-muhaz")
27853 (version "1.2.6.4")
27854 (source
27855 (origin
27856 (method url-fetch)
27857 (uri (cran-uri "muhaz" version))
27858 (sha256
27859 (base32
27860 "1ddy8ayr4rdhzcipdvxdwd7z5g9hfp0ppacl7xf6f2612cn1185g"))))
27861 (properties `((upstream-name . "muhaz")))
27862 (build-system r-build-system)
27863 (propagated-inputs
27864 (list r-survival))
27865 (native-inputs
27866 (list gfortran))
27867 (home-page "https://cran.r-project.org/web/packages/muhaz/")
27868 (synopsis "Hazard function estimation in survival analysis")
27869 (description
27870 "This package produces a smooth estimate of the hazard function for
27871 censored data.")
27872 ;; Any version of the GPL.
27873 (license license:gpl3+)))
27874
27875 (define-public r-flexsurv
27876 (package
27877 (name "r-flexsurv")
27878 (version "2.1")
27879 (source
27880 (origin
27881 (method url-fetch)
27882 (uri (cran-uri "flexsurv" version))
27883 (sha256
27884 (base32
27885 "0kwij9nkdvnsn1kn12fj3hjkd2qpgw7bdda4qad7basq5p6divlp"))))
27886 (properties `((upstream-name . "flexsurv")))
27887 (build-system r-build-system)
27888 (propagated-inputs
27889 (list r-assertthat
27890 r-desolve
27891 r-dplyr
27892 r-generics
27893 r-magrittr
27894 r-matrix
27895 r-mstate
27896 r-muhaz
27897 r-mvtnorm
27898 r-numderiv
27899 r-purrr
27900 r-quadprog
27901 r-rcpp
27902 r-rlang
27903 r-rstpm2
27904 r-survival
27905 r-tibble
27906 r-tidyr
27907 r-tidyselect))
27908 (native-inputs
27909 (list r-knitr))
27910 (home-page "https://github.com/chjackson/flexsurv-dev")
27911 (synopsis "Flexible parametric survival and multi-state models")
27912 (description
27913 "This package provides flexible parametric models for time-to-event data,
27914 including the Royston-Parmar spline model, generalized gamma and generalized F
27915 distributions. Any user-defined parametric distribution can be fitted, given
27916 at least an R function defining the probability density or hazard. There are
27917 also tools for fitting and predicting from fully parametric multi-state
27918 models.")
27919 (license license:gpl2+)))
27920
27921 (define-public r-transphylo
27922 (package
27923 (name "r-transphylo")
27924 (version "1.4.5")
27925 (source
27926 (origin
27927 (method url-fetch)
27928 (uri (cran-uri "TransPhylo" version))
27929 (sha256
27930 (base32
27931 "0g92kwi1nlmpc8m4pc9kv9xhczryr2kn9icfr3js7da7vy8g50xy"))))
27932 (properties `((upstream-name . "TransPhylo")))
27933 (build-system r-build-system)
27934 (propagated-inputs
27935 (list r-ape r-rcpp))
27936 (native-inputs
27937 (list r-knitr))
27938 (home-page "https://cran.r-project.org/web/packages/TransPhylo/")
27939 (synopsis "Inference of transmission tree from a dated phylogeny")
27940 (description
27941 "This is a package to infer transmission trees from a dated phylogeny.
27942 It includes methods to simulate and analyze outbreaks. The methodology is
27943 described in @url{https://doi.org/10.1093/molbev/msu121,Didelot et al. (2014)}
27944 and @url{https://doi.org/10.1093/molbev/msw275,Didelot et al. (2017)}.")
27945 (license license:gpl2+)))
27946
27947 (define-public r-km-ci
27948 (package
27949 (name "r-km-ci")
27950 (version "0.5-6")
27951 (source
27952 (origin
27953 (method url-fetch)
27954 (uri (cran-uri "km.ci" version))
27955 (sha256
27956 (base32
27957 "18sc9vhbdgks8lhk2nfxkkayh8j4j227hl63fm5p04f7z4wm6wc1"))))
27958 (properties `((upstream-name . "km.ci")))
27959 (build-system r-build-system)
27960 (propagated-inputs
27961 (list r-survival))
27962 (home-page "https://cran.r-project.org/web/packages/km.ci/")
27963 (synopsis "Confidence intervals for the Kaplan-Meier estimator")
27964 (description
27965 "This package computes various @dfn{confidence intervals} (CI) for the
27966 Kaplan-Meier estimator, namely: Petos CI, Rothman CI, CIs based on Greenwoods
27967 variance, Thomas and Grunkemeier CI and the simultaneous confidence bands by
27968 Nair and Hall and Wellner.")
27969 (license license:gpl2+)))
27970
27971 (define-public r-kmsurv
27972 (package
27973 (name "r-kmsurv")
27974 (version "0.1-5")
27975 (source
27976 (origin
27977 (method url-fetch)
27978 (uri (cran-uri "KMsurv" version))
27979 (sha256
27980 (base32
27981 "0hi5vvk584rl70gbrr75w9hc775xmbxnaig0dd6hlpi4071pnqjm"))))
27982 (properties `((upstream-name . "KMsurv")))
27983 (build-system r-build-system)
27984 (home-page "https://cran.r-project.org/web/packages/KMsurv/")
27985 (synopsis "Data sets from Klein and Moeschberger (1997), Survival Analysis")
27986 (description
27987 "This package provides data sets and functions for Klein and Moeschberger
27988 (1997), \"Survival Analysis, Techniques for Censored and Truncated Data\",
27989 Springer.")
27990 (license license:gpl3+)))
27991
27992 (define-public r-survmisc
27993 (package
27994 (name "r-survmisc")
27995 (version "0.5.6")
27996 (source
27997 (origin
27998 (method url-fetch)
27999 (uri (cran-uri "survMisc" version))
28000 (sha256
28001 (base32
28002 "014cf7sfndmib9jmj0p3h67sr750k2pvw7m865zwdpvlqddi44fr"))))
28003 (properties `((upstream-name . "survMisc")))
28004 (build-system r-build-system)
28005 (propagated-inputs
28006 (list r-data-table
28007 r-ggplot2
28008 r-gridextra
28009 r-km-ci
28010 r-kmsurv
28011 r-knitr
28012 r-survival
28013 r-xtable
28014 r-zoo))
28015 (native-inputs
28016 (list r-knitr))
28017 (home-page "https://cran.r-project.org/web/packages/survMisc/")
28018 (synopsis "Miscellaneous functions for survival data")
28019 (description
28020 "This package provides a collection of functions to help in the analysis
28021 of right-censored survival data. These extend the methods available in
28022 the @code{survival} package.")
28023 (license license:gpl2)))
28024
28025 (define-public r-exactranktests
28026 (package
28027 (name "r-exactranktests")
28028 (version "0.8-35")
28029 (source
28030 (origin
28031 (method url-fetch)
28032 (uri (cran-uri "exactRankTests" version))
28033 (sha256
28034 (base32
28035 "1qv9i57chhz8xiv0j8r47rbigyqs72fa7ssz99inyc0s8gzskd3y"))))
28036 (properties
28037 `((upstream-name . "exactRankTests")))
28038 (build-system r-build-system)
28039 (home-page "https://cran.r-project.org/web/packages/exactRankTests/")
28040 (synopsis "Exact distributions for rank and permutation tests")
28041 (description
28042 "This package computes exact conditional p-values and quantiles using an
28043 implementation of the Shift-Algorithm by Streitberg & Roehmel.")
28044 (license license:gpl2+)))
28045
28046 (define-public r-maxstat
28047 (package
28048 (name "r-maxstat")
28049 (version "0.7-25")
28050 (source
28051 (origin
28052 (method url-fetch)
28053 (uri (cran-uri "maxstat" version))
28054 (sha256
28055 (base32
28056 "114z1rwxwvk05ijjhdppzm148n1h192fp0w12ky10zkrhf6kphbg"))))
28057 (properties `((upstream-name . "maxstat")))
28058 (build-system r-build-system)
28059 (propagated-inputs
28060 (list r-exactranktests r-mvtnorm))
28061 (home-page "https://cran.r-project.org/web/packages/maxstat/")
28062 (synopsis "Maximally selected rank statistics")
28063 (description
28064 "This package provides maximally selected rank statistics with several
28065 p-value approximations.")
28066 (license license:gpl2+)))
28067
28068 (define-public r-survminer
28069 (package
28070 (name "r-survminer")
28071 (version "0.4.9")
28072 (source
28073 (origin
28074 (method url-fetch)
28075 (uri (cran-uri "survminer" version))
28076 (sha256
28077 (base32
28078 "0byh0wxdbjfwdrzsnqv4xlmnik6lj0vkkzfxy7lssk8dv5zmj7nz"))))
28079 (properties `((upstream-name . "survminer")))
28080 (build-system r-build-system)
28081 (propagated-inputs
28082 (list r-broom
28083 r-dplyr
28084 r-ggplot2
28085 r-ggpubr
28086 r-ggtext
28087 r-gridextra
28088 r-magrittr
28089 r-maxstat
28090 r-purrr
28091 r-rlang
28092 r-scales
28093 r-survival
28094 r-survmisc
28095 r-tibble
28096 r-tidyr))
28097 (native-inputs
28098 (list r-knitr))
28099 (home-page "https://rpkgs.datanovia.com/survminer/index.html")
28100 (synopsis "Drawing survival curves using ggplot2")
28101 (description
28102 "This package contains the function @code{ggsurvplot()} for easily
28103 drawing beautiful and 'ready-to-publish' survival curves with the 'number at
28104 risk' table and 'censoring count plot'. Other functions are also available to
28105 plot adjusted curves for Cox model and to visually examine Cox model
28106 assumptions.")
28107 (license license:gpl2)))
28108
28109 (define-public r-forge
28110 (package
28111 (name "r-forge")
28112 (version "0.2.0")
28113 (source
28114 (origin
28115 (method url-fetch)
28116 (uri (cran-uri "forge" version))
28117 (sha256
28118 (base32
28119 "0pjfzsc35agkh0zfw2czwajkbsyn6liys5irl5bhz5r1vim3jmwa"))))
28120 (properties `((upstream-name . "forge")))
28121 (build-system r-build-system)
28122 (propagated-inputs
28123 (list r-magrittr r-rlang))
28124 (home-page "https://cran.r-project.org/web/packages/forge/")
28125 (synopsis "Cast values into shape")
28126 (description
28127 "This package provides helper functions with a consistent interface to
28128 coerce and verify the types and shapes of values for input checking.")
28129 (license license:asl2.0)))
28130
28131 (define-public r-config
28132 (package
28133 (name "r-config")
28134 (version "0.3.1")
28135 (source
28136 (origin
28137 (method url-fetch)
28138 (uri (cran-uri "config" version))
28139 (sha256
28140 (base32
28141 "0l2zp7v6qaz72dclcbjrlis633zlwp8rsi5azr7iw127iyz7i26l"))))
28142 (properties `((upstream-name . "config")))
28143 (build-system r-build-system)
28144 (propagated-inputs
28145 (list r-yaml))
28146 (native-inputs
28147 (list r-knitr))
28148 (home-page "https://github.com/rstudio/config")
28149 (synopsis "Manage environment specific configuration values")
28150 (description
28151 "This package lets you manage configuration values across multiple
28152 environments (e.g. development, test, production). It reads values using a
28153 function that determines the current environment and returns the appropriate
28154 value.")
28155 (license license:gpl3)))
28156
28157 (define-public r-adaptivesparsity
28158 (package
28159 (name "r-adaptivesparsity")
28160 (version "1.6")
28161 (source (origin
28162 (method url-fetch)
28163 (uri (cran-uri "AdaptiveSparsity" version))
28164 (sha256
28165 (base32
28166 "0imr5m8mll9j6n4icsv6z9rl5kbnwsp9wvzrg7n90nnmcxq2cz91"))))
28167 (properties
28168 `((upstream-name . "AdaptiveSparsity")))
28169 (build-system r-build-system)
28170 (arguments
28171 `(#:phases
28172 (modify-phases %standard-phases
28173 (add-after 'unpack 'link-against-armadillo
28174 (lambda _
28175 (substitute* "src/Makevars"
28176 (("PKG_LIBS=" prefix)
28177 (string-append prefix "-larmadillo")))
28178 #t)))))
28179 (propagated-inputs
28180 (list r-mass r-matrix r-rcpp r-rcpparmadillo))
28181 (inputs
28182 (list armadillo))
28183 (home-page "https://cran.r-project.org/web/packages/AdaptiveSparsity")
28184 (synopsis "Adaptive sparsity models")
28185 (description
28186 "This package implements the Figueiredo machine learning algorithm for
28187 adaptive sparsity and the Wong algorithm for adaptively sparse Gaussian
28188 geometric models.")
28189 (license license:lgpl3+)))
28190
28191 (define-public r-add2ggplot
28192 (package
28193 (name "r-add2ggplot")
28194 (version "0.3.0")
28195 (source
28196 (origin
28197 (method url-fetch)
28198 (uri (cran-uri "add2ggplot" version))
28199 (sha256
28200 (base32 "0c94i1cfp2pvplvxmfvvz2fyj026r1jnax05mrzrc7ppnqzy25y0"))))
28201 (properties `((upstream-name . "add2ggplot")))
28202 (build-system r-build-system)
28203 (propagated-inputs
28204 (list r-ggplot2 r-magick r-magrittr r-rcolorbrewer r-zeallot))
28205 (native-inputs (list r-knitr))
28206 (home-page "https://github.com/JiaxiangBU/add2ggplot")
28207 (synopsis "Extension for ggplot2")
28208 (description "This package provides tools to create themes and color
28209 palettes for the package ggplot2.")
28210 (license license:expat)))
28211
28212 (define-public r-diffusionmap
28213 (package
28214 (name "r-diffusionmap")
28215 (version "1.2.0")
28216 (source
28217 (origin
28218 (method url-fetch)
28219 (uri (cran-uri "diffusionMap" version))
28220 (sha256
28221 (base32
28222 "1rvk7069brlm1s9kqj4c31mwwr3mw4hmhay95cjjjfmw5xclff2j"))))
28223 (properties `((upstream-name . "diffusionMap")))
28224 (build-system r-build-system)
28225 (propagated-inputs
28226 (list r-igraph r-matrix r-scatterplot3d))
28227 (home-page "https://www.r-project.org")
28228 (synopsis "Diffusion map")
28229 (description "This package implements the diffusion map method of data
28230 parametrization, including creation and visualization of diffusion maps,
28231 clustering with diffusion K-means and regression using the adaptive regression
28232 model.")
28233 (license license:gpl2)))
28234
28235 (define-public r-igraph
28236 (package
28237 (name "r-igraph")
28238 (version "1.3.1")
28239 (source
28240 (origin
28241 (method url-fetch)
28242 (uri (cran-uri "igraph" version))
28243 (sha256
28244 (base32
28245 "0khl87ncc9hkvx4f1kyzv7w7bg9zbyd1rk20ja3azkhpqjkjnnjh"))))
28246 (build-system r-build-system)
28247 (native-inputs
28248 (list gfortran))
28249 (inputs
28250 (list gmp glpk libxml2 zlib))
28251 (propagated-inputs
28252 (list r-magrittr r-matrix r-pkgconfig))
28253 (home-page "https://igraph.org")
28254 (synopsis "Network analysis and visualization")
28255 (description
28256 "This package provides routines for simple graphs and network analysis.
28257 It can handle large graphs very well and provides functions for generating
28258 random and regular graphs, graph visualization, centrality methods and much
28259 more.")
28260 (license license:gpl2+)))
28261
28262 (define-public r-workflows
28263 (package
28264 (name "r-workflows")
28265 (version "0.2.6")
28266 (source
28267 (origin
28268 (method url-fetch)
28269 (uri (cran-uri "workflows" version))
28270 (sha256
28271 (base32
28272 "0xhc1j25fjipw8hvcpdbvfm640kp0flwvifj5f7g4n6b3wb8cm6a"))))
28273 (properties `((upstream-name . "workflows")))
28274 (build-system r-build-system)
28275 (propagated-inputs
28276 (list r-cli
28277 r-generics
28278 r-glue
28279 r-hardhat
28280 r-lifecycle
28281 r-parsnip
28282 r-rlang
28283 r-tidyselect
28284 r-vctrs))
28285 (native-inputs
28286 (list r-knitr))
28287 (home-page "https://github.com/tidymodels/workflows")
28288 (synopsis "Modeling workflows")
28289 (description
28290 "A workflow is an object that can bundle together your pre-processing,
28291 modeling, and post-processing requests. For example, if you have a
28292 @code{recipe} and @code{parsnip} model, these can be combined into a
28293 workflow. The advantages are:
28294
28295 @enumerate
28296 @item You don’t have to keep track of separate objects in your workspace.
28297 @item The recipe prepping and model fitting can be executed using a single
28298 call to @code{fit()}.
28299 @item If you have custom tuning parameter settings, these can be defined using
28300 a simpler interface when combined with @code{tune}.
28301 @item In the future, workflows will be able to add post-processing operations,
28302 such as modifying the probability cutoff for two-class models.
28303 @end enumerate
28304 ")
28305 (license license:expat)))
28306
28307 (define-public r-lobstr
28308 (package
28309 (name "r-lobstr")
28310 (version "1.1.1")
28311 (source
28312 (origin
28313 (method url-fetch)
28314 (uri (cran-uri "lobstr" version))
28315 (sha256
28316 (base32
28317 "0vkif17825x33cz8r89j0qph4wj5l8fzfgl8nh2g7m2v140cxjdq"))))
28318 (properties `((upstream-name . "lobstr")))
28319 (build-system r-build-system)
28320 (propagated-inputs
28321 (list r-crayon r-rcpp r-rlang))
28322 (home-page "https://github.com/r-lib/lobstr")
28323 (synopsis "Visualize R data structures with trees")
28324 (description
28325 "This package provides a set of tools for inspecting and understanding R
28326 data structures inspired by @code{str}. It includes @code{ast} for
28327 visualizing abstract syntax trees, @code{ref} for showing shared references,
28328 @code{cst} for showing call stack trees, and @code{obj_size} for computing
28329 object sizes.")
28330 (license license:gpl3)))
28331
28332 (define-public r-gpfit
28333 (package
28334 (name "r-gpfit")
28335 (version "1.0-8")
28336 (source
28337 (origin
28338 (method url-fetch)
28339 (uri (cran-uri "GPfit" version))
28340 (sha256
28341 (base32
28342 "05mpiyi2vxv0wqp422n1mnxa8msc4daq40cwpnpngbcwqhlgqkby"))))
28343 (properties `((upstream-name . "GPfit")))
28344 (build-system r-build-system)
28345 (propagated-inputs
28346 (list r-lattice r-lhs))
28347 (home-page "https://cran.r-project.org/web/packages/GPfit/")
28348 (synopsis "Gaussian Processes modeling")
28349 (description
28350 "This package provides a computationally stable approach of fitting a
28351 @dfn{Gaussian Process} (GP) model to a deterministic simulator.")
28352 (license license:gpl2)))
28353
28354 (define-public r-yardstick
28355 (package
28356 (name "r-yardstick")
28357 (version "0.0.9")
28358 (source
28359 (origin
28360 (method url-fetch)
28361 (uri (cran-uri "yardstick" version))
28362 (sha256
28363 (base32
28364 "00hv4gk1ba4dab8i3dcq7lim4bll7l572rgc8km9x4ja8by95j8h"))))
28365 (properties `((upstream-name . "yardstick")))
28366 (build-system r-build-system)
28367 (propagated-inputs
28368 (list r-dplyr
28369 r-generics
28370 r-proc
28371 r-rlang
28372 r-tidyselect
28373 r-vctrs))
28374 (native-inputs
28375 (list r-knitr))
28376 (home-page "https://github.com/tidymodels/yardstick")
28377 (synopsis "Tidy characterizations of model performance")
28378 (description
28379 "This package provides tidy tools for quantifying how well a model fits
28380 to a data set such as confusion matrices, class probability curve summaries,
28381 and regression metrics (e.g., RMSE).")
28382 (license license:gpl2)))
28383
28384 (define-public r-warp
28385 (package
28386 (name "r-warp")
28387 (version "0.2.0")
28388 (source
28389 (origin
28390 (method url-fetch)
28391 (uri (cran-uri "warp" version))
28392 (sha256
28393 (base32
28394 "0s0acddc5h14245hi1faycxp0fyvw6nlgaz2df7da4fpyd2f638f"))))
28395 (properties `((upstream-name . "warp")))
28396 (build-system r-build-system)
28397 (native-inputs (list r-knitr))
28398 (home-page "https://github.com/DavisVaughan/warp")
28399 (synopsis "Group dates")
28400 (description
28401 "This package provides tooling to group dates by a variety of periods
28402 including: yearly, monthly, by second, by week of the month, and more. The
28403 groups are defined in such a way that they also represent the distance between
28404 dates in terms of the period. This extracts valuable information that can be
28405 used in further calculations that rely on a specific temporal spacing between
28406 observations.")
28407 (license license:expat)))
28408
28409 (define-public r-scico
28410 (package
28411 (name "r-scico")
28412 (version "1.3.0")
28413 (source
28414 (origin
28415 (method url-fetch)
28416 (uri (cran-uri "scico" version))
28417 (sha256
28418 (base32 "08grfbjd5s0vdw76ni37yjl2242rr8i2jy72sgpwgra282hpnji3"))))
28419 (properties `((upstream-name . "scico")))
28420 (build-system r-build-system)
28421 (propagated-inputs (list r-scales))
28422 (home-page "https://github.com/thomasp85/scico")
28423 (synopsis "Colour Palettes Based on the Scientific Colour-Maps")
28424 (description
28425 "This package provides colour choice in information visualisation. It
28426 important in order to avoid being mislead by inherent bias in the used colour
28427 palette. This package provides access to the perceptually uniform and
28428 colour-blindness friendly palettes developed by Fabio Crameri and released
28429 under the \"Scientific Colour-Maps\" moniker. The package contains 24
28430 different palettes and includes both diverging and sequential types.")
28431 (license license:expat)))
28432
28433 (define-public r-slider
28434 (package
28435 (name "r-slider")
28436 (version "0.2.2")
28437 (source
28438 (origin
28439 (method url-fetch)
28440 (uri (cran-uri "slider" version))
28441 (sha256
28442 (base32
28443 "1vxk2bc33svwcki2j8zr5jcxswh27i0fqgzjw2a5a1pp9dh3fmd3"))))
28444 (properties `((upstream-name . "slider")))
28445 (build-system r-build-system)
28446 (propagated-inputs
28447 (list r-ellipsis r-glue r-rlang r-vctrs r-warp))
28448 (native-inputs (list r-knitr))
28449 (home-page "https://github.com/DavisVaughan/slider")
28450 (synopsis "Sliding window functions")
28451 (description
28452 "This package provides type-stable rolling window functions over any R
28453 data type. Cumulative and expanding windows are also supported. For more
28454 advanced usage, an index can be used as a secondary vector that defines how
28455 sliding windows are to be created.")
28456 (license license:expat)))
28457
28458 (define-public r-rlist
28459 (package
28460 (name "r-rlist")
28461 (version "0.4.6.2")
28462 (source
28463 (origin
28464 (method url-fetch)
28465 (uri (cran-uri "rlist" version))
28466 (sha256
28467 (base32 "15q99rhbbjq8zd976yjmfnny45dd5fg2p2dv1sljg2kwi66nbppb"))))
28468 (properties `((upstream-name . "rlist")))
28469 (build-system r-build-system)
28470 (propagated-inputs (list r-data-table r-jsonlite r-xml r-yaml))
28471 (home-page "https://renkun-ken.github.io/rlist/")
28472 (synopsis "A Toolbox for Non-Tabular Data Manipulation")
28473 (description
28474 "This package provides a set of functions for data manipulation with
28475 list objects, including mapping, filtering, grouping, sorting, updating,
28476 searching, and other useful functions. Most functions are designed to be
28477 pipeline friendly so that data processing with lists can be chained.")
28478 (license license:expat)))
28479
28480 (define-public r-rsample
28481 (package
28482 (name "r-rsample")
28483 (version "0.1.1")
28484 (source
28485 (origin
28486 (method url-fetch)
28487 (uri (cran-uri "rsample" version))
28488 (sha256
28489 (base32
28490 "01xwhj4zfvxbv9cjb6mbz3aphxqc3cnjjx1xy2yx2wd94fbka42z"))))
28491 (properties `((upstream-name . "rsample")))
28492 (build-system r-build-system)
28493 (propagated-inputs
28494 (list r-dplyr
28495 r-ellipsis
28496 r-furrr
28497 r-generics
28498 r-lifecycle
28499 r-purrr
28500 r-rlang
28501 r-slider
28502 r-tibble
28503 r-tidyr
28504 r-tidyselect
28505 r-vctrs))
28506 (native-inputs
28507 (list r-knitr))
28508 (home-page "https://rsample.tidymodels.org")
28509 (synopsis "General resampling infrastructure")
28510 (description
28511 "This package provides classes and functions to create and summarize
28512 different types of resampling objects (e.g. bootstrap, cross-validation).")
28513 (license license:gpl2)))
28514
28515 (define-public r-dicedesign
28516 (package
28517 (name "r-dicedesign")
28518 (version "1.9")
28519 (source
28520 (origin
28521 (method url-fetch)
28522 (uri (cran-uri "DiceDesign" version))
28523 (sha256
28524 (base32
28525 "1a8ixa65xgyfri03cviic8qi2plbhdyz8m02bwif8w94w0q3ghlk"))))
28526 (properties `((upstream-name . "DiceDesign")))
28527 (build-system r-build-system)
28528 (home-page "http://dice.emse.fr/")
28529 (synopsis "Designs of computer experiments")
28530 (description
28531 "This package provides tools to create some specific @code{Space-Filling
28532 Design} (SFD) and to test their quality.")
28533 (license license:gpl3)))
28534
28535 (define-public r-dials
28536 (package
28537 (name "r-dials")
28538 (version "0.1.1")
28539 (source
28540 (origin
28541 (method url-fetch)
28542 (uri (cran-uri "dials" version))
28543 (sha256
28544 (base32
28545 "1h695g9vklqn0vd53j9k03s0989xjpjr11h5qhz3a0v6465fwm8a"))))
28546 (properties `((upstream-name . "dials")))
28547 (build-system r-build-system)
28548 (propagated-inputs
28549 (list r-dicedesign
28550 r-dplyr
28551 r-glue
28552 r-hardhat
28553 r-lifecycle
28554 r-purrr
28555 r-rlang
28556 r-scales
28557 r-tibble
28558 r-vctrs
28559 r-withr))
28560 (native-inputs (list r-knitr))
28561 (home-page "https://dials.tidymodels.org/")
28562 (synopsis "Tools for creating tuning parameter values")
28563 (description
28564 "Many models contain tuning parameters (i.e. parameters that cannot be
28565 directly estimated from the data). These tools can be used to define objects
28566 for creating, simulating, or validating values for such parameters.")
28567 (license license:gpl2)))
28568
28569 (define-public r-tune
28570 (package
28571 (name "r-tune")
28572 (version "0.2.0")
28573 (source
28574 (origin
28575 (method url-fetch)
28576 (uri (cran-uri "tune" version))
28577 (sha256
28578 (base32
28579 "05gxlsaqv6sjk11r5g4nkdd6hlb3bnfmc29cx4vln1blha37jx4i"))))
28580 (properties `((upstream-name . "tune")))
28581 (build-system r-build-system)
28582 (propagated-inputs
28583 (list r-cli
28584 r-dials
28585 r-dplyr
28586 r-foreach
28587 r-generics
28588 r-ggplot2
28589 r-glue
28590 r-gpfit
28591 r-hardhat
28592 r-lifecycle
28593 r-parsnip
28594 r-purrr
28595 r-recipes
28596 r-rlang
28597 r-rsample
28598 r-tibble
28599 r-tidyr
28600 r-vctrs
28601 r-withr
28602 r-workflows
28603 r-yardstick))
28604 (home-page "https://github.com/tidymodels/tune")
28605 (synopsis "Tidy tuning tools")
28606 (description
28607 "The ability to tune models is important. @code{tune} contains functions
28608 and classes to be used in conjunction with other @code{tidymodels} packages
28609 for finding reasonable values of hyper-parameters in models, pre-processing
28610 methods, and post-processing steps.")
28611 (license license:expat)))
28612
28613 (define-public r-workflowsets
28614 (package
28615 (name "r-workflowsets")
28616 (version "0.2.1")
28617 (source
28618 (origin
28619 (method url-fetch)
28620 (uri (cran-uri "workflowsets" version))
28621 (sha256
28622 (base32
28623 "0q42nhnw0mbivadcfb07v71fp39x8fcnjipvn5l5yhjzc56cfxi8"))))
28624 (properties `((upstream-name . "workflowsets")))
28625 (build-system r-build-system)
28626 (propagated-inputs
28627 (list r-cli
28628 r-dplyr
28629 r-hardhat
28630 r-generics
28631 r-ggplot2
28632 r-lifecycle
28633 r-prettyunits
28634 r-purrr
28635 r-rlang
28636 r-rsample
28637 r-tibble
28638 r-tidyr
28639 r-tune
28640 r-vctrs
28641 r-withr
28642 r-workflows))
28643 (native-inputs
28644 (list r-knitr))
28645 (home-page "https://github.com/tidymodels/workflowsets")
28646 (synopsis "Create a collection of tidymodels workflows")
28647 (description
28648 "A workflow is a combination of a model and preprocessors (e.g, a
28649 formula, recipe, etc.). In order to try different combinations of these, an
28650 object can be created that contains many workflows. There are functions to
28651 create workflows en masse as well as training them and visualizing the
28652 results.")
28653 (license license:expat)))
28654
28655 (define-public r-tidyposterior
28656 (package
28657 (name "r-tidyposterior")
28658 (version "0.1.0")
28659 (source
28660 (origin
28661 (method url-fetch)
28662 (uri (cran-uri "tidyposterior" version))
28663 (sha256
28664 (base32
28665 "1h1664sjrg6akph6nrk8ynn2kjiswv6gshy35gamam1h4axf6wah"))))
28666 (properties `((upstream-name . "tidyposterior")))
28667 (build-system r-build-system)
28668 (propagated-inputs
28669 (list r-dplyr
28670 r-generics
28671 r-ggplot2
28672 r-purrr
28673 r-rlang
28674 r-rsample
28675 r-rstanarm
28676 r-tibble
28677 r-tidyr
28678 r-tune
28679 r-vctrs
28680 r-workflowsets))
28681 (native-inputs
28682 (list r-knitr))
28683 (home-page "https://tidyposterior.tidymodels.org")
28684 (synopsis "Bayesian analysis to compare models using resampling statistics")
28685 (description
28686 "This package can be used to conduct post hoc analyses of resampling
28687 results generated by models. For example, if two models are evaluated with
28688 the @dfn{root mean squared error} (RMSE) using 10-fold cross-validation, there
28689 are 10 paired statistics. These can be used to make comparisons between
28690 models without involving a test set.")
28691 (license license:gpl2)))
28692
28693 (define-public r-tidypredict
28694 (package
28695 (name "r-tidypredict")
28696 (version "0.4.9")
28697 (source
28698 (origin
28699 (method url-fetch)
28700 (uri (cran-uri "tidypredict" version))
28701 (sha256
28702 (base32
28703 "0x0r36zvny4rqgndx7iqh39yhr53gl4d8wd8wpvdcgg35q6z02z2"))))
28704 (properties `((upstream-name . "tidypredict")))
28705 (build-system r-build-system)
28706 (propagated-inputs
28707 (list r-dplyr
28708 r-generics
28709 r-knitr
28710 r-purrr
28711 r-rlang
28712 r-stringr
28713 r-tibble
28714 r-tidyr))
28715 (native-inputs
28716 (list r-knitr))
28717 (home-page "https://tidypredict.tidymodels.org")
28718 (synopsis "Run predictions inside the database")
28719 (description
28720 "This package parses a fitted R model object, and returns a formula in
28721 Tidy Eval code that calculates the predictions. It works with several
28722 database backends because it leverages @code{dplyr} and @code{dbplyr} for the
28723 final SQL translation of the algorithm. It currently supports @code{lm()},
28724 @code{glm()}, @code{randomForest()}, @code{ranger()}, @code{earth()},
28725 @code{xgb.Booster.complete()}, @code{cubist()}, and @code{ctree()} models.")
28726 (license license:gpl3)))
28727
28728 (define-public r-janeaustenr
28729 (package
28730 (name "r-janeaustenr")
28731 (version "0.1.5")
28732 (source
28733 (origin
28734 (method url-fetch)
28735 (uri (cran-uri "janeaustenr" version))
28736 (sha256
28737 (base32
28738 "1wyn4qc28a3sval8shmyi2d7s4nl3jh96s8pzq871brxcmrncbwr"))))
28739 (properties `((upstream-name . "janeaustenr")))
28740 (build-system r-build-system)
28741 (home-page "https://github.com/juliasilge/janeaustenr")
28742 (synopsis "Jane Austen's complete novels")
28743 (description
28744 "This package provides the full texts for Jane Austen's six completed
28745 novels, ready for text analysis. These novels are \"Sense and Sensibility\",
28746 \"Pride and Prejudice\", \"Mansfield Park\", \"Emma\", \"Northanger Abbey\",
28747 and \"Persuasion\".")
28748 (license license:expat)))
28749
28750 (define-public r-tokenizers
28751 (package
28752 (name "r-tokenizers")
28753 (version "0.2.1")
28754 (source
28755 (origin
28756 (method url-fetch)
28757 (uri (cran-uri "tokenizers" version))
28758 (sha256
28759 (base32
28760 "006xf1vdrmp9skhpss9ldhmk4cwqk512cjp1pxm2gxfybpf7qq98"))))
28761 (properties `((upstream-name . "tokenizers")))
28762 (build-system r-build-system)
28763 (propagated-inputs
28764 (list r-rcpp r-snowballc r-stringi))
28765 (native-inputs
28766 (list r-knitr))
28767 (home-page "https://lincolnmullen.com/software/tokenizers/")
28768 (synopsis "Fast, consistent tokenization of natural language text")
28769 (description
28770 "This is a package for converting natural language text into tokens.
28771 It includes tokenizers for shingled n-grams, skip n-grams, words, word stems,
28772 sentences, paragraphs, characters, shingled characters, lines, tweets, Penn
28773 Treebank, regular expressions, as well as functions for counting characters,
28774 words, and sentences, and a function for splitting longer texts into separate
28775 documents, each with the same number of words. The tokenizers have a
28776 consistent interface, and the package is built on the @code{stringi} and
28777 @code{Rcpp} packages for fast yet correct tokenization in UTF-8 encoding.")
28778 (license license:expat)))
28779
28780 (define-public r-hunspell
28781 (package
28782 (name "r-hunspell")
28783 (version "3.0.1")
28784 (source
28785 (origin
28786 (method url-fetch)
28787 (uri (cran-uri "hunspell" version))
28788 (sha256
28789 (base32
28790 "0ql6y05d4xxpm468rslb0wxdp1x9l3flxzmb5w6pjg617f8vpv8z"))))
28791 (properties `((upstream-name . "hunspell")))
28792 (build-system r-build-system)
28793 (propagated-inputs
28794 (list r-digest r-rcpp))
28795 (native-inputs
28796 (list r-knitr))
28797 (home-page "https://github.com/ropensci/hunspell#readme")
28798 (synopsis "High-performance stemmer, tokenizer, and spell checker")
28799 (description
28800 "This package provides a low-level spell checker and morphological
28801 analyzer based on the famous @code{hunspell} library. The package can analyze
28802 or check individual words as well as parse text, LaTeX, HTML or XML documents.
28803 For a more user-friendly interface use the @code{spelling} package which
28804 builds on this package to automate checking of files, documentation and
28805 vignettes in all common formats.")
28806 ;; The hunspell library itself is available under one of GPL2, LGPL2.1, or
28807 ;; MPL; in addition to these licenses the rest of the R wrapper is also
28808 ;; available under the Expat license.
28809 (license (list license:gpl2
28810 license:lgpl2.1
28811 license:mpl1.1
28812 license:expat))))
28813
28814 (define-public r-tidytext
28815 (package
28816 (name "r-tidytext")
28817 (version "0.3.3")
28818 (source
28819 (origin
28820 (method url-fetch)
28821 (uri (cran-uri "tidytext" version))
28822 (sha256
28823 (base32
28824 "0kljaxyhhzbcv9jkjdy0wn6gkamh25y2xfb9k11sqhz3lv72nfvm"))))
28825 (properties `((upstream-name . "tidytext")))
28826 (build-system r-build-system)
28827 (propagated-inputs
28828 (list r-dplyr
28829 r-generics
28830 r-hunspell
28831 r-janeaustenr
28832 r-lifecycle
28833 r-matrix
28834 r-purrr
28835 r-rlang
28836 r-stringr
28837 r-tibble
28838 r-tokenizers
28839 r-vctrs))
28840 (native-inputs
28841 (list r-knitr))
28842 (home-page "https://github.com/juliasilge/tidytext")
28843 (synopsis "Text mining using dplyr, ggplot2, and other Tidy tools")
28844 (description
28845 "This is a package for text mining for word processing and sentiment
28846 analysis using @code{dplyr}, @code{ggplot2}, and other Tidy tools.")
28847 (license license:expat)))
28848
28849 (define-public r-parsnip
28850 (package
28851 (name "r-parsnip")
28852 (version "0.2.1")
28853 (source
28854 (origin
28855 (method url-fetch)
28856 (uri (cran-uri "parsnip" version))
28857 (sha256
28858 (base32
28859 "195i4j38mljv9193yx8lmh65h85yhc52y9vc1mk8zvxi52ks1yln"))))
28860 (properties `((upstream-name . "parsnip")))
28861 (build-system r-build-system)
28862 (propagated-inputs
28863 (list r-cli
28864 r-dplyr
28865 r-generics
28866 r-ggplot2
28867 r-globals
28868 r-glue
28869 r-hardhat
28870 r-lifecycle
28871 r-magrittr
28872 r-prettyunits
28873 r-purrr
28874 r-rlang
28875 r-tibble
28876 r-tidyr
28877 r-vctrs
28878 r-withr))
28879 (native-inputs
28880 (list r-knitr))
28881 (home-page "https://parsnip.tidymodels.org")
28882 (synopsis "Common API to modeling and analysis functions")
28883 (description
28884 "This package provides a common interface to allow users to specify a
28885 model without having to remember the different argument names across different
28886 functions or computational engines (e.g. R, Spark, Stan, etc).")
28887 (license license:gpl2)))
28888
28889 (define-public r-infer
28890 (package
28891 (name "r-infer")
28892 (version "1.0.0")
28893 (source
28894 (origin
28895 (method url-fetch)
28896 (uri (cran-uri "infer" version))
28897 (sha256
28898 (base32
28899 "1qbpcn7jqbvgwnpiyylj021j8m33p58a204yd1pfkpzd3x2lbsm6"))))
28900 (properties `((upstream-name . "infer")))
28901 (build-system r-build-system)
28902 (propagated-inputs
28903 (list r-broom
28904 r-dplyr
28905 r-generics
28906 r-ggplot2
28907 r-glue
28908 r-magrittr
28909 r-patchwork
28910 r-purrr
28911 r-rlang
28912 r-tibble
28913 r-tidyr))
28914 (native-inputs
28915 (list r-knitr))
28916 (home-page "https://github.com/tidymodels/infer")
28917 (synopsis "Tidy statistical inference")
28918 (description
28919 "The objective of this package is to perform inference using an
28920 expressive statistical grammar that coheres with the Tidy design framework.")
28921 (license license:cc0)))
28922
28923 (define-public r-modeldata
28924 (package
28925 (name "r-modeldata")
28926 (version "0.1.1")
28927 (source
28928 (origin
28929 (method url-fetch)
28930 (uri (cran-uri "modeldata" version))
28931 (sha256
28932 (base32
28933 "0jgrwf9k8p9j3ywg3yv2wzwsx3snlwm3dd9vfqwhlr7j63jg3cm4"))))
28934 (properties `((upstream-name . "modeldata")))
28935 (build-system r-build-system)
28936 (home-page "https://modeldata.tidymodels.org")
28937 (synopsis "Data sets useful for modeling packages")
28938 (description
28939 "This package provides data sets used for demonstrating or testing
28940 model-related packages.")
28941 (license license:expat)))
28942
28943 (define-public r-conflicted
28944 (package
28945 (name "r-conflicted")
28946 (version "1.1.0")
28947 (source
28948 (origin
28949 (method url-fetch)
28950 (uri (cran-uri "conflicted" version))
28951 (sha256
28952 (base32
28953 "1qg9ar114r98wm0pnf65mss4v2ksq3924rlpm13mqp4s3p6j9yi4"))))
28954 (properties `((upstream-name . "conflicted")))
28955 (build-system r-build-system)
28956 (propagated-inputs
28957 (list r-memoise r-rlang))
28958 (home-page "https://github.com/r-lib/conflicted")
28959 (synopsis "Alternative conflict resolution strategy")
28960 (description
28961 "R's default conflict management system gives the most recently loaded
28962 package precedence. This can make it hard to detect conflicts, particularly
28963 when they arise because a package update creates ambiguity that did not
28964 previously exist. The @code{conflicted} package takes a different approach,
28965 making every conflict an error and forcing you to choose which function to
28966 use.")
28967 (license license:gpl3)))
28968
28969 (define-public r-tidymodels
28970 (package
28971 (name "r-tidymodels")
28972 (version "0.2.0")
28973 (source
28974 (origin
28975 (method url-fetch)
28976 (uri (cran-uri "tidymodels" version))
28977 (sha256
28978 (base32
28979 "1xkv4s4kn7k9137svb39zrm5302gxpxyp1jv5bb6z0xrvj5wwa4i"))))
28980 (properties `((upstream-name . "tidymodels")))
28981 (build-system r-build-system)
28982 (propagated-inputs
28983 (list r-broom
28984 r-cli
28985 r-conflicted
28986 r-dials
28987 r-dplyr
28988 r-ggplot2
28989 r-hardhat
28990 r-infer
28991 r-modeldata
28992 r-parsnip
28993 r-purrr
28994 r-recipes
28995 r-rlang
28996 r-rsample
28997 r-rstudioapi
28998 r-tibble
28999 r-tidyr
29000 r-tune
29001 r-workflows
29002 r-workflowsets
29003 r-yardstick))
29004 (native-inputs
29005 (list r-knitr))
29006 (home-page "https://github.com/tidymodels/tidymodels")
29007 (synopsis "Tidy collection for modeling and statistical analysis")
29008 (description
29009 "The tidy modeling \"verse\" is a collection of packages for modeling and
29010 statistical analysis that share the underlying design philosophy, grammar, and
29011 data structures of the tidyverse.")
29012 (license license:gpl3)))
29013
29014 (define-public r-lsa
29015 (package
29016 (name "r-lsa")
29017 (version "0.73.3")
29018 (source
29019 (origin
29020 (method url-fetch)
29021 (uri (cran-uri "lsa" version))
29022 (sha256
29023 (base32
29024 "16k1g0kh3yaw7azg76aqf3hn3b6jgqg92xx0syai8l0my9ci2zzh"))))
29025 (properties `((upstream-name . "lsa")))
29026 (build-system r-build-system)
29027 (propagated-inputs
29028 (list r-snowballc))
29029 (home-page "https://cran.r-project.org/package=lsa")
29030 (synopsis "Latent semantic analysis")
29031 (description
29032 "The basic idea of latent semantic analysis (LSA) is, that text do have a
29033 higher order (=latent semantic) structure which, however, is obscured by word
29034 usage (e.g. through the use of synonyms or polysemy). By using conceptual
29035 indices that are derived statistically via a truncated singular value
29036 decomposition (a two-mode factor analysis) over a given document-term matrix,
29037 this variability problem can be overcome.")
29038 (license license:gpl2+)))
29039
29040 (define-public r-mlecens
29041 (package
29042 (name "r-mlecens")
29043 (version "0.1-5")
29044 (source
29045 (origin
29046 (method url-fetch)
29047 (uri (cran-uri "MLEcens" version))
29048 (sha256
29049 (base32
29050 "0cdl0y44clds4sg8hikhk354a5xrfbyfg8lxrbh1bfg410rkj186"))))
29051 (properties `((upstream-name . "MLEcens")))
29052 (build-system r-build-system)
29053 (home-page "http://stat.ethz.ch/~maathuis/")
29054 (synopsis "Computation of the MLE for bivariate (interval) censored data")
29055 (description
29056 "This package contains functions to compute the nonparametric
29057 @dfn{maximum likelihood estimator} (MLE) for the bivariate distribution of
29058 @code{(X,Y)}, when realizations of @code{(X,Y)} cannot be observed directly.
29059 To be more precise, we consider the situation where we observe a set of
29060 rectangles that are known to contain the unobservable realizations of (X,Y).
29061 We compute the MLE based on such a set of rectangles. The methods can also be
29062 used for univariate censored data (see data set @code{cosmesis}), and for
29063 censored data with competing risks (see data set @code{menopause}). The
29064 package also provides functions to visualize the observed data and the MLE.")
29065 (license license:gpl2+)))
29066
29067 (define-public r-metafor
29068 (package
29069 (name "r-metafor")
29070 (version "2.4-0")
29071 (source
29072 (origin
29073 (method url-fetch)
29074 (uri (cran-uri "metafor" version))
29075 (sha256
29076 (base32
29077 "1b599fxk7s0brkchmx698fr5k4g1kzkia2rnlvhg349ffs5nfjmn"))))
29078 (properties `((upstream-name . "metafor")))
29079 (build-system r-build-system)
29080 (propagated-inputs
29081 (list r-matrix r-nlme))
29082 (home-page "https://cran.r-project.org/web/packages/metafor/")
29083 (synopsis "Meta-analysis package for R")
29084 (description
29085 "This package provides a comprehensive collection of functions for
29086 conducting meta-analyses in R. The package includes functions to calculate
29087 various effect sizes or outcome measures, fit fixed-, random-, and
29088 mixed-effects models to such data, carry out moderator and meta-regression
29089 analyses, and create various types of meta-analytical plots (e.g., forest,
29090 funnel, radial, L'Abbe, Baujat, GOSH plots). For meta-analyses of binomial
29091 and person-time data, the package also provides functions that implement
29092 specialized methods, including the Mantel-Haenszel method, Peto's method, and
29093 a variety of suitable generalized linear (mixed-effects) models (i.e.
29094 mixed-effects logistic and Poisson regression models). Finally, the package
29095 provides functionality for fitting meta-analytic multivariate/multilevel
29096 models that account for non-independent sampling errors and/or true
29097 effects (e.g. due to the inclusion of multiple treatment studies, multiple
29098 endpoints, or other forms of clustering). Network meta-analyses and
29099 meta-analyses accounting for known correlation structures (e.g. due to
29100 phylogenetic relatedness) can also be conducted.")
29101 (license license:gpl2+)))
29102
29103 (define-public r-altmeta
29104 (package
29105 (name "r-altmeta")
29106 (version "4.0")
29107 (source
29108 (origin
29109 (method url-fetch)
29110 (uri (cran-uri "altmeta" version))
29111 (sha256
29112 (base32
29113 "17cyiydf4n5j64izj7jph2v43h4x9kfd5b0x6m0ik5ci2aw8xzr5"))))
29114 (properties `((upstream-name . "altmeta")))
29115 (build-system r-build-system)
29116 (propagated-inputs
29117 (list r-coda r-lme4 r-matrix r-metafor r-rjags))
29118 (home-page "https://cran.r-project.org/web/packages/altmeta/")
29119 (synopsis "Alternative meta-analysis methods")
29120 (description
29121 "This package provides alternative statistical methods for meta-analysis,
29122 including:
29123
29124 @enumerate
29125 @item bivariate generalized linear mixed models for synthesizing odds ratios,
29126 relative risks, and risk differences
29127 @item heterogeneity tests and measures that are robust to outliers;
29128 @item measures, tests, and visualization tools for publication bias or
29129 small-study effects;
29130 @item meta-analysis of diagnostic tests for synthesizing sensitivities,
29131 specificities, etc.;
29132 @item meta-analysis methods for synthesizing proportions;
29133 @item models for multivariate meta-analysis.
29134 @end enumerate
29135 ")
29136 (license license:gpl2+)))
29137
29138 (define-public r-perm
29139 (package
29140 (name "r-perm")
29141 (version "1.0-0.2")
29142 (source
29143 (origin
29144 (method url-fetch)
29145 (uri (cran-uri "perm" version))
29146 (sha256
29147 (base32
29148 "182ac1y91yzb34zwdcmx5fdfr5z0cha0gx2bgk36gwxhgfc994kj"))))
29149 (properties `((upstream-name . "perm")))
29150 (build-system r-build-system)
29151 (home-page "https://cran.r-project.org/web/packages/perm/")
29152 (synopsis "Exact or asymptotic permutation tests")
29153 (description
29154 "This package provides several methods for performing permutation tests.
29155 It has three main functions, to perform linear permutation tests. These tests
29156 are tests where the test statistic is the sum of the product of a
29157 covariate (usually group indicator) and the scores.")
29158 ;; Any version of the GPL
29159 (license license:gpl2+)))
29160
29161 (define-public r-qtl
29162 (package
29163 (name "r-qtl")
29164 (version "1.50")
29165 (source
29166 (origin
29167 (method url-fetch)
29168 (uri (cran-uri "qtl" version))
29169 (sha256
29170 (base32
29171 "1mcy9wlp5lj5f3z4mf3n5li7x32vj67rmhjnzsp8fhfw0ipnaf1d"))))
29172 (build-system r-build-system)
29173 (home-page "https://rqtl.org/")
29174 (synopsis "R package for analyzing QTL experiments in genetics")
29175 (description "R/qtl is an extension library for the R statistics system.
29176 It is used to analyze experimental crosses for identifying genes contributing
29177 to variation in quantitative traits (so-called quantitative trait loci, QTLs).
29178
29179 Using a hidden Markov model, R/qtl estimates genetic maps, to identify
29180 genotyping errors, and to perform single-QTL and two-QTL, two-dimensional
29181 genome scans.")
29182 (license license:gpl3)))
29183
29184 (define-public r-qtl2
29185 (package
29186 (name "r-qtl2")
29187 (version "0.28")
29188 (source (origin
29189 (method url-fetch)
29190 (uri (cran-uri "qtl2" version))
29191 (sha256
29192 (base32 "0ppc6dzlq77mppxc6bczai9gi40jrbxd1466y2cn2s8a4ah1jg9y"))))
29193 (build-system r-build-system)
29194 (propagated-inputs
29195 (list r-data-table
29196 r-jsonlite
29197 r-rcpp
29198 r-rcppeigen
29199 r-rsqlite
29200 r-yaml))
29201 (home-page "https://kbroman.org/qtl2/")
29202 (synopsis "Quantitative Trait Locus Mapping in Experimental Crosses")
29203 (description
29204 "This package provides a set of tools to perform @dfn{Quantitative Trait
29205 Locus} (QTL) analysis in experimental crosses. It is a reimplementation of the
29206 @code{R/qtl} package to better handle high-dimensional data and complex cross
29207 designs. Broman et al. (2018) <doi:10.1534/genetics.118.301595>.")
29208 (license license:gpl3)))
29209
29210 (define-public r-seqminer
29211 (package
29212 (name "r-seqminer")
29213 (version "8.4")
29214 (source
29215 (origin
29216 (method url-fetch)
29217 (uri (cran-uri "seqminer" version))
29218 (sha256
29219 (base32
29220 "1mbx1hw9dhgry7hhan43g6aiz2lyd5api7wxq3fwajyzjrc6p1g8"))))
29221 (build-system r-build-system)
29222 (inputs
29223 (list zlib))
29224 (home-page "http://seqminer.genomic.codes")
29225 (synopsis "Read nucleotide sequence data (VCF, BCF, and METAL formats)")
29226 (description
29227 "This package provides tools to integrate nucleotide sequencing
29228 data (variant call format, e.g. VCF or BCF) or meta-analysis results in R.")
29229 ;; Any version of the GPL is acceptable
29230 (license (list license:gpl2+ license:gpl3+))))
29231
29232 (define-public r-maldiquant
29233 (package
29234 (name "r-maldiquant")
29235 (version "1.21")
29236 (source
29237 (origin
29238 (method url-fetch)
29239 (uri (cran-uri "MALDIquant" version))
29240 (sha256
29241 (base32
29242 "1y1g3819ss06dry70kfhg2syddw71682qmzkcyppfsma6hhghw87"))))
29243 (properties `((upstream-name . "MALDIquant")))
29244 (build-system r-build-system)
29245 (native-inputs
29246 (list r-knitr))
29247 (home-page "https://cran.r-project.org/web/packages/MALDIquant")
29248 (synopsis "Quantitative analysis of mass spectrometry data")
29249 (description
29250 "This package provides a complete analysis pipeline for matrix-assisted
29251 laser desorption/ionization-time-of-flight (MALDI-TOF) and other
29252 two-dimensional mass spectrometry data. In addition to commonly used plotting
29253 and processing methods it includes distinctive features, namely baseline
29254 subtraction methods such as morphological filters (TopHat) or the
29255 statistics-sensitive non-linear iterative peak-clipping algorithm (SNIP), peak
29256 alignment using warping functions, handling of replicated measurements as well
29257 as allowing spectra with different resolutions.")
29258 (license license:gpl3+)))
29259
29260 (define-public r-scattermore
29261 (package
29262 (name "r-scattermore")
29263 (version "0.8")
29264 (source
29265 (origin
29266 (method url-fetch)
29267 (uri (cran-uri "scattermore" version))
29268 (sha256
29269 (base32
29270 "1rgqm7r1k7j3h2y4i6d1a2y8fzivfcbmr7dj9d367c0w4vc77pfv"))))
29271 (properties `((upstream-name . "scattermore")))
29272 (build-system r-build-system)
29273 (propagated-inputs
29274 (list r-ggplot2 r-scales))
29275 (home-page "https://github.com/exaexa/scattermore")
29276 (synopsis "Scatterplots with more points")
29277 (description
29278 "This package provides C-based tools for converting large scatterplot
29279 data to rasters. It speeds up plotting of data with millions of points.")
29280 (license license:gpl3+)))
29281
29282 (define-public r-seuratobject
29283 (package
29284 (name "r-seuratobject")
29285 (version "4.1.0")
29286 (source
29287 (origin
29288 (method url-fetch)
29289 (uri (cran-uri "SeuratObject" version))
29290 (sha256
29291 (base32
29292 "018anas8a9m3kh9jn5370v64d93k64z3iic13a75hp6r7g5hd94w"))))
29293 (properties `((upstream-name . "SeuratObject")))
29294 (build-system r-build-system)
29295 (propagated-inputs
29296 (list r-future
29297 r-future-apply
29298 r-matrix
29299 r-progressr
29300 r-rcpp
29301 r-rcppeigen
29302 r-rgeos
29303 r-rlang
29304 r-sp))
29305 (home-page "https://satijalab.org/seurat")
29306 (synopsis "Data structures for single cell data")
29307 (description
29308 "This package defines S4 classes for single-cell genomic data and
29309 associated information, such as dimensionality reduction embeddings,
29310 nearest-neighbor graphs, and spatially-resolved coordinates. It provides data
29311 access methods and R-native hooks to ensure the Seurat object is familiar to
29312 other R users.")
29313 (license license:gpl3)))
29314
29315 (define-public r-seurat
29316 (package
29317 (name "r-seurat")
29318 (version "4.1.1")
29319 (source (origin
29320 (method url-fetch)
29321 (uri (cran-uri "Seurat" version))
29322 (sha256
29323 (base32
29324 "1klamxk6dj0jgpfwll5frcnj9h8lh8c5fxdn9ky7h8xk35lsj6i0"))))
29325 (properties `((upstream-name . "Seurat")))
29326 (build-system r-build-system)
29327 (propagated-inputs
29328 (list r-cluster
29329 r-cowplot
29330 r-fitdistrplus
29331 r-future
29332 r-future-apply
29333 r-ggplot2
29334 r-ggrepel
29335 r-ggridges
29336 r-httr
29337 r-ica
29338 r-igraph
29339 r-irlba
29340 r-jsonlite
29341 r-kernsmooth
29342 r-leiden
29343 r-lmtest
29344 r-mass
29345 r-matrix
29346 r-matrixstats
29347 r-miniui
29348 r-patchwork
29349 r-pbapply
29350 r-plotly
29351 r-png
29352 r-rann
29353 r-rcolorbrewer
29354 r-rcpp
29355 r-rcppannoy
29356 r-rcppeigen
29357 r-rcppprogress
29358 r-reticulate
29359 r-rlang
29360 r-rocr
29361 r-rtsne
29362 r-scales
29363 r-scattermore
29364 r-sctransform
29365 r-seuratobject
29366 r-shiny
29367 r-spatstat-core
29368 r-spatstat-geom
29369 r-tibble
29370 r-uwot))
29371 (home-page "http://www.satijalab.org/seurat")
29372 (synopsis "Seurat is an R toolkit for single cell genomics")
29373 (description
29374 "This package is an R package designed for QC, analysis, and
29375 exploration of single cell RNA-seq data. It easily enables widely-used
29376 analytical techniques, including the identification of highly variable genes,
29377 dimensionality reduction; PCA, ICA, t-SNE, standard unsupervised clustering
29378 algorithms; density clustering, hierarchical clustering, k-means, and the
29379 discovery of differentially expressed genes and markers.")
29380 (license license:gpl3)))
29381
29382 (define-public r-seuratdisk
29383 (let ((commit "163f1aade5bac38ed1e9e9c912283a7e74781610")
29384 (revision "1"))
29385 (package
29386 (name "r-seuratdisk")
29387 (version (git-version "0.0.0.9019" revision commit))
29388 (source
29389 (origin
29390 (method git-fetch)
29391 (uri (git-reference
29392 (url "https://github.com/mojaveazure/seurat-disk")
29393 (commit commit)))
29394 (file-name (git-file-name name version))
29395 (sha256
29396 (base32 "1d1v8qi6kknzy5fj6bl8akwy74h5h143i00lyidsnqjbwp9n4qnw"))))
29397 (properties `((upstream-name . "SeuratDisk")))
29398 (build-system r-build-system)
29399 (propagated-inputs
29400 (list r-cli
29401 r-crayon
29402 r-hdf5r
29403 r-matrix
29404 r-r6
29405 r-rlang
29406 r-seurat
29407 r-seuratobject
29408 r-stringi
29409 r-withr))
29410 (native-inputs
29411 (list r-knitr))
29412 (home-page "https://github.com/mojaveazure/seurat-disk")
29413 (synopsis "Interfaces for HDF5-based single cell file formats")
29414 (description
29415 "The h5Seurat file format is specifically designed for the storage and
29416 analysis of multi-modal single-cell and spatially-resolved expression
29417 experiments, for example, from CITE-seq or 10X Visium technologies. It holds
29418 all molecular information and associated metadata, including (for example)
29419 nearest-neighbor graphs, dimensional reduction information, spatial
29420 coordinates and image data, and cluster labels. This package also supports
29421 rapid and on-disk conversion between h5Seurat and AnnData objects, with the
29422 goal of enhancing interoperability between Seurat and Scanpy.")
29423 (license license:gpl3))))
29424
29425 (define-public r-seuratdata
29426 (let ((commit "b59556b24d7d6728a5744c9c715dd5f7f32ed7a5")
29427 (revision "1"))
29428 (package
29429 (name "r-seuratdata")
29430 (version (git-version "0.2.1" revision commit))
29431 (source
29432 (origin
29433 (method git-fetch)
29434 (uri (git-reference
29435 (url "https://github.com/satijalab/seurat-data")
29436 (commit commit)))
29437 (file-name (git-file-name name version))
29438 (sha256
29439 (base32 "1xfdmdmgn4r0z6w4cxa98ic6xk8i6qz054r215dvqbjs1vydsbf9"))))
29440 (properties `((upstream-name . "SeuratData")))
29441 (build-system r-build-system)
29442 (arguments
29443 `(#:phases
29444 (modify-phases %standard-phases
29445 ;; When there is no HOME directory, this package will fail to load
29446 ;; the included list of packages.
29447 (add-after 'unpack 'set-HOME
29448 (lambda _ (setenv "HOME" "/tmp"))))))
29449 (propagated-inputs
29450 (list r-cli r-crayon r-rappdirs))
29451 (home-page "https://github.com/satijalab/seurat-data")
29452 (synopsis "Install and manage Seurat datasets")
29453 (description
29454 "Single cell RNA sequencing datasets can be large, consisting of
29455 matrices that contain expression data for several thousand features across
29456 several thousand cells. This package is designed to easily install, manage,
29457 and learn about various single-cell datasets, provided Seurat objects and
29458 distributed as independent packages.")
29459 (license license:gpl3))))
29460
29461 (define-public r-phangorn
29462 (package
29463 (name "r-phangorn")
29464 (version "2.8.1")
29465 (source
29466 (origin
29467 (method url-fetch)
29468 (uri (cran-uri "phangorn" version))
29469 (sha256
29470 (base32
29471 "0xfwi7adl1pcfcwk72fj7lkwfm0wiip96ij7m4252xr9mq818ivd"))))
29472 (build-system r-build-system)
29473 (propagated-inputs
29474 (list r-ape
29475 r-fastmatch
29476 r-igraph
29477 r-matrix
29478 r-quadprog
29479 r-rcpp))
29480 (native-inputs
29481 (list r-knitr))
29482 (home-page "https://github.com/KlausVigo/phangorn")
29483 (synopsis "Phylogenetic analysis in R")
29484 (description
29485 "Phangorn is a package for phylogenetic analysis in R. It supports
29486 estimation of phylogenetic trees and networks using Maximum Likelihood,
29487 Maximum Parsimony, distance methods and Hadamard conjugation.")
29488 (license license:gpl2+)))
29489
29490 (define-public r-diversitree
29491 (package
29492 (name "r-diversitree")
29493 (version "0.9-16")
29494 (source
29495 (origin
29496 (method url-fetch)
29497 (uri (cran-uri "diversitree" version))
29498 (sha256
29499 (base32
29500 "0rzrk7xsn4gy271pbcw3azndhx0c06bmsgrg6libjmlfnmq6j8sc"))))
29501 (build-system r-build-system)
29502 (native-inputs
29503 (list gfortran))
29504 (inputs (list fftw gsl))
29505 (propagated-inputs
29506 (list r-ape r-desolve r-rcpp r-subplex))
29507 (home-page "https://www.zoology.ubc.ca/prog/diversitree")
29508 (synopsis "Comparative 'phylogenetic' analyses of diversification")
29509 (description "This package contains a number of comparative \"phylogenetic\"
29510 methods, mostly focusing on analysing diversification and character evolution.
29511 Contains implementations of \"BiSSE\" (Binary State Speciation and Extinction)
29512 and its unresolved tree extensions, \"MuSSE\" (Multiple State Speciation and
29513 Extinction), \"QuaSSE\", \"GeoSSE\", and \"BiSSE-ness\" Other included methods
29514 include Markov models of discrete and continuous trait evolution and constant
29515 rate speciation and extinction.")
29516 (license license:gpl2+)))
29517
29518 (define-public r-calculus
29519 (package
29520 (name "r-calculus")
29521 (version "0.3.3")
29522 (source
29523 (origin
29524 (method url-fetch)
29525 (uri (cran-uri "calculus" version))
29526 (sha256
29527 (base32
29528 "1fhvr0l2mqik3d95v0vanafxmiab147g5a87q956g2i945wc5f22"))))
29529 (properties `((upstream-name . "calculus")))
29530 (build-system r-build-system)
29531 (propagated-inputs
29532 (list r-rcpp))
29533 (native-inputs
29534 (list r-knitr))
29535 (home-page "https://github.com/eguidotti/calculus")
29536 (synopsis "High dimensional numerical and symbolic calculus")
29537 (description
29538 "Efficient C++ optimized functions for numerical and symbolic calculus.
29539 It includes basic symbolic arithmetic, tensor calculus, Einstein summing
29540 convention, fast computation of the Levi-Civita symbol and generalized
29541 Kronecker delta, Taylor series expansion, multivariate Hermite polynomials,
29542 accurate high-order derivatives, differential operators (Gradient, Jacobian,
29543 Hessian, Divergence, Curl, Laplacian) and numerical integration in arbitrary
29544 orthogonal coordinate systems: cartesian, polar, spherical, cylindrical,
29545 parabolic or user defined by custom scale factors.")
29546 (license license:gpl3)))
29547
29548 (define-public r-decon
29549 (package
29550 (name "r-decon")
29551 (version "1.3-4")
29552 (source
29553 (origin
29554 (method url-fetch)
29555 (uri (cran-uri "decon" version))
29556 (sha256
29557 (base32
29558 "036cv56wf42q2p3d5h15hbrp5rc29xxy20qwv4k1qzhkq6hmw0qs"))))
29559 (properties `((upstream-name . "decon")))
29560 (build-system r-build-system)
29561 (native-inputs
29562 (list gfortran))
29563 (home-page
29564 "https://cran.r-project.org/web/packages/decon/")
29565 (synopsis "Deconvolution Estimation in Measurement Error Models")
29566 (description
29567 "This package contains a collection of functions to deal with
29568 nonparametric measurement error problems using deconvolution
29569 kernel methods. We focus two measurement error models in the
29570 package: (1) an additive measurement error model, where the
29571 goal is to estimate the density or distribution function from
29572 contaminated data; (2) nonparametric regression model with
29573 errors-in-variables. The R functions allow the measurement errors
29574 to be either homoscedastic or heteroscedastic. To make the
29575 deconvolution estimators computationally more efficient in R,
29576 we adapt the \"Fast Fourier Transform\" (FFT) algorithm for
29577 density estimation with error-free data to the deconvolution
29578 kernel estimation. Several methods for the selection of the
29579 data-driven smoothing parameter are also provided in the package.
29580 See details in: Wang, X.F. and Wang, B. (2011). Deconvolution
29581 estimation in measurement error models: The R package decon.
29582 Journal of Statistical Software, 39(10), 1-24.")
29583 (license license:gpl3+)))
29584
29585 (define-public r-densestbayes
29586 (package
29587 (name "r-densestbayes")
29588 (version "1.0-2.1")
29589 (source
29590 (origin
29591 (method url-fetch)
29592 (uri (cran-uri "densEstBayes" version))
29593 (sha256
29594 (base32 "1pzmgn65lv91zg1588qhwczy9f2zgciknlc4l072mvh2i7hncw2b"))))
29595 (properties `((upstream-name . "densEstBayes")))
29596 (build-system r-build-system)
29597 (propagated-inputs
29598 (list r-bh
29599 r-mass
29600 r-nlme
29601 r-rcpp
29602 r-rcpparmadillo
29603 r-rcppeigen
29604 r-rcppparallel
29605 r-rstan
29606 r-rstantools
29607 r-stanheaders))
29608 (home-page "https://cran.r-project.org/package=densEstBayes")
29609 (synopsis "Density estimation via Bayesian inference engines")
29610 (description
29611 "Bayesian density estimates for univariate continuous random samples are
29612 provided using the Bayesian inference engine paradigm. The engine options
29613 are: Hamiltonian Monte Carlo, the no U-turn sampler, semiparametric mean field
29614 variational Bayes and slice sampling. The methodology is described in Wand
29615 and Yu (2020), arXiv:2009.06182.")
29616 (license license:gpl2+)))
29617
29618 (define-public r-locpol
29619 (package
29620 (name "r-locpol")
29621 (version "0.7-0")
29622 (source
29623 (origin
29624 (method url-fetch)
29625 (uri (cran-uri "locpol" version))
29626 (sha256
29627 (base32
29628 "1p915n0l09kbwkly627074jslxl01yssp1rf0c7sygvsw6sgy5lm"))))
29629 (properties `((upstream-name . "locpol")))
29630 (build-system r-build-system)
29631 (home-page
29632 "https://cran.r-project.org/web/packages/locpol/")
29633 (synopsis "Kernel Local Polynomial Regression")
29634 (description
29635 "Computes local polynomial estimators for the regression and
29636 also density. It comprises several different utilities to handle
29637 kernel estimators.")
29638 (license license:gpl2+)))
29639
29640 (define-public r-lpme
29641 (package
29642 (name "r-lpme")
29643 (version "1.1.3")
29644 (source
29645 (origin
29646 (method url-fetch)
29647 (uri (cran-uri "lpme" version))
29648 (sha256
29649 (base32
29650 "1ch11cwjci98m7952p9wdsh9fj5y1mjya6ayq0q4wmbm824qfpzb"))))
29651 (properties `((upstream-name . "lpme")))
29652 (build-system r-build-system)
29653 (propagated-inputs
29654 (list r-decon r-flexmix r-locpol r-rcpp r-rcpparmadillo))
29655 (home-page
29656 "https://cran.r-project.org/web/packages/lpme/")
29657 (synopsis "Nonparametric Estimation of Measurement Error Models")
29658 (description
29659 "Provide nonparametric methods for mean regression model,
29660 modal regression and conditional density estimation in the
29661 presence/absence of measurement error. Bandwidth selection is
29662 also provided for each method.")
29663 (license license:gpl2+)))
29664
29665 (define-public r-aws-signature
29666 (package
29667 (name "r-aws-signature")
29668 (version "0.6.0")
29669 (source
29670 (origin
29671 (method url-fetch)
29672 (uri (cran-uri "aws.signature" version))
29673 (sha256
29674 (base32
29675 "15llpcnrdq4y6jsn7079yjmgbr5d1wgy2ymsm3jj3gkrd5l4zzpp"))))
29676 (properties `((upstream-name . "aws.signature")))
29677 (build-system r-build-system)
29678 (propagated-inputs
29679 (list r-base64enc r-digest))
29680 (home-page "https://github.com/cloudyr/aws.signature")
29681 (synopsis "Amazon Web Services Request Signatures")
29682 (description
29683 "This package generates version 2 and 4 request signatures for Amazon Web
29684 Services (AWS) and provides a mechanism for retrieving credentials from
29685 environment variables, AWS credentials files, and EC2 instance metadata. For
29686 use on EC2 instances, the package 'aws.ec2metadata' is suggested.")
29687 (license license:gpl2+)))
29688
29689 (define-public r-aws-s3
29690 (package
29691 (name "r-aws-s3")
29692 (version "0.3.21")
29693 (source
29694 (origin
29695 (method url-fetch)
29696 (uri (cran-uri "aws.s3" version))
29697 (sha256
29698 (base32
29699 "132cczq0ml7lpp2yl6l4p99dn1zihrncnpa6wyad4m9mnr50a8dx"))))
29700 (properties `((upstream-name . "aws.s3")))
29701 (build-system r-build-system)
29702 (propagated-inputs
29703 (list r-aws-signature
29704 r-base64enc
29705 r-curl
29706 r-digest
29707 r-httr
29708 r-xml2))
29709 (home-page "https://github.com/cloudyr/aws.s3")
29710 (synopsis "AWS S3 Client Package")
29711 (description
29712 "This package provides a simple client package for the Amazon Web
29713 Services (AWS) Simple Storage Service (S3) REST API.")
29714 (license license:gpl2+)))
29715
29716 (define-public r-lgr
29717 (package
29718 (name "r-lgr")
29719 (version "0.4.3")
29720 (source (origin
29721 (method url-fetch)
29722 (uri (cran-uri "lgr" version))
29723 (sha256
29724 (base32
29725 "18s92qyakhvp336kk2777ydypwfrfwfz6a1gqkq812zy3kcb4mcc"))))
29726 (build-system r-build-system)
29727 (propagated-inputs
29728 (list r-r6))
29729 (native-inputs
29730 (list r-knitr))
29731 (home-page "https://s-fleck.github.io/lgr/")
29732 (synopsis "Fully featured logging framework")
29733 (description "This package offers a flexible, feature-rich yet
29734 light-weight logging framework based on @code{R6} classes. It supports
29735 hierarchical loggers, custom log levels, arbitrary data fields in log events,
29736 logging to plaintext, JSON, (rotating) files, memory buffers, and databases, as
29737 well as email and push notifications.")
29738 (license license:expat)))
29739
29740 (define-public r-mhg
29741 (package
29742 (name "r-mhg")
29743 (version "1.1")
29744 (source
29745 (origin
29746 (method url-fetch)
29747 (uri (cran-uri "mHG" version))
29748 (sha256
29749 (base32
29750 "1rz5ncrvvv9h9grls15apa63v2nh9j87fmp4mwjjil37jx6a5zki"))))
29751 (properties `((upstream-name . "mHG")))
29752 (build-system r-build-system)
29753 (home-page "https://cran.r-project.org/package=mHG")
29754 (synopsis "Minimum-hypergeometric test")
29755 (description
29756 "This package runs a minimum-hypergeometric (mHG) test as described in
29757 \"Discovering Motifs in Ranked Lists of DNA Sequences\" by Eran Eden.")
29758 (license license:gpl2)))
29759
29760 (define-public r-mlr3measures
29761 (package
29762 (name "r-mlr3measures")
29763 (version "0.4.1")
29764 (source (origin
29765 (method url-fetch)
29766 (uri (cran-uri "mlr3measures" version))
29767 (sha256
29768 (base32
29769 "1kbw3xd7c9x65v9zzs8i5skmrvl0mf2wsbyssmiif0lvrbzfhcmb"))))
29770 (build-system r-build-system)
29771 (propagated-inputs
29772 (list r-checkmate r-prroc))
29773 (home-page "https://mlr3measures.mlr-org.com/")
29774 (synopsis "Performance measures for mlr3")
29775 (description "This package implements multiple performance measures for
29776 supervised learning. It includes over 40 measures for regression and
29777 classification. Additionally, meta information about the performance measures
29778 can be queried, e.g. what the best and worst possible performances scores
29779 are.")
29780 (license license:lgpl3)))
29781
29782 (define-public r-mlr3misc
29783 (package
29784 (name "r-mlr3misc")
29785 (version "0.10.0")
29786 (source (origin
29787 (method url-fetch)
29788 (uri (cran-uri "mlr3misc" version))
29789 (sha256
29790 (base32
29791 "1wnzyij1x67smkb3gjb9gpp7iy5andfl0s1c78xx4wylhycc6m11"))))
29792 (build-system r-build-system)
29793 (propagated-inputs
29794 (list r-backports r-checkmate r-data-table r-digest r-r6))
29795 (home-page "https://mlr3misc.mlr-org.com/")
29796 (synopsis "Helper functions for mlr3")
29797 (description "@code{mlr3misc} provides frequently used helper functions
29798 and assertions used in @code{mlr3} and its companion packages. It comes with
29799 helper functions for functional programming, for printing, to work with
29800 @code{data.table}, as well as some generally useful @code{R6} classes. This
29801 package also supersedes the package @code{BBmisc}.")
29802 (license license:lgpl3)))
29803
29804 (define-public r-mlr3pipelines
29805 (package
29806 (name "r-mlr3pipelines")
29807 (version "0.4.1")
29808 (source (origin
29809 (method url-fetch)
29810 (uri (cran-uri "mlr3pipelines" version))
29811 (sha256
29812 (base32
29813 "1zz55i8c08znxpcs6gp5inaw96c6la9wnsla0972ankvj1hsrcr2"))))
29814 (build-system r-build-system)
29815 (propagated-inputs
29816 (list r-backports
29817 r-checkmate
29818 r-data-table
29819 r-digest
29820 r-lgr
29821 r-mlr3
29822 r-mlr3misc
29823 r-paradox
29824 r-r6
29825 r-withr))
29826 (home-page "https://mlr3pipelines.mlr-org.com/")
29827 (synopsis "Preprocessing Operators and Pipelines for @code{mlr3}")
29828 (description "@code{mlr3pipelines} enriches @code{mlr3} with a diverse
29829 set of pipelining operators (PipeOps) that can be composed into graphs.
29830 Operations exist for data preprocessing, model fitting, and ensemble learning.
29831 Graphs can themselves be treated as @code{mlr3} Learners and can therefore be
29832 resampled, benchmarked, and tuned.")
29833 (license license:lgpl3)))
29834
29835 (define-public r-mlr3ordinal
29836 (let ((commit "9febac983b11b7b1f477e5cf0212e5999cd2ed44")
29837 (revision "0"))
29838 (package
29839 (name "r-mlr3ordinal")
29840 (version (git-version "0.1.0-9000" revision commit))
29841 (source (origin
29842 (method git-fetch)
29843 (uri (git-reference
29844 (url "https://github.com/mlr-org/mlr3ordinal")
29845 (commit commit)))
29846 (file-name (git-file-name name version))
29847 (sha256
29848 (base32
29849 "1icfhz1pjm0mlsn2y60gsrbk31b2p7xmpx3xsg7639rcgdb5f9gl"))))
29850 (build-system r-build-system)
29851 (propagated-inputs
29852 (list r-checkmate
29853 r-data-table
29854 r-mlr3
29855 r-mlr3misc
29856 r-mlr3pipelines
29857 r-nloptr
29858 r-ordinal
29859 r-paradox
29860 r-r6))
29861 (home-page "https://mlr3ordinal.mlr-org.com/")
29862 (synopsis "Ordinal Regression for mlr3")
29863 (description "This package extends @code{mlr3} with support for
29864 performing ordinal regression.")
29865 (license license:expat))))
29866
29867 (define-public r-paradox
29868 (package
29869 (name "r-paradox")
29870 (version "0.9.0")
29871 (source (origin
29872 (method url-fetch)
29873 (uri (cran-uri "paradox" version))
29874 (sha256
29875 (base32
29876 "0fzq59903fklgj3kblnpzasy13a82s72c1qjsy7d1m0fyj28ahdw"))))
29877 (build-system r-build-system)
29878 (propagated-inputs
29879 (list r-backports r-checkmate r-data-table r-mlr3misc r-r6))
29880 (home-page "https://paradox.mlr-org.com/")
29881 (synopsis "Define and work with parameter spaces for complex algorithms")
29882 (description "With this package it is possible to define parameter spaces,
29883 constraints and dependencies for arbitrary algorithms, and to program on such
29884 spaces. It also includes statistical designs and random samplers. Objects are
29885 implemented as @code{R6} classes.")
29886 (license license:lgpl3)))
29887
29888 (define-public r-mlr3
29889 (package
29890 (name "r-mlr3")
29891 (version "0.13.3")
29892 (source (origin
29893 (method url-fetch)
29894 (uri (cran-uri "mlr3" version))
29895 (sha256
29896 (base32
29897 "010kl51zsgpc0qv63g1fg9kiw9m0wzqskcr14f1j8b9zi1lwi0bf"))))
29898 (build-system r-build-system)
29899 (propagated-inputs
29900 (list r-r6
29901 r-backports
29902 r-checkmate
29903 r-data-table
29904 r-evaluate
29905 r-future
29906 r-future-apply
29907 r-lgr
29908 r-mlbench
29909 r-mlr3measures
29910 r-mlr3misc
29911 r-palmerpenguins
29912 r-paradox
29913 r-parallelly
29914 r-uuid))
29915 (home-page "https://mlr3.mlr-org.com/")
29916 (synopsis "Machine Learning in R - Next Generation")
29917 (description "@code{mlr3} enables efficient, object-oriented programming
29918 on the building blocks of machine learning. It provides @code{R6} objects for
29919 tasks, learners, resamplings, and measures. The package is geared towards
29920 scalability and larger datasets by supporting parallelization and out-of-memory
29921 data-backends like databases. While @code{mlr3} focuses on the core
29922 computational operations, add-on packages provide additional functionality.")
29923 (license license:lgpl3)))
29924
29925 (define-public r-mlr3learners
29926 (package
29927 (name "r-mlr3learners")
29928 (version "0.5.3")
29929 (source (origin
29930 (method url-fetch)
29931 (uri (cran-uri "mlr3learners" version))
29932 (sha256
29933 (base32
29934 "088i2piv7sgxsvc7jyr6mq53vqf8yjdlrysgqphsryq6k50i00zd"))))
29935 (build-system r-build-system)
29936 (propagated-inputs
29937 (list r-checkmate
29938 r-data-table
29939 r-mlr3
29940 r-mlr3misc
29941 r-paradox
29942 r-r6))
29943 (home-page "https://mlr3learners.mlr-org.com/")
29944 (synopsis "Recommended Learners for @code{mlr3}")
29945 (description "@code{mlr3learners} extends @code{mlr3} and @code{mlr3proba}
29946 with interfaces to essential machine learning packages on CRAN. This includes,
29947 but is not limited to: (penalized) linear and logistic regression, linear and
29948 quadratic discriminant analysis, k-nearest neighbors, naive Bayes, support
29949 vector machines, and gradient boosting.")
29950 (license license:lgpl3)))
29951
29952 (define-public r-bbotk
29953 (package
29954 (name "r-bbotk")
29955 (version "0.5.2")
29956 (source
29957 (origin
29958 (method url-fetch)
29959 (uri (cran-uri "bbotk" version))
29960 (sha256
29961 (base32
29962 "0k1vlh14mfbcgdw2yfhab7shkrqm4d2h6af12mybr9gks26xmw82"))))
29963 (properties `((upstream-name . "bbotk")))
29964 (build-system r-build-system)
29965 (propagated-inputs
29966 (list r-checkmate
29967 r-data-table
29968 r-lgr
29969 r-mlr3misc
29970 r-paradox
29971 r-r6))
29972 (native-inputs
29973 (list r-knitr))
29974 (home-page "https://bbotk.mlr-org.com")
29975 (synopsis "Black-Box Optimization Toolkit")
29976 (description "This package provides a common framework for optimization of
29977 black-box functions for other packages, e.g. @code{mlr3}. It offers various
29978 optimization methods e.g. grid search, random search and generalized simulated
29979 annealing.")
29980 (license license:lgpl3)))
29981
29982 (define-public r-mlr3tuning
29983 (package
29984 (name "r-mlr3tuning")
29985 (version "0.13.0")
29986 (source (origin
29987 (method url-fetch)
29988 (uri (cran-uri "mlr3tuning" version))
29989 (sha256
29990 (base32
29991 "0czlpi8bshn8cjq7pa1cyy7lpv35g4hv2nbyhc59zrcykzfv8afm"))))
29992 (build-system r-build-system)
29993 (propagated-inputs
29994 (list r-bbotk
29995 r-checkmate
29996 r-data-table
29997 r-lgr
29998 r-mlr3
29999 r-mlr3misc
30000 r-paradox
30001 r-r6))
30002 (home-page "https://mlr3tuning.mlr-org.com/")
30003 (synopsis "Tuning for @code{mlr3}")
30004 (description "@code{mlr3tuning} implements methods for hyperparameter
30005 tuning, e.g. Grid Search, Random Search, or Simulated Annealing. Various
30006 termination criteria can be set and combined. The class @code{AutoTuner} provides a
30007 convenient way to perform nested resampling in combination with @code{mlr3}.")
30008 (license license:lgpl3)))
30009
30010 (define-public r-fontliberation
30011 (package
30012 (name "r-fontliberation")
30013 (version "0.1.0")
30014 (source
30015 (origin
30016 (method url-fetch)
30017 (uri (cran-uri "fontLiberation" version))
30018 (sha256
30019 (base32
30020 "1w1rl0g4ayyp8lwppmz9yzj9cizg7i50g07216jkm1q5w0is9pmc"))))
30021 (properties
30022 `((upstream-name . "fontLiberation")))
30023 (build-system r-build-system)
30024 (home-page "https://cran.r-project.org/package=fontLiberation")
30025 (synopsis "Liberation fonts")
30026 (description
30027 "This package provides a placeholder for the Liberation fontset intended
30028 for the fontquiver package. This fontset covers the 12 combinations of
30029 families (sans, serif, mono) and faces (plain, bold, italic, bold italic)
30030 supported in R graphics devices.")
30031 (license license:silofl1.1)))
30032
30033 (define-public r-fontbitstreamvera
30034 (package
30035 (name "r-fontbitstreamvera")
30036 (version "0.1.1")
30037 (source
30038 (origin
30039 (method url-fetch)
30040 (uri (cran-uri "fontBitstreamVera" version))
30041 (sha256
30042 (base32
30043 "0nipdlmhjv1wr3aidcl97nk6mppdkd65krgwqnhdsnv0jpfv761j"))))
30044 (properties
30045 `((upstream-name . "fontBitstreamVera")))
30046 (build-system r-build-system)
30047 (home-page "https://cran.r-project.org/package=fontBitstreamVera")
30048 (synopsis "Fonts for fontquiver")
30049 (description
30050 "This package is a placeholder for the Bitstream Vera font. It is
30051 intended for the fontquiver package.")
30052 (license
30053 (license:fsdg-compatible
30054 "https://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts"
30055 "The Font Software may be sold as part of a larger software package but
30056 no copy of one or more of the Font Software typefaces may be sold by
30057 itself."))))
30058
30059 (define-public r-fontquiver
30060 (package
30061 (name "r-fontquiver")
30062 (version "0.2.1")
30063 (source
30064 (origin
30065 (method url-fetch)
30066 (uri (cran-uri "fontquiver" version))
30067 (sha256
30068 (base32
30069 "0qv3i9hch7cygl9983s3w68wfh5qvym2jkm52pp06p6mq8a1i1wm"))))
30070 (properties `((upstream-name . "fontquiver")))
30071 (build-system r-build-system)
30072 (propagated-inputs
30073 (list r-fontbitstreamvera r-fontliberation))
30074 (home-page "https://cran.r-project.org/package=fontquiver")
30075 (synopsis "Set of installed fonts")
30076 (description
30077 "This package provides a set of fonts. This is useful when you want to
30078 avoid system fonts to make sure your outputs are reproducible.")
30079 (license license:gpl3)))
30080
30081 (define-public r-freetypeharfbuzz
30082 (package
30083 (name "r-freetypeharfbuzz")
30084 (version "0.2.6")
30085 (source
30086 (origin
30087 (method url-fetch)
30088 (uri (cran-uri "freetypeharfbuzz" version))
30089 (sha256
30090 (base32
30091 "0r3icgnq3jk4fm6z92cmhzdmflbk5df8zsmjg0dzpc4y48xafnk7"))))
30092 (properties
30093 `((upstream-name . "freetypeharfbuzz")))
30094 (build-system r-build-system)
30095 (arguments
30096 `(#:phases
30097 (modify-phases %standard-phases
30098 (add-after 'unpack 'prepare-static-libraries
30099 (lambda* (#:key inputs #:allow-other-keys)
30100 (mkdir-p "src/target/include")
30101 (let ((freetype (assoc-ref inputs "static-freetype"))
30102 (harfbuzz (assoc-ref inputs "static-harfbuzz")))
30103 (substitute* "src/Makevars.in"
30104 (("include @MK_FILE@") "") ; do not build static libs
30105 (("^HB_STATIC_LIB =.*")
30106 (string-append "HB_STATIC_LIB = " harfbuzz "/lib/libharfbuzz.a\n"))
30107 (("^FT_STATIC_LIB =.*")
30108 (string-append "FT_STATIC_LIB = " freetype "/lib/libfreetype.a\n")))
30109 (copy-recursively (string-append freetype "/include")
30110 "src/target/include")
30111 (copy-recursively (string-append harfbuzz "/include")
30112 "src/target/include")))))))
30113 (propagated-inputs
30114 (list r-fontquiver))
30115 ;; This may defeat the purpose of this package as our versions of freetype
30116 ;; and harfbuzz obviously differ from the tarballs offered by this
30117 ;; project. On the other hand, Guix arguably does a better job at
30118 ;; "ensur[ing] deterministic computation".
30119 (native-inputs
30120 `(("static-freetype"
30121 ,(package
30122 (inherit (static-package freetype))
30123 (arguments
30124 `(#:configure-flags
30125 (list "--enable-static=yes"
30126 "--with-pic=yes"
30127 "--without-zlib"
30128 "--without-bzip2"
30129 "--without-png"
30130 "--without-harfbuzz")))))
30131 ("static-harfbuzz"
30132 ,(package
30133 (inherit (static-package harfbuzz))
30134 (arguments
30135 `(#:tests? #false ; fail because shared library is disabled
30136 #:configure-flags
30137 (list "--enable-static=yes"
30138 "--enable-shared=no"
30139 "--with-pic=yes"
30140 "--with-freetype=yes"
30141 "--without-icu"
30142 "--without-cairo"
30143 "--without-fontconfig"
30144 "--without-glib")))))))
30145 (inputs
30146 (list zlib))
30147 (home-page "https://cran.r-project.org/package=freetypeharfbuzz")
30148 (synopsis "Deterministic computation of text box metrics")
30149 (description
30150 "Unlike other tools that dynamically link to the Cairo stack,
30151 freetypeharfbuzz is statically linked to specific versions of the FreeType and
30152 harfbuzz libraries. This ensures deterministic computation of text box
30153 extents for situations where reproducible results are crucial (for instance
30154 unit tests of graphics).")
30155 (license license:gpl3)))
30156
30157 (define-public r-vdiffr
30158 (package
30159 (name "r-vdiffr")
30160 (version "1.0.4")
30161 (source
30162 (origin
30163 (method url-fetch)
30164 (uri (cran-uri "vdiffr" version))
30165 (sha256
30166 (base32
30167 "1z8nn8yh6jfzb9r7ylmigwh1p30lrclqm6khmp323qqphzmzfdwy"))))
30168 (properties `((upstream-name . "vdiffr")))
30169 (build-system r-build-system)
30170 (inputs
30171 (list libpng zlib))
30172 (propagated-inputs
30173 (list r-cpp11
30174 r-diffobj
30175 r-glue
30176 r-htmltools
30177 r-lifecycle
30178 r-rlang
30179 r-testthat
30180 r-xml2))
30181 (home-page "https://github.com/r-lib/vdiffr")
30182 (synopsis "Visual regression testing and graphical diffing")
30183 (description
30184 "This package is an extension to the testthat package that makes it easy
30185 to add graphical unit tests. It provides a Shiny application to manage the
30186 test cases.")
30187 (license license:gpl3)))
30188
30189 (define-public r-highlight
30190 (package
30191 (name "r-highlight")
30192 (version "0.5.0")
30193 (source
30194 (origin
30195 (method url-fetch)
30196 (uri (cran-uri "highlight" version))
30197 (sha256
30198 (base32
30199 "1shar4y07wyixg0ichdrn2xhgwkl3mv2pxkalqzisc69w605b3hf"))))
30200 (properties `((upstream-name . "highlight")))
30201 (build-system r-build-system)
30202 (home-page "https://github.com/hadley/highlight")
30203 (synopsis "Syntax highlighter for R code")
30204 (description
30205 "This package provides a syntax highlighter for R code based on the
30206 results of the R parser. It supports rendering in HTML and LaTeX markup. It
30207 includes a custom Sweave driver performing syntax highlighting of R code
30208 chunks.")
30209 (license license:gpl3+)))
30210
30211 (define-public r-clustree
30212 (package
30213 (name "r-clustree")
30214 (version "0.4.4")
30215 (source
30216 (origin
30217 (method url-fetch)
30218 (uri (cran-uri "clustree" version))
30219 (sha256
30220 (base32
30221 "0vwmicajl7c0rmjdmf4f857fii0xrxz25vjkn888svlsikw00qbs"))))
30222 (properties `((upstream-name . "clustree")))
30223 (build-system r-build-system)
30224 (propagated-inputs
30225 (list r-checkmate
30226 r-dplyr
30227 r-ggplot2
30228 r-ggraph
30229 r-ggrepel
30230 r-igraph
30231 r-rlang
30232 r-tidygraph
30233 r-viridis))
30234 (native-inputs
30235 (list r-knitr))
30236 (home-page "https://github.com/lazappi/clustree")
30237 (synopsis "Visualize clusterings at different resolutions")
30238 (description
30239 "Deciding what resolution to use can be a difficult question when
30240 approaching a clustering analysis. One way to approach this problem is to
30241 look at how samples move as the number of clusters increases. This package
30242 allows you to produce clustering trees, a visualization for interrogating
30243 clusterings as resolution increases.")
30244 (license license:gpl3)))
30245
30246 (define-public r-textshaping
30247 (package
30248 (name "r-textshaping")
30249 (version "0.3.6")
30250 (source
30251 (origin
30252 (method url-fetch)
30253 (uri (cran-uri "textshaping" version))
30254 (sha256
30255 (base32
30256 "1niaj1dh09rqrg9hrh98ddnc0f2nkyq9iizv24lcwm9gjs3w1ql0"))))
30257 (properties `((upstream-name . "textshaping")))
30258 (build-system r-build-system)
30259 (inputs
30260 (list freetype fribidi harfbuzz zlib))
30261 (propagated-inputs
30262 (list r-cpp11 r-systemfonts))
30263 (native-inputs
30264 (list pkg-config r-knitr))
30265 (home-page "https://github.com/r-lib/textshaping")
30266 (synopsis "Bindings to the HarfBuzz and Fribidi libraries for text shaping")
30267 (description
30268 "This package provides access to the text shaping functionality in the
30269 HarfBuzz library and the bidirectional algorithm in the Fribidi library. This
30270 is a low-level utility package mainly for graphic devices that expands upon
30271 the font tool-set provided by the @code{systemfonts} package.")
30272 (license license:expat)))
30273
30274 (define-public r-ragg
30275 (package
30276 (name "r-ragg")
30277 (version "1.2.2")
30278 (source
30279 (origin
30280 (method url-fetch)
30281 (uri (cran-uri "ragg" version))
30282 (sha256
30283 (base32
30284 "1q43pwmljsqgrikkh2g1n7bpz9c8py5dnj44cfg3y2br7b4m2q9v"))))
30285 (properties `((upstream-name . "ragg")))
30286 (build-system r-build-system)
30287 (inputs
30288 (list freetype libjpeg-turbo libpng libtiff zlib))
30289 (propagated-inputs
30290 (list r-systemfonts r-textshaping))
30291 (native-inputs
30292 (list pkg-config))
30293 (home-page "https://ragg.r-lib.org")
30294 (synopsis "Graphic devices based on AGG")
30295 (description
30296 "Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D
30297 drawing library. The ragg package provides a set of graphic devices based on
30298 AGG to use as alternative to the raster devices provided through the
30299 @code{grDevices} package.")
30300 (license license:expat)))
30301
30302 (define-public r-downlit
30303 (package
30304 (name "r-downlit")
30305 (version "0.4.0")
30306 (source
30307 (origin
30308 (method url-fetch)
30309 (uri (cran-uri "downlit" version))
30310 (sha256
30311 (base32
30312 "10zvrqdpwavdy97h3q26bqh3k63z61fmc04w9vwsnvmnv8hnh3vl"))))
30313 (properties `((upstream-name . "downlit")))
30314 (build-system r-build-system)
30315 (propagated-inputs
30316 (list r-brio
30317 r-desc
30318 r-digest
30319 r-evaluate
30320 r-fansi
30321 r-memoise
30322 r-rlang
30323 r-vctrs
30324 r-yaml))
30325 (home-page "https://downlit.r-lib.org/")
30326 (synopsis "Syntax highlighting and automatic linking")
30327 (description
30328 "This package provides syntax highlighting of R code, specifically
30329 designed for the needs of RMarkdown packages like @code{pkgdown},
30330 @code{hugodown}, and @code{bookdown}. It includes linking of function calls
30331 to their documentation on the web, and automatic translation of ANSI escapes
30332 in output to the equivalent HTML.")
30333 (license license:expat)))
30334
30335 (define-public r-pkgdown
30336 (package
30337 (name "r-pkgdown")
30338 (version "2.0.2")
30339 (source
30340 (origin
30341 (method url-fetch)
30342 (uri (cran-uri "pkgdown" version))
30343 (sha256
30344 (base32
30345 "11grx7a2rz6b4kwspm7c8crjav677c22hysnp4bkwh5g8kr5nm2h"))))
30346 (properties `((upstream-name . "pkgdown")))
30347 (build-system r-build-system)
30348 (inputs (list pandoc))
30349 (propagated-inputs
30350 (list r-bslib
30351 r-callr
30352 r-crayon
30353 r-desc
30354 r-digest
30355 r-downlit
30356 r-fs
30357 r-httr
30358 r-jsonlite
30359 r-magrittr
30360 r-memoise
30361 r-purrr
30362 r-ragg
30363 r-rlang
30364 r-rmarkdown
30365 r-tibble
30366 r-whisker
30367 r-withr
30368 r-xml2
30369 r-yaml))
30370 (native-inputs
30371 (list r-knitr))
30372 (home-page "https://pkgdown.r-lib.org")
30373 (synopsis "Make static HTML documentation for an R package")
30374 (description
30375 "The goal of this package is to generate an attractive and useful website
30376 from a source package. @code{pkgdown} converts your documentation, vignettes,
30377 README file, and more to HTML making it easy to share information about your
30378 package online.")
30379 (license license:expat)))
30380
30381 (define-public r-prereg
30382 (package
30383 (name "r-prereg")
30384 (version "0.6.0")
30385 (source
30386 (origin
30387 (method url-fetch)
30388 (uri (cran-uri "prereg" version))
30389 (sha256
30390 (base32
30391 "039nrl5cirsx1ysh214dr6xnn1h6h3f90im6k9dgmzfksxdqigpw"))))
30392 (properties `((upstream-name . "prereg")))
30393 (build-system r-build-system)
30394 (propagated-inputs
30395 (list r-rmarkdown))
30396 (home-page "https://github.com/crsh/prereg")
30397 (synopsis
30398 "R Markdown Templates to preregister Scientific Studies")
30399 (description
30400 "This package provides a collection of templates to author
30401 preregistration documents for scientific studies in PDF format.")
30402 (license license:gpl3)))
30403
30404 (define-public r-ez
30405 (package
30406 (name "r-ez")
30407 (version "4.4-0")
30408 (source
30409 (origin
30410 (method url-fetch)
30411 (uri (cran-uri "ez" version))
30412 (sha256
30413 (base32
30414 "0a58s94x576dfz7wcbivrr2hmdh5x1vy16zwkqp9fmdzqx38pagq"))))
30415 (properties `((upstream-name . "ez")))
30416 (build-system r-build-system)
30417 (propagated-inputs
30418 (list r-car
30419 r-ggplot2
30420 r-lme4
30421 r-mass
30422 r-matrix
30423 r-mgcv
30424 r-plyr
30425 r-reshape2
30426 r-scales
30427 r-stringr))
30428 (home-page "https://github.com/mike-lawrence/ez")
30429 (synopsis "Easy Analysis and Visualization of Factorial Experiments")
30430 (description
30431 "Facilitates easy analysis of factorial experiments, including purely
30432 within-Ss designs (a.k.a. \"repeated measures\"), purely between-Ss designs,
30433 and mixed within-and-between-Ss designs. The functions in this package aim to
30434 provide simple, intuitive and consistent specification of data analysis and
30435 visualization. Visualization functions also include design visualization for
30436 pre-analysis data auditing, and correlation matrix visualization. Finally,
30437 this package includes functions for non-parametric analysis, including
30438 permutation tests and bootstrap resampling. The bootstrap function obtains
30439 predictions either by cell means or by more advanced/powerful mixed effects
30440 models, yielding predictions and confidence intervals that may be easily
30441 visualized at any level of the experiment's design.")
30442 (license license:gpl2+)))
30443
30444 (define-public r-qdapregex
30445 (package
30446 (name "r-qdapregex")
30447 (version "0.7.2")
30448 (source
30449 (origin
30450 (method url-fetch)
30451 (uri (cran-uri "qdapRegex" version))
30452 (sha256
30453 (base32
30454 "1xa8q1way3gjadrjh3mv3xr4c6b4h16nd2c6lgl969difplpfz9p"))))
30455 (properties `((upstream-name . "qdapRegex")))
30456 (build-system r-build-system)
30457 (propagated-inputs (list r-stringi))
30458 (home-page
30459 "https://trinker.github.com/qdapRegex/")
30460 (synopsis
30461 "Regular Expression Removal, Extraction, and Replacement Tools")
30462 (description
30463 "This package provides a collection of regular expression tools
30464 associated with the @code{qdap} package that may be useful outside of the
30465 context of discourse analysis. Tools include removal/extraction/replacement of
30466 abbreviations, dates, dollar amounts, email addresses, hash tags, numbers,
30467 percentages, citations, person tags, phone numbers, times, and zip codes.")
30468 (license license:gpl2)))
30469
30470 (define-public r-mgsub
30471 (package
30472 (name "r-mgsub")
30473 (version "1.7.3")
30474 (source
30475 (origin
30476 (method url-fetch)
30477 (uri (cran-uri "mgsub" version))
30478 (sha256
30479 (base32
30480 "1mci6x65h94qiz9cwikx2inbrwkykv43zbs8abfbx416zrh2bbn9"))))
30481 (properties `((upstream-name . "mgsub")))
30482 (build-system r-build-system)
30483 (native-inputs (list r-knitr))
30484 (home-page
30485 "https://cran.r-project.org/package=mgsub")
30486 (synopsis
30487 "Safe, Multiple, Simultaneous String Substitution")
30488 (description
30489 "Designed to enable simultaneous substitution in strings in a safe
30490 fashion. Safe means it does not rely on placeholders (which can cause errors
30491 in same length matches).")
30492 (license license:expat)))
30493
30494 (define-public r-textshape
30495 (package
30496 (name "r-textshape")
30497 (version "1.7.3")
30498 (source
30499 (origin
30500 (method url-fetch)
30501 (uri (cran-uri "textshape" version))
30502 (sha256
30503 (base32
30504 "0k9injxykgj2qprc7dygd7gafvcbh3r9x84qzaa1al21pk0dz7ds"))))
30505 (properties `((upstream-name . "textshape")))
30506 (build-system r-build-system)
30507 (propagated-inputs
30508 (list r-data-table r-slam r-stringi))
30509 (home-page "https://github.com/trinker/textshape")
30510 (synopsis "Tools for Reshaping Text")
30511 (description
30512 "Tools that can be used to reshape and restructure text data.")
30513 (license license:gpl2)))
30514
30515 (define-public r-syuzhet
30516 (package
30517 (name "r-syuzhet")
30518 (version "1.0.6")
30519 (source
30520 (origin
30521 (method url-fetch)
30522 (uri (cran-uri "syuzhet" version))
30523 (sha256
30524 (base32
30525 "16iccqdbw02iw82nah6kwz3gwfghi864j2y698n4b9dyc386ijzv"))))
30526 (properties `((upstream-name . "syuzhet")))
30527 (build-system r-build-system)
30528 (propagated-inputs
30529 (list r-dplyr
30530 r-dtt
30531 r-nlp
30532 r-rlang
30533 r-textshape
30534 r-tidyr
30535 r-zoo))
30536 (native-inputs (list r-knitr))
30537 (home-page "https://github.com/mjockers/syuzhet")
30538 (synopsis
30539 "Extracts Sentiment and Sentiment-Derived Plot Arcs from Text")
30540 (description
30541 "Extracts sentiment and sentiment-derived plot arcs from text using a
30542 variety of sentiment dictionaries conveniently packaged for consumption by R
30543 users. Implemented dictionaries include @dfn{syuzhet} (default) developed in the
30544 Nebraska Literary Lab, @dfn{afinn} developed by Finn Arup Nielsen, @dfn{bing}
30545 developed by Minqing Hu and Bing Liu, and @dfn{nrc} developed by Mohammad, Saif
30546 M. and Turney, Peter D. Applicable references are available in
30547 @file{README.md} and in the documentation for the @code{get_sentiment}
30548 function. The package also provides a hack for implementing Stanford's coreNLP
30549 sentiment parser. The package provides several methods for plot arc
30550 normalization.")
30551 (license license:gpl3)))
30552
30553 (define-public r-lexicon
30554 (package
30555 (name "r-lexicon")
30556 (version "1.2.1")
30557 (source
30558 (origin
30559 (method url-fetch)
30560 (uri (cran-uri "lexicon" version))
30561 (sha256
30562 (base32
30563 "0x7rscsh6par2lj11sby7bmz41cxn63iiw51lgh29z09cg8j606c"))))
30564 (properties `((upstream-name . "lexicon")))
30565 (build-system r-build-system)
30566 (propagated-inputs
30567 (list r-data-table r-syuzhet))
30568 (home-page "https://github.com/trinker/lexicon")
30569 (synopsis "Lexicons for Text Analysis")
30570 (description
30571 "This package provides a collection of lexical hash tables, dictionaries,
30572 and word lists.")
30573 (license license:gpl3)))
30574
30575 (define-public r-english
30576 (package
30577 (name "r-english")
30578 (version "1.2-6")
30579 (source
30580 (origin
30581 (method url-fetch)
30582 (uri (cran-uri "english" version))
30583 (sha256
30584 (base32
30585 "1g3nmy5p8wj3ix1vp1qmkmy3dyqisrw0md8cjrx4klqkp0wqlms9"))))
30586 (properties `((upstream-name . "english")))
30587 (build-system r-build-system)
30588 (native-inputs (list r-knitr))
30589 (home-page
30590 "https://cran.r-project.org/package=english")
30591 (synopsis "Translate Integers into English")
30592 (description
30593 "Allow numbers to be presented in an English language version, one, two,
30594 three, ... Ordinals are also available, first, second, third, ... and
30595 indefinite article choice, \"a\" or \"an\".")
30596 (license license:gpl2)))
30597
30598 (define-public r-textclean
30599 (package
30600 (name "r-textclean")
30601 (version "0.9.3")
30602 (source
30603 (origin
30604 (method url-fetch)
30605 (uri (cran-uri "textclean" version))
30606 (sha256
30607 (base32
30608 "0kgjh6c4f14qkjc4fds7q7rpf4nkma3p0igm54fplmm3p853nvrz"))))
30609 (properties `((upstream-name . "textclean")))
30610 (build-system r-build-system)
30611 (propagated-inputs
30612 (list r-data-table
30613 r-english
30614 r-glue
30615 r-lexicon
30616 r-mgsub
30617 r-qdapregex
30618 r-stringi
30619 r-textshape))
30620 (home-page
30621 "https://github.com/trinker/textclean")
30622 (synopsis "Text Cleaning Tools")
30623 (description
30624 "Tools to clean and process text. Tools are geared at checking for
30625 substrings that are not optimal for analysis and replacing or removing them
30626 (normalizing) with more analysis friendly substrings (see Sproat, Black, Chen,
30627 Kumar, Ostendorf, & Richards (2001) @url{doi:10.1006/csla.2001.0169}) or
30628 extracting them into new variables. For example, emoticons are often used in
30629 text but not always easily handled by analysis algorithms. The
30630 @code{replace_emoticon()} function replaces emoticons with word equivalents.")
30631 (license license:gpl2)))
30632
30633 (define-public r-striprtf
30634 (package
30635 (name "r-striprtf")
30636 (version "0.5.3")
30637 (source
30638 (origin
30639 (method url-fetch)
30640 (uri (cran-uri "striprtf" version))
30641 (sha256
30642 (base32
30643 "0dqcsh3fb8j0mmmxvxjl77rryhmrjm7a3scqvk2xkgxk4xq6q316"))))
30644 (properties `((upstream-name . "striprtf")))
30645 (build-system r-build-system)
30646 (propagated-inputs
30647 (list r-magrittr r-rcpp r-stringr))
30648 (home-page "https://github.com/kota7/striprtf")
30649 (synopsis "Extract Text from RTF File")
30650 (description
30651 "Extracts plain text from @dfn{Rich Text Format} (RTF) file.")
30652 (license license:expat)))
30653
30654 (define-public r-ndjson
30655 (package
30656 (name "r-ndjson")
30657 (version "0.8.0")
30658 (source
30659 (origin
30660 (method url-fetch)
30661 (uri (cran-uri "ndjson" version))
30662 (sha256
30663 (base32
30664 "0lvzbgfi1sg4kya1mvv67z14qk3vz9q57x22qh57xq8ampdkg812"))
30665 (modules '((guix build utils)))
30666 (snippet
30667 '(begin
30668 ;; unvendor gzstream
30669 (for-each delete-file '("src/gzstream.cpp" "src/gzstream.h"))
30670 #t))))
30671 (properties `((upstream-name . "ndjson")))
30672 (build-system r-build-system)
30673 (arguments
30674 '(#:phases
30675 (modify-phases %standard-phases
30676 (add-after 'unpack 'use-system-gzstream
30677 (lambda* (#:key inputs #:allow-other-keys)
30678 (substitute* "src/Makevars"
30679 (("PKG_LIBS = " all)
30680 (string-append all "-lgzstream ")))
30681 #t)))))
30682 (inputs (list zlib gzstream))
30683 (propagated-inputs
30684 (list r-data-table r-rcpp r-tibble))
30685 (home-page "https://gitlab.com/hrbrmstr/ndjson")
30686 (synopsis
30687 "Wicked-Fast @dfn{Streaming JSON} (ndjson) Reader")
30688 (description
30689 "@dfn{Streaming JSON} (ndjson) has one JSON record per-line and many
30690 modern ndjson files contain large numbers of records. These constructs may not
30691 be columnar in nature, but it is often useful to read in these files and
30692 \"flatten\" the structure out to enable working with the data in an R
30693 @code{data.frame}-like context. Functions are provided that make it possible
30694 to read in plain ndjson files or compressed (@code{gz}) ndjson files and either
30695 validate the format of the records or create \"flat\" @code{data.table}
30696 structures from them.")
30697 (license license:expat)))
30698
30699 (define-public r-streamr
30700 (package
30701 (name "r-streamr")
30702 (version "0.4.5")
30703 (source
30704 (origin
30705 (method url-fetch)
30706 (uri (cran-uri "streamR" version))
30707 (sha256
30708 (base32
30709 "1clx3b0j2515r1nmnl6ki7qw5n54q3x2jvqv3zrc00kq71mlj7ix"))))
30710 (properties `((upstream-name . "streamR")))
30711 (build-system r-build-system)
30712 (propagated-inputs
30713 (list r-ndjson r-rcurl r-rjson))
30714 (home-page
30715 "https://cran.r-project.org/package=streamR")
30716 (synopsis
30717 "Access to Twitter Streaming API via R")
30718 (description
30719 "This package provides functions to access Twitter's filter, sample, and
30720 user streams, and to parse the output into data frames.")
30721 (license license:gpl2)))
30722
30723 (define-public r-readods
30724 (package
30725 (name "r-readods")
30726 (version "1.7.0")
30727 (source
30728 (origin
30729 (method url-fetch)
30730 (uri (cran-uri "readODS" version))
30731 (sha256
30732 (base32
30733 "1hi217ab7hp15jsbzi5ak57cqf8jn2rv78bnn74q72gn9mrfra7n"))))
30734 (properties `((upstream-name . "readODS")))
30735 (build-system r-build-system)
30736 (propagated-inputs
30737 (list r-cellranger r-readr r-stringi r-xml2))
30738 (native-inputs (list r-knitr))
30739 (home-page
30740 "https://cran.r-project.org/package=readODS")
30741 (synopsis "Read and Write ODS Files")
30742 (description
30743 "Import @dfn{OpenDocument Spreadsheet} (ODS) into R as a data frame.
30744 Also support writing data frame into ODS file.")
30745 (license license:gpl3)))
30746
30747 (define-public r-qpdf
30748 (package
30749 (name "r-qpdf")
30750 (version "1.1")
30751 (source
30752 (origin
30753 (method url-fetch)
30754 (uri (cran-uri "qpdf" version))
30755 (sha256
30756 (base32
30757 "03lnfncw8qd1fwfyqh1mjvnsjr3b63wxbah0wp5g7z7gba90dwbi"))
30758 (modules '((guix build utils)))
30759 (snippet
30760 '(begin
30761 ;; unvendor libqpdf
30762 (delete-file-recursively "src/libqpdf")
30763 (delete-file-recursively "src/include/qpdf")
30764 #t))))
30765 (properties `((upstream-name . "qpdf")))
30766 (build-system r-build-system)
30767 (arguments
30768 '(#:phases
30769 (modify-phases %standard-phases
30770 (add-after 'unpack 'configure
30771 (lambda _
30772 (setenv "EXTERNAL_QPDF" "1")
30773 #t)))))
30774 (inputs
30775 (list zlib qpdf))
30776 (propagated-inputs
30777 (list r-askpass r-curl r-rcpp))
30778 (native-inputs (list pkg-config))
30779 (home-page "https://github.com/ropensci/qpdf")
30780 (synopsis
30781 "Split, Combine and Compress PDF Files")
30782 (description
30783 "Content-preserving transformations transformations of PDF files such as
30784 split, combine, and compress. This package interfaces directly to the
30785 @code{qpdf} C++ API and does not require any command line utilities. Note that
30786 @code{qpdf} does not read actual content from PDF files: to extract text and
30787 data you need the @code{pdftools} package.")
30788 (license license:asl2.0)))
30789
30790 (define-public r-pdftools
30791 (package
30792 (name "r-pdftools")
30793 (version "3.1.1")
30794 (source
30795 (origin
30796 (method url-fetch)
30797 (uri (cran-uri "pdftools" version))
30798 (sha256
30799 (base32
30800 "1lflqf2ypdm4w033vyjykmsy8cl34sp42fzkfgfdhvl2d0xjhl96"))))
30801 (properties `((upstream-name . "pdftools")))
30802 (build-system r-build-system)
30803 (inputs (list zlib poppler))
30804 (propagated-inputs (list r-qpdf r-rcpp))
30805 (native-inputs (list pkg-config))
30806 (home-page "https://docs.ropensci.org/pdftools/")
30807 (synopsis "Text Extraction, Rendering and Converting of PDF Documents")
30808 (description
30809 "This package provides utilities based on @code{libpoppler} for
30810 extracting text, fonts, attachments and metadata from a PDF file. It also
30811 supports high quality rendering of PDF documents into PNG, JPEG, TIFF format,
30812 or into raw bitmap vectors for further processing in R.")
30813 (license license:expat)))
30814
30815 (define-public r-antiword
30816 (package
30817 (name "r-antiword")
30818 (version "1.3.1")
30819 (source
30820 (origin
30821 (method url-fetch)
30822 (uri (cran-uri "antiword" version))
30823 (sha256
30824 (base32
30825 "123v8zlczwh6fr1v3x7dl3885xlmddq1bqlcxih8zh07w0hlk1k2"))
30826 (modules '((guix build utils)))
30827 (snippet
30828 '(begin
30829 ;; unvendor libantiword
30830 (delete-file-recursively "src")
30831 #t))))
30832 (properties `((upstream-name . "antiword")))
30833 (build-system r-build-system)
30834 (arguments
30835 '(#:phases
30836 (modify-phases %standard-phases
30837 (add-after 'unpack 'use-system-antiword
30838 (lambda* (#:key inputs #:allow-other-keys)
30839 (substitute* "R/antiword.R"
30840 (("system.file\\(\"bin\", package = \"antiword\"\\)")
30841 (string-append "\"" (assoc-ref inputs "antiword") "/bin\"")))
30842 #t)))))
30843 (inputs (list antiword))
30844 (propagated-inputs (list r-sys))
30845 (home-page
30846 "https://github.com/ropensci/antiword#readme")
30847 (synopsis
30848 "Extract Text from Microsoft Word Documents")
30849 (description
30850 "Wraps the @code{AntiWord} utility to extract text from Microsoft Word
30851 documents. The utility only supports the old @code{doc} format, not the new
30852 xml based @code{docx} format. Use the @code{xml2} package to read the
30853 latter.")
30854 (license license:gpl2)))
30855
30856 (define-public r-readtext
30857 (package
30858 (name "r-readtext")
30859 (version "0.81")
30860 (source
30861 (origin
30862 (method url-fetch)
30863 (uri (cran-uri "readtext" version))
30864 (sha256
30865 (base32
30866 "0k782h5hns5v5h8a6qyfqck2hc15nq0awg8bsp196q4zviv5jw3c"))))
30867 (properties `((upstream-name . "readtext")))
30868 (build-system r-build-system)
30869 (propagated-inputs
30870 (list r-antiword
30871 r-data-table
30872 r-digest
30873 r-httr
30874 r-jsonlite
30875 r-pdftools
30876 r-readods
30877 r-readxl
30878 r-streamr
30879 r-stringi
30880 r-striprtf
30881 r-tibble
30882 r-xml2))
30883 (native-inputs (list r-knitr))
30884 (home-page
30885 "https://github.com/quanteda/readtext")
30886 (synopsis
30887 "Import and Handling for Plain and Formatted Text Files")
30888 (description
30889 "This package provides functions for importing and handling text files
30890 and formatted text files with additional meta-data, such including @code{.csv},
30891 @code{.tab}, @code{.json}, @code{.xml}, @code{.html}, @code{.pdf}, @code{.doc},
30892 @code{.docx}, @code{.rtf}, @code{.xls}, @code{.xlsx}, and others.")
30893 (license license:gpl3)))
30894
30895 (define-public r-packcircles
30896 (package
30897 (name "r-packcircles")
30898 (version "0.3.4")
30899 (source
30900 (origin
30901 (method url-fetch)
30902 (uri (cran-uri "packcircles" version))
30903 (sha256
30904 (base32
30905 "05pv5c4k4njkr0xw6i6ksiy34hcyx2lbiqpv5gxw81yrkm0rxfyk"))))
30906 (properties `((upstream-name . "packcircles")))
30907 (build-system r-build-system)
30908 (propagated-inputs (list r-rcpp))
30909 (native-inputs (list r-knitr))
30910 (home-page
30911 "https://github.com/mbedward/packcircles")
30912 (synopsis "Circle Packing")
30913 (description
30914 "Algorithms to find arrangements of non-overlapping circles.")
30915 (license license:expat)))
30916
30917 ;; Cannot unbundle liblwgeom, because PostGIS does not support building it on
30918 ;; its own.
30919 (define-public r-lwgeom
30920 (package
30921 (name "r-lwgeom")
30922 (version "0.2-8")
30923 (source
30924 (origin
30925 (method url-fetch)
30926 (uri (cran-uri "lwgeom" version))
30927 (sha256
30928 (base32
30929 "0d4b1djwrzla91mmyya2m1250mb44fzmq3d36w5mk81d4bg952pl"))))
30930 (properties `((upstream-name . "lwgeom")))
30931 (build-system r-build-system)
30932 (inputs
30933 (list geos proj sqlite zlib))
30934 (propagated-inputs
30935 (list r-rcpp r-sf r-units))
30936 (native-inputs (list pkg-config))
30937 (home-page "https://github.com/r-spatial/lwgeom/")
30938 (synopsis "Bindings to Selected 'liblwgeom' Functions for Simple Features")
30939 (description
30940 "Access to selected functions found in
30941 @url{https://github.com/postgis/postgis/tree/master/liblwgeom,liblwgeom}, the
30942 light-weight geometry library used by @url{http://postgis.net/,PostGIS}.")
30943 (license license:gpl2)))
30944
30945 (define-public r-stars
30946 (package
30947 (name "r-stars")
30948 (version "0.5-5")
30949 (source
30950 (origin
30951 (method url-fetch)
30952 (uri (cran-uri "stars" version))
30953 (sha256
30954 (base32
30955 "0hcbzr8c7wk30qjwrvx6bflzwkjpms79pavaxawnq1h8kry5fngk"))))
30956 (properties `((upstream-name . "stars")))
30957 (build-system r-build-system)
30958 (propagated-inputs
30959 (list r-abind
30960 r-classint
30961 r-lwgeom
30962 r-rlang
30963 r-sf
30964 r-units))
30965 (native-inputs (list r-knitr))
30966 (home-page "https://r-spatial.github.io/stars/")
30967 (synopsis
30968 "Spatiotemporal Arrays, Raster and Vector Data Cubes")
30969 (description
30970 "Reading, manipulating, writing and plotting spatiotemporal arrays
30971 (raster and vector data cubes) in @code{R}, using @code{GDAL} bindings provided
30972 by @code{sf}, and @code{NetCDF} bindings by @code{ncmeta} and @code{RNetCDF}.")
30973 (license license:asl2.0)))
30974
30975 (define-public r-tmaptools
30976 (package
30977 (name "r-tmaptools")
30978 (version "3.1-1")
30979 (source
30980 (origin
30981 (method url-fetch)
30982 (uri (cran-uri "tmaptools" version))
30983 (sha256
30984 (base32
30985 "0bal3czrdr93qig8s5cf5szld5vjbbks67rismfhlkmlgw6wp2gx"))))
30986 (properties `((upstream-name . "tmaptools")))
30987 (build-system r-build-system)
30988 (propagated-inputs
30989 (list r-dichromat
30990 r-lwgeom
30991 r-magrittr
30992 r-rcolorbrewer
30993 r-sf
30994 r-stars
30995 r-units
30996 r-viridislite
30997 r-xml))
30998 (home-page
30999 "https://github.com/mtennekes/tmaptools")
31000 (synopsis "Thematic Map Tools")
31001 (description
31002 "Set of tools for reading and processing spatial data. The aim is to
31003 supply the workflow to create thematic maps. This package also facilitates
31004 @code{tmap}, the package for visualizing thematic maps.")
31005 (license license:gpl3)))
31006
31007 (define-public r-rworldmap
31008 (package
31009 (name "r-rworldmap")
31010 (version "1.3-6")
31011 (source
31012 (origin
31013 (method url-fetch)
31014 (uri (cran-uri "rworldmap" version))
31015 (sha256
31016 (base32
31017 "1q1h0n9qr0m5pdx10swrh9ddsvdj8kv5nqngrf3lnx9rg9iwivjk"))))
31018 (properties `((upstream-name . "rworldmap")))
31019 (build-system r-build-system)
31020 (propagated-inputs
31021 (list r-fields r-maptools r-sp))
31022 (home-page
31023 "https://github.com/AndySouth/rworldmap/")
31024 (synopsis "Mapping Global Data")
31025 (description
31026 "Enables mapping of country level and gridded user datasets.")
31027 (license license:gpl2+)))
31028
31029 (define-public r-rtweet
31030 (package
31031 (name "r-rtweet")
31032 (version "0.7.0")
31033 (source
31034 (origin
31035 (method url-fetch)
31036 (uri (cran-uri "rtweet" version))
31037 (sha256
31038 (base32
31039 "05pbvxm2vmf6935b9s6663k3aifnkr3m52wh2jvnplmrwyrfpn9n"))))
31040 (properties `((upstream-name . "rtweet")))
31041 (build-system r-build-system)
31042 (propagated-inputs
31043 (list r-httpuv
31044 r-httr
31045 r-jsonlite
31046 r-magrittr
31047 r-progress
31048 r-rcpp
31049 r-tibble))
31050 (native-inputs (list r-knitr))
31051 (home-page
31052 "https://docs.ropensci.org/rtweet/")
31053 (synopsis "Collecting Twitter Data")
31054 (description
31055 "An implementation of calls designed to collect and organize Twitter data
31056 via @url{https://developer.twitter.com/en/docs,Twitter's REST and stream
31057 Application Program Interfaces (API)}.")
31058 (license license:expat)))
31059
31060 (define-public r-intervals
31061 (package
31062 (name "r-intervals")
31063 (version "0.15.2")
31064 (source
31065 (origin
31066 (method url-fetch)
31067 (uri (cran-uri "intervals" version))
31068 (sha256
31069 (base32
31070 "0mvwfwc03ifb30a3dzbmkv9adwqb8ajxhcw24d8xip8px063plhb"))))
31071 (properties `((upstream-name . "intervals")))
31072 (build-system r-build-system)
31073 (home-page "https://github.com/edzer/intervals")
31074 (synopsis
31075 "Tools for Working with Points and Intervals")
31076 (description
31077 "Tools for working with and comparing sets of points and intervals.")
31078 (license license:artistic2.0)))
31079
31080 (define-public r-eyelinker
31081 (package
31082 (name "r-eyelinker")
31083 (version "0.2.1")
31084 (source
31085 (origin
31086 (method url-fetch)
31087 (uri (cran-uri "eyelinker" version))
31088 (sha256
31089 (base32
31090 "0wijd45p6j2qal6wnj7zywks8p9v3m9cmyp7axmk44mrjdjx2i71"))))
31091 (properties `((upstream-name . "eyelinker")))
31092 (build-system r-build-system)
31093 (propagated-inputs
31094 (list r-intervals r-readr r-stringi r-stringr r-tibble))
31095 (native-inputs (list r-knitr))
31096 (home-page
31097 "https://github.com/a-hurst/eyelinker")
31098 (synopsis
31099 "Import ASC Files from EyeLink Eye Trackers")
31100 (description
31101 "Imports plain-text ASC data files from EyeLink eye trackers into
31102 (relatively) tidy data frames for analysis and visualization.")
31103 (license license:gpl3)))
31104
31105 (define-public r-btm
31106 (package
31107 (name "r-btm")
31108 (version "0.3.6")
31109 (source
31110 (origin
31111 (method url-fetch)
31112 (uri (cran-uri "BTM" version))
31113 (sha256
31114 (base32
31115 "0ab0wr8nbwn1w1j9hpwfz52lm1sw0qk93713y9k0hpm3pw9dq4jr"))))
31116 (properties `((upstream-name . "BTM")))
31117 (build-system r-build-system)
31118 (propagated-inputs (list r-rcpp))
31119 (home-page "https://github.com/bnosac/BTM")
31120 (synopsis "Biterm Topic Models for Short Text")
31121 (description
31122 "Biterm Topic Models find topics in collections of short texts. It is a
31123 word co-occurrence based topic model that learns topics by modeling word-word
31124 co-occurrences patterns which are called biterms. This in contrast to
31125 traditional topic models like Latent Dirichlet Allocation and Probabilistic
31126 Latent Semantic Analysis which are word-document co-occurrence topic models. A
31127 biterm consists of two words co-occurring in the same short text window. This
31128 context window can for example be a twitter message, a short answer on a
31129 survey, a sentence of a text or a document identifier. The techniques are
31130 explained in detail in the paper 'A Biterm Topic Model For Short Text' by
31131 Xiaohui Yan, Jiafeng Guo, Yanyan Lan, Xueqi Cheng (2013)
31132 @url{https://github.com/xiaohuiyan/xiaohuiyan.github.io/blob/master/paper/\
31133 BTM-WWW13.pdf}.")
31134 (license license:asl2.0)))
31135
31136 (define-public r-delaporte
31137 (package
31138 (name "r-delaporte")
31139 (version "8.0.2")
31140 (source
31141 (origin
31142 (method url-fetch)
31143 (uri (cran-uri "Delaporte" version))
31144 (sha256
31145 (base32
31146 "10xsmms2jfw7x4hmgpd35dv4n4azpjzmfid6585kg6qfh2zg23g5"))))
31147 (properties `((upstream-name . "Delaporte")))
31148 (build-system r-build-system)
31149 (native-inputs (list gfortran))
31150 (home-page "https://github.com/aadler/Delaporte")
31151 (synopsis "Statistical functions for the Delaporte distribution")
31152 (description
31153 "This package provides probability mass, distribution, quantile,
31154 random-variate generation, and method-of-moments parameter-estimation
31155 functions for the Delaporte distribution with parameterization based on
31156 Vose (2008). The Delaporte is a discrete probability distribution which can
31157 be considered the convolution of a negative binomial distribution with a
31158 Poisson distribution. Alternatively, it can be considered a counting
31159 distribution with both Poisson and negative binomial components. It has been
31160 studied in actuarial science as a frequency distribution which has more
31161 variability than the Poisson, but less than the negative binomial.")
31162 (license license:bsd-2)))
31163
31164 (define-public r-rjsonio
31165 (package
31166 (name "r-rjsonio")
31167 (version "1.3-1.6")
31168 (source
31169 (origin
31170 (method url-fetch)
31171 (uri (cran-uri "RJSONIO" version))
31172 (sha256
31173 (base32
31174 "17x0ayk7daprbc8w2hvb2jl9mfnw4dic9yc3sr5adcjqfzmcklc2"))))
31175 (properties `((upstream-name . "RJSONIO")))
31176 (build-system r-build-system)
31177 (home-page "https://cran.r-project.org/package=RJSONIO")
31178 (synopsis "Serialize R objects to JSON")
31179 (description
31180 "This is a package that allows conversion to and from data in JavaScript
31181 Object Notation (JSON) format. This allows R objects to be inserted into
31182 Javascript/ECMAScript/ActionScript code and allows R programmers to read and
31183 convert JSON content to R objects. This is an alternative to the @code{rjson}
31184 package.")
31185 (license license:bsd-3)))
31186
31187 (define-public r-revgeo
31188 (package
31189 (name "r-revgeo")
31190 (version "0.15")
31191 (source
31192 (origin
31193 (method url-fetch)
31194 (uri (cran-uri "revgeo" version))
31195 (sha256
31196 (base32
31197 "1ns7d1817475lriss6wwgvdm6lj760p40yxqaifla13c2xb73a55"))))
31198 (properties `((upstream-name . "revgeo")))
31199 (build-system r-build-system)
31200 (propagated-inputs
31201 (list r-rcurl r-rjsonio))
31202 (home-page "https://cran.r-project.org/package=revgeo")
31203 (synopsis "Reverse geocoding")
31204 (description
31205 "The @code{revgeo} procedure allows you to use the Photon geocoder for
31206 OpenStreetMap, Google Maps, and Bing to reverse geocode coordinate pairs with
31207 minimal hassle.")
31208 (license license:gpl3+)))
31209
31210 (define-public r-qpcr
31211 (package
31212 (name "r-qpcr")
31213 (version "1.4-1")
31214 (source
31215 (origin
31216 (method url-fetch)
31217 (uri (cran-uri "qpcR" version))
31218 (sha256
31219 (base32
31220 "1r01q7jv3w59yx1gc0qw91rq7rvdhqsi8y57sqqkmwyqfw2x2vsv"))))
31221 (properties `((upstream-name . "qpcR")))
31222 (build-system r-build-system)
31223 (propagated-inputs
31224 (list r-mass r-matrix r-minpack-lm r-rgl r-robustbase))
31225 (home-page "https://cran.r-project.org/package=qpcR")
31226 (synopsis "Modelling and analysis of real-time PCR data")
31227 (description
31228 "This is a package for model fitting, optimal model selection and
31229 calculation of various features that are essential in the analysis of
31230 quantitative real-time polymerase chain reaction (qPCR).")
31231 (license license:gpl2+)))
31232
31233 (define-public r-textplot
31234 (package
31235 (name "r-textplot")
31236 (version "0.2.1")
31237 (source
31238 (origin
31239 (method url-fetch)
31240 (uri (cran-uri "textplot" version))
31241 (sha256
31242 (base32
31243 "10nxh9axhy6kyp6f3rz7smq08yl35ydx9jx47bs7i0bmcl2kwxvl"))))
31244 (properties `((upstream-name . "textplot")))
31245 (build-system r-build-system)
31246 (propagated-inputs
31247 (list r-data-table r-lattice r-matrix))
31248 (native-inputs (list r-knitr))
31249 (home-page "https://github.com/bnosac/textplot")
31250 (synopsis "Text Plots")
31251 (description
31252 "Visualise complex relations in texts. This is done by providing
31253 functionalities for displaying text co-occurrence networks, text correlation
31254 networks, dependency relationships as well as text clustering. Feel free to
31255 join the effort of providing interesting text visualisations.")
31256 (license license:gpl2)))
31257
31258 (define-public r-gsa
31259 (package
31260 (name "r-gsa")
31261 (version "1.03.2")
31262 (source
31263 (origin
31264 (method url-fetch)
31265 (uri (cran-uri "GSA" version))
31266 (sha256
31267 (base32
31268 "1f1mrxxdbdlnibgav6nsvbpniz2x3km2svc0hf43spb4zicn0z8p"))))
31269 (properties `((upstream-name . "GSA")))
31270 (build-system r-build-system)
31271 (home-page "https://statweb.stanford.edu/~tibs/GSA/")
31272 (synopsis "Gene set analysis")
31273 (description "This package lets you determine the significance of
31274 pre-defined sets of genes with respect to an outcome variable, such as a group
31275 indicator, a quantitative variable or a survival time.")
31276 ;; Any version of the LGPL
31277 (license license:lgpl3+)))
31278
31279 (define-public r-randomforestsrc
31280 (package
31281 (name "r-randomforestsrc")
31282 (version "2.9.3")
31283 (source
31284 (origin
31285 (method url-fetch)
31286 (uri (cran-uri "randomForestSRC" version))
31287 (sha256
31288 (base32
31289 "05ifvj49jv0n5p6k46milpgj9r10sc5aw23fypyyibdgwpwvwixw"))))
31290 (properties
31291 `((upstream-name . "randomForestSRC")))
31292 (build-system r-build-system)
31293 (home-page "https://cran.r-project.org/web/packages/randomForestSRC/")
31294 (synopsis "Random forests for survival, regression, and classification")
31295 (description
31296 "This package implements fast OpenMP parallel computing of Breiman's
31297 random forests for survival, competing risks, regression and classification
31298 based on Ishwaran and Kogalur's popular random survival forests (RSF) package.
31299 It handles missing data and now includes multivariate, unsupervised forests,
31300 quantile regression and solutions for class imbalanced data. It provides a
31301 fast interface using subsampling and confidence regions for variable
31302 importance.")
31303 (license license:gpl3+)))
31304
31305 (define-public r-contfrac
31306 (package
31307 (name "r-contfrac")
31308 (version "1.1-12")
31309 (source
31310 (origin
31311 (method url-fetch)
31312 (uri (cran-uri "contfrac" version))
31313 (sha256
31314 (base32
31315 "0sq5c7ny235yrkv2xc4insgxby6rvzc1qsj8h301cd2if3lwbgwm"))))
31316 (properties `((upstream-name . "contfrac")))
31317 (build-system r-build-system)
31318 (home-page
31319 "https://github.com/RobinHankin/contfrac")
31320 (synopsis "Continued Fractions")
31321 (description
31322 "Various utilities for evaluating continued fractions.")
31323 (license license:gpl2)))
31324
31325 (define-public r-elliptic
31326 (package
31327 (name "r-elliptic")
31328 (version "1.4-0")
31329 (source
31330 (origin
31331 (method url-fetch)
31332 (uri (cran-uri "elliptic" version))
31333 (sha256
31334 (base32
31335 "1dhba0yfxjd5rlqsxp5a7s2hclfkla9wigsr39dlma67l6qjjmxn"))))
31336 (properties `((upstream-name . "elliptic")))
31337 (build-system r-build-system)
31338 (inputs (list pari-gp))
31339 (propagated-inputs (list r-mass))
31340 (home-page
31341 "https://github.com/RobinHankin/elliptic")
31342 (synopsis
31343 "Weierstrass and Jacobi Elliptic Functions")
31344 (description
31345 "A suite of elliptic and related functions including Weierstrass and
31346 Jacobi forms. Also includes various tools for manipulating and visualizing
31347 complex functions.")
31348 (license license:gpl2)))
31349
31350 (define-public r-hypergeo
31351 (package
31352 (name "r-hypergeo")
31353 (version "1.2-13")
31354 (source
31355 (origin
31356 (method url-fetch)
31357 (uri (cran-uri "hypergeo" version))
31358 (sha256
31359 (base32
31360 "13jdiy216znwhr91iqnh03mvkmyscw439syb3h4i67dd78sphnvd"))))
31361 (properties `((upstream-name . "hypergeo")))
31362 (build-system r-build-system)
31363 (propagated-inputs
31364 (list r-contfrac r-desolve r-elliptic))
31365 (home-page
31366 "https://cran.r-project.org/web/packages/hypergeo/")
31367 (synopsis "The Gauss Hypergeometric Function")
31368 (description
31369 "The Gaussian hypergeometric function for complex numbers.")
31370 (license license:gpl2)))
31371
31372 (define-public r-gganimate
31373 (package
31374 (name "r-gganimate")
31375 (version "1.0.7")
31376 (source
31377 (origin
31378 (method url-fetch)
31379 (uri (cran-uri "gganimate" version))
31380 (sha256
31381 (base32
31382 "046v6j92xxgaghsnh88dy5h8x040qsfa8csvhp4dmsfmrrf0dz0f"))))
31383 (properties `((upstream-name . "gganimate")))
31384 (build-system r-build-system)
31385 (arguments
31386 `(#:phases
31387 (modify-phases %standard-phases
31388 (add-after 'unpack 'absolute-paths
31389 (lambda* (#:key inputs #:allow-other-keys)
31390 (substitute* "R/renderers.R"
31391 (("'ffmpeg'")
31392 (string-append "'" (assoc-ref inputs "ffmpeg") "/bin/ffmpeg'"))))))))
31393 (inputs
31394 ;; For video output.
31395 (list ffmpeg))
31396 (propagated-inputs
31397 (list r-ggplot2
31398 r-glue
31399 r-plyr
31400 r-progress
31401 r-rlang
31402 r-scales
31403 r-stringi
31404 r-tweenr
31405 ;; For GIF/SVG output. gifski is faster, but depends on Rust.
31406 r-magick
31407 ;; For HTML output.
31408 r-base64enc
31409 r-htmltools))
31410 (native-inputs (list r-knitr))
31411 (home-page "https://gganimate.com")
31412 (synopsis "Grammar of Animated Graphics")
31413 (description
31414 "This package extends the grammar of graphics as implemented by
31415 @code{ggplot2} to include the description of animation. It does this by
31416 providing a range of new grammar classes that can be added to the plot object
31417 in order to customise how it should change with time.")
31418 (license license:expat)))
31419
31420 ;; This library bundles ‘date’ from (gnu packages calendar). We cannot unbundle
31421 ;; it, because its C++ libtz.so is built with different compiler flags than
31422 ;; ours.
31423 (define-public r-tzdb
31424 (package
31425 (name "r-tzdb")
31426 (version "0.3.0")
31427 (source
31428 (origin
31429 (method url-fetch)
31430 (uri (cran-uri "tzdb" version))
31431 (sha256
31432 (base32
31433 "0f3h4zaf9f4l371k6nc1mq6z2f9aj1vaf2inni8jnsds3zng16b0"))))
31434 (properties `((upstream-name . "tzdb")))
31435 (build-system r-build-system)
31436 (propagated-inputs (list r-cpp11))
31437 (home-page "https://github.com/r-lib/tzdb")
31438 (synopsis "Time Zone Database Information")
31439 (description
31440 "This package provides an up-to-date copy of the Internet Assigned
31441 Numbers Authority (IANA) Time Zone Database. It is updated periodically to
31442 reflect changes made by political bodies to time zone boundaries, UTC offsets,
31443 and daylight saving time rules. Additionally, this package provides a C++
31444 interface for working with the @code{date} library. @code{date} provides
31445 comprehensive support for working with dates and date-times, which this package
31446 exposes to make it easier for other R packages to utilize. Headers are
31447 provided for calendar specific calculations, along with a limited interface for
31448 time zone manipulations.")
31449 (license license:expat)))
31450
31451 (define-public r-vroom
31452 (package
31453 (name "r-vroom")
31454 (version "1.5.7")
31455 (source
31456 (origin
31457 (method url-fetch)
31458 (uri (cran-uri "vroom" version))
31459 (sha256
31460 (base32
31461 "1plz20x6s01gkkcac51lhx4r2s024pgh778ri7y25hkiiwacp1yh"))))
31462 (properties `((upstream-name . "vroom")))
31463 (build-system r-build-system)
31464 (propagated-inputs
31465 (list r-bit64
31466 r-cli
31467 r-cpp11
31468 r-crayon
31469 r-glue
31470 r-hms
31471 r-lifecycle
31472 r-progress
31473 r-rlang
31474 r-tibble
31475 r-tidyselect
31476 r-tzdb
31477 r-vctrs
31478 r-withr))
31479 (native-inputs (list r-knitr))
31480 (home-page "https://vroom.r-lib.org")
31481 (synopsis
31482 "Read and Write Rectangular Text Data")
31483 (description
31484 "This package reads and writes data files like @acronym{CSV},
31485 @acronym{TSV} and @acronym{FWF}. When reading it uses a quick initial indexing
31486 step, then reads the values lazily, so only the data you actually use needs to
31487 be read. The writer formats the data in parallel and writes to disk
31488 asynchronously from formatting.")
31489 (license license:expat)))
31490
31491 (define-public r-rmisc
31492 (package
31493 (name "r-rmisc")
31494 (version "1.5")
31495 (source (origin
31496 (method url-fetch)
31497 (uri (cran-uri "Rmisc" version))
31498 (sha256
31499 (base32
31500 "1ijjhfy3v91fspid77rrkc5dkcb2lav37wc3f4k5lwrn24wzy5y8"))))
31501 (build-system r-build-system)
31502 (propagated-inputs
31503 (list r-plyr r-rcpp r-lattice))
31504 (home-page "https://cran.r-project.org/web/packages/Rmisc/")
31505 (synopsis "Ryan Miscellaneous")
31506 (description "The Rmisc library contains functions for data analysis and
31507 utility operations.")
31508 (license license:gpl3)))
31509
31510 (define-public r-webutils
31511 (package
31512 (name "r-webutils")
31513 (version "1.1")
31514 (source
31515 (origin
31516 (method url-fetch)
31517 (uri (cran-uri "webutils" version))
31518 (sha256
31519 (base32 "16a6ds0fnb6y8i1r9ba1hf1ydb53am57s070b3hi5jmrs84b9qik"))))
31520 (properties `((upstream-name . "webutils")))
31521 (build-system r-build-system)
31522 (propagated-inputs
31523 (list r-curl r-jsonlite))
31524 (home-page "https://github.com/jeroen/webutils")
31525 (synopsis "Utility functions for developing web applications")
31526 (description
31527 "This package parses HTTP request data in @code{application/json},
31528 @code{multipart/form-data}, or @code{application/x-www-form-urlencoded}
31529 format. It includes an example of hosting and parsing HTML form data in R
31530 using either @code{httpuv} or @code{Rhttpd}.")
31531 (license license:expat)))
31532
31533 (define-public r-protolite
31534 (package
31535 (name "r-protolite")
31536 (version "2.1.1")
31537 (source
31538 (origin
31539 (method url-fetch)
31540 (uri (cran-uri "protolite" version))
31541 (sha256
31542 (base32 "0g1r3lzmvx1w44qzqzdvxfn21zmz11srlp6cr76kd7pd5wzjv82p"))))
31543 (properties `((upstream-name . "protolite")))
31544 (build-system r-build-system)
31545 (inputs
31546 (list protobuf))
31547 (propagated-inputs
31548 (list r-jsonlite r-rcpp))
31549 (native-inputs
31550 (list protobuf pkg-config))
31551 (home-page "https://github.com/jeroen/protolite")
31552 (synopsis "Highly optimized protocol buffer serializers")
31553 (description
31554 "This package provides pure C++ implementations for reading and writing
31555 several common data formats based on Google protocol-buffers. It currently
31556 supports @code{rexp.proto} for serialized R objects, @code{geobuf.proto} for
31557 binary geojson, and @code{mvt.proto} for vector tiles. This package uses the
31558 auto-generated C++ code by protobuf-compiler, hence the entire serialization
31559 is optimized at compile time. The @code{RProtoBuf} package on the other hand
31560 uses the protobuf runtime library to provide a general-purpose toolkit for
31561 reading and writing arbitrary protocol-buffer data in R.")
31562 (license license:expat)))
31563
31564 (define-public r-opencpu
31565 (package
31566 (name "r-opencpu")
31567 (version "2.2.7")
31568 (source
31569 (origin
31570 (method url-fetch)
31571 (uri (cran-uri "opencpu" version))
31572 (sha256
31573 (base32 "06jpmk95hm39ib5c75xw0mdrdv9x9zz1qil3m8ysb6pp1xx47jz0"))))
31574 (properties `((upstream-name . "opencpu")))
31575 (build-system r-build-system)
31576 (inputs
31577 (list pandoc))
31578 (propagated-inputs
31579 (list r-brew
31580 r-curl
31581 r-evaluate
31582 r-httpuv
31583 r-jsonlite
31584 r-knitr
31585 r-mime
31586 r-openssl
31587 r-protolite
31588 r-rappdirs
31589 r-remotes
31590 r-sys
31591 r-webutils
31592 r-zip))
31593 (native-inputs
31594 (list r-knitr))
31595 (home-page "https://www.opencpu.org")
31596 (synopsis "API for embedded scientific computing")
31597 (description
31598 "This package provides a system for embedded scientific computing and
31599 reproducible research with R. The OpenCPU server exposes a simple but
31600 powerful HTTP API for RPC and data interchange with R. This provides a
31601 reliable and scalable foundation for statistical services or building R web
31602 applications. The OpenCPU server runs either as a single-user development
31603 server within the interactive R session, or as a multi-user stack based on
31604 Apache2.")
31605 (license license:asl2.0)))
31606
31607 (define-public r-exactextractr
31608 (package
31609 (name "r-exactextractr")
31610 (version "0.8.1")
31611 (source
31612 (origin
31613 (method url-fetch)
31614 (uri (cran-uri "exactextractr" version))
31615 (sha256
31616 (base32
31617 "11s58vc63r9kah815a18ihb0x2nmnjnpngybw3yr2d6715sz89nc"))))
31618 (properties `((upstream-name . "exactextractr")))
31619 (build-system r-build-system)
31620 (inputs (list geos))
31621 (propagated-inputs
31622 (list r-raster r-rcpp r-sf))
31623 (native-inputs
31624 (list r-knitr))
31625 (home-page "https://isciences.gitlab.io/exactextractr/")
31626 (synopsis "Fast extraction from raster datasets using polygons")
31627 (description
31628 "This package provides a replacement for the @code{extract} function from
31629 the @code{raster} package that is suitable for extracting raster values using
31630 @code{sf} polygons.")
31631 (license license:asl2.0)))
31632
31633 (define-public r-stringfish
31634 (package
31635 (name "r-stringfish")
31636 (version "0.15.5")
31637 (source
31638 (origin
31639 (method url-fetch)
31640 (uri (cran-uri "stringfish" version))
31641 (sha256
31642 (base32
31643 "0ac17wl0fcpmipbvhhg5nyccg055671fnlxvnjd5l3kilx313wlx"))))
31644 (properties `((upstream-name . "stringfish")))
31645 (build-system r-build-system)
31646 (propagated-inputs
31647 (list r-rcpp r-rcppparallel))
31648 (native-inputs
31649 (list pkg-config r-knitr))
31650 (home-page "https://github.com/traversc/stringfish")
31651 (synopsis "Alternative string implementation")
31652 (description
31653 "This package provides an extendable, performant and multithreaded
31654 @code{alt-string} implementation backed by C++ vectors and strings.")
31655 (license license:gpl3)))
31656
31657 (define-public r-rapiserialize
31658 (package
31659 (name "r-rapiserialize")
31660 (version "0.1.0")
31661 (source
31662 (origin
31663 (method url-fetch)
31664 (uri (cran-uri "RApiSerialize" version))
31665 (sha256
31666 (base32
31667 "0gm2j8kh40imhncwwx1sx9kmraaxcxycvgwls53lcyy2ap344k9j"))))
31668 (properties `((upstream-name . "RApiSerialize")))
31669 (build-system r-build-system)
31670 (home-page
31671 "https://cran.r-project.org/package=RApiSerialize")
31672 (synopsis "R API serialization")
31673 (description
31674 "This package provides other packages with access to the internal R
31675 serialization code. Access to this code is provided at the C function level
31676 by using the registration of native function mechanism. Client packages
31677 simply include a single header file RApiSerializeAPI.h provided by this
31678 package.")
31679 (license license:gpl2+)))
31680
31681 (define-public r-qs
31682 (package
31683 (name "r-qs")
31684 (version "0.25.3")
31685 (source
31686 (origin
31687 (method url-fetch)
31688 (uri (cran-uri "qs" version))
31689 (sha256
31690 (base32
31691 "0sxy497v5arjv6lwxng7chkbzrn703waqmgsxv77i7y12ahzdbai"))))
31692 (properties `((upstream-name . "qs")))
31693 (build-system r-build-system)
31694 (inputs (list zlib))
31695 (propagated-inputs
31696 (list r-rapiserialize r-rcpp r-stringfish))
31697 (native-inputs
31698 (list pkg-config r-knitr))
31699 (home-page "https://github.com/traversc/qs")
31700 (synopsis "Quick serialization of R objects")
31701 (description
31702 "This package provides functions for quickly writing and reading any R
31703 object to and from disk.")
31704 (license license:gpl3)))
31705
31706 (define-public r-rgeos
31707 (package
31708 (name "r-rgeos")
31709 (version "0.5-9")
31710 (source
31711 (origin
31712 (method url-fetch)
31713 (uri (cran-uri "rgeos" version))
31714 (sha256
31715 (base32
31716 "1m73y0nwrdwsjrl48c4fg1kdqnh79835brnmxv9ak01ndbzcp45b"))))
31717 (properties `((upstream-name . "rgeos")))
31718 (build-system r-build-system)
31719 (inputs
31720 (list geos))
31721 (propagated-inputs
31722 (list r-sp))
31723 (home-page "https://cran.r-project.org/package=rgeos")
31724 (synopsis "Interface to Geometry Engine (GEOS)")
31725 (description
31726 "This package provides an R interface to Geometry Engine (GEOS) using the
31727 C API for topology operations on geometries.")
31728 (license license:gpl2+)))
31729
31730 (define-public r-tfruns
31731 (package
31732 (name "r-tfruns")
31733 (version "1.5.0")
31734 (source
31735 (origin
31736 (method url-fetch)
31737 (uri (cran-uri "tfruns" version))
31738 (sha256
31739 (base32
31740 "04lfckg1if3kfwcl4s4fcc9aw04crwk4m1qr55ag22j2x2jlb2l9"))))
31741 (properties `((upstream-name . "tfruns")))
31742 (build-system r-build-system)
31743 (propagated-inputs
31744 (list r-base64enc
31745 r-config
31746 r-jsonlite
31747 r-magrittr
31748 r-reticulate
31749 r-rlang
31750 r-rstudioapi
31751 r-tidyselect
31752 r-whisker
31753 r-yaml))
31754 (native-inputs (list r-knitr))
31755 (home-page "https://github.com/rstudio/tfruns")
31756 (synopsis "Training run tools for TensorFlow")
31757 (description
31758 "Create and manage unique directories for each TensorFlow training run.
31759 This package provides a unique, time stamped directory for each run along with
31760 functions to retrieve the directory of the latest run or latest several
31761 runs.")
31762 (license license:asl2.0)))
31763
31764 (define-public r-tfautograph
31765 (package
31766 (name "r-tfautograph")
31767 (version "0.3.2")
31768 (source
31769 (origin
31770 (method url-fetch)
31771 (uri (cran-uri "tfautograph" version))
31772 (sha256
31773 (base32
31774 "0fmaq1ggjyxgf2ss7qb8jk74sfwc3s1vc123pd5glclxcy1ib0j2"))))
31775 (properties `((upstream-name . "tfautograph")))
31776 (build-system r-build-system)
31777 (inputs (list tensorflow))
31778 (propagated-inputs
31779 (list r-backports r-reticulate))
31780 (home-page "https://t-kalinowski.github.io/tfautograph/")
31781 (synopsis "Autograph R for Tensorflow")
31782 (description
31783 "This package lets you translate R control flow expressions into
31784 Tensorflow graphs.")
31785 (license license:gpl3)))
31786
31787 (define-public r-tensorflow
31788 (package
31789 (name "r-tensorflow")
31790 (version "2.8.0")
31791 (source
31792 (origin
31793 (method url-fetch)
31794 (uri (cran-uri "tensorflow" version))
31795 (sha256
31796 (base32
31797 "19ayjvlxmgjais0kx6fj9an1h1i8mh4c9dhah7dj6390p53pgz93"))))
31798 (properties `((upstream-name . "tensorflow")))
31799 (build-system r-build-system)
31800 (inputs (list tensorflow))
31801 (propagated-inputs
31802 (list r-config
31803 r-processx
31804 r-reticulate
31805 r-rstudioapi
31806 r-tfautograph
31807 r-tfruns
31808 r-yaml))
31809 (home-page "https://github.com/rstudio/tensorflow")
31810 (synopsis "R interface to TensorFlow")
31811 (description
31812 "R interface to TensorFlow a library for numerical computation using data
31813 flow graphs. Nodes in the graph represent mathematical operations, while the
31814 graph edges represent the multidimensional data arrays (tensors) communicated
31815 between them.")
31816 (license license:asl2.0)))
31817
31818 (define-public r-keras
31819 (package
31820 (name "r-keras")
31821 (version "2.8.0")
31822 (source
31823 (origin
31824 (method url-fetch)
31825 (uri (cran-uri "keras" version))
31826 (sha256
31827 (base32
31828 "10zvy4lmhb2sbn0gsm12pf95pxj9bmi8241ap1n6170xsld9phcf"))))
31829 (properties `((upstream-name . "keras")))
31830 (build-system r-build-system)
31831 (propagated-inputs
31832 (list r-ellipsis
31833 r-generics
31834 r-glue
31835 r-magrittr
31836 r-r6
31837 r-reticulate
31838 r-rlang
31839 r-tensorflow
31840 r-tfruns
31841 r-zeallot))
31842 (native-inputs (list r-knitr))
31843 (home-page "https://keras.rstudio.com")
31844 (synopsis "R Interface to 'Keras'")
31845 (description
31846 "This package provides an interface to Keras, a high-level neural
31847 networks API. Keras was developed with a focus on enabling fast
31848 experimentation, supports both convolution based networks and recurrent
31849 networks (as well as combinations of the two), and runs seamlessly on both CPU
31850 and GPU devices.")
31851 (license license:expat)))
31852
31853 (define-public r-zzlite
31854 (package
31855 (name "r-zzlite")
31856 (version "0.1.2")
31857 (source
31858 (origin
31859 (method url-fetch)
31860 (uri (cran-uri "zzlite" version))
31861 (sha256
31862 (base32
31863 "0vi1slx2s4r5zf82lazqv0c3m12xq73wlgsbz6af4y00h0bkr3ps"))))
31864 (properties `((upstream-name . "zzlite")))
31865 (build-system r-build-system)
31866 (propagated-inputs
31867 (list r-httr r-jsonlite))
31868 (native-inputs
31869 (list r-knitr))
31870 (home-page "https://cran.r-project.org/package=zzlite")
31871 (synopsis "Wrapper for the Zamzar file conversion API")
31872 (description
31873 "This package provides a minor collection of HTTP wrappers for the Zamzar
31874 file conversion API. The wrappers makes it easy to utilize the API and thus
31875 convert between more than 100 different file formats (ranging from audio
31876 files, images, movie formats, etc., etc.) through an R session.")
31877 (license license:gpl3)))
31878
31879 (define-public r-ztree
31880 (package
31881 (name "r-ztree")
31882 (version "1.0.7")
31883 (source
31884 (origin
31885 (method url-fetch)
31886 (uri (cran-uri "zTree" version))
31887 (sha256
31888 (base32
31889 "005zk6wpchpss6865ki35yawgf668pn70163ah97rnfkhfaswm6y"))))
31890 (properties `((upstream-name . "zTree")))
31891 (build-system r-build-system)
31892 (propagated-inputs
31893 (list r-plyr))
31894 (home-page "https://cran.r-project.org/package=zTree")
31895 (synopsis "Functions to import data from z-Tree into R")
31896 (description
31897 "This package provides tools for reading @code{.xls} and @code{.sbj}
31898 files which are written by the proprietary program z-Tree for developing and
31899 carrying out economic experiments.")
31900 (license license:gpl3)))
31901
31902 (define-public r-distributionutils
31903 (package
31904 (name "r-distributionutils")
31905 (version "0.6-0")
31906 (source
31907 (origin
31908 (method url-fetch)
31909 (uri (cran-uri "DistributionUtils" version))
31910 (sha256
31911 (base32
31912 "08vq54pyqxlqsj6q6gsg5ikqa0z3x842j52ld5dxaq272p6xchvl"))))
31913 (properties
31914 `((upstream-name . "DistributionUtils")))
31915 (build-system r-build-system)
31916 (native-inputs
31917 (list gfortran))
31918 (home-page "https://cran.r-project.org/package=DistributionUtils")
31919 (synopsis "Distribution utilities")
31920 (description
31921 "This package provides utilities for dealing with distributions.
31922 Functionality includes sample skewness and kurtosis, log-histogram, tail
31923 plots, moments by integration, changing the point about which a moment is
31924 calculated, functions for testing distributions using inversion tests and the
31925 Massart inequality. Also included is an implementation of the incomplete
31926 Bessel K function.")
31927 (license license:gpl2+)))
31928
31929 (define-public r-ztpln
31930 (package
31931 (name "r-ztpln")
31932 (version "0.1.2")
31933 (source
31934 (origin
31935 (method url-fetch)
31936 (uri (cran-uri "ztpln" version))
31937 (sha256
31938 (base32
31939 "1b22m72a8117yrgq5k1gzsrbx6yrsrj7bpd49lh7x3vbaz56c0wr"))))
31940 (properties `((upstream-name . "ztpln")))
31941 (build-system r-build-system)
31942 (propagated-inputs
31943 (list r-distributionutils r-mixtools r-rcpp r-rcppeigen
31944 r-rcppnumerical))
31945 (native-inputs
31946 (list r-knitr))
31947 (home-page "https://github.com/mattocci27/ztpln")
31948 (synopsis "Zero-truncated Poisson lognormal distribution")
31949 (description
31950 "This package provides functions for obtaining the density, random
31951 variates and maximum likelihood estimates of the Zero-truncated Poisson
31952 lognormal distribution and their mixture distribution.")
31953 (license license:expat)))
31954
31955 (define-public r-zscorer
31956 (package
31957 (name "r-zscorer")
31958 (version "0.3.1")
31959 (source
31960 (origin
31961 (method url-fetch)
31962 (uri (cran-uri "zscorer" version))
31963 (sha256
31964 (base32
31965 "0aijhs0fyird5gq68x4dxchb02mxa7ijk10k9zjhngghxbjj7iqn"))))
31966 (properties `((upstream-name . "zscorer")))
31967 (build-system r-build-system)
31968 (propagated-inputs
31969 (list r-shiny))
31970 (native-inputs
31971 (list r-knitr))
31972 (home-page "https://github.com/nutriverse/zscorer")
31973 (synopsis "Child Anthropometry z-Score Calculator")
31974 (description
31975 "This package provides a tool for calculating z-scores and centiles for
31976 weight-for-age, length/height-for-age, weight-for-length/height, BMI-for-age,
31977 head circumference-for-age, age circumference-for-age, subscapular
31978 skinfold-for-age, triceps skinfold-for-age based on the WHO Child Growth
31979 Standards.")
31980 (license license:agpl3+)))
31981
31982 (define-public r-zra
31983 (package
31984 (name "r-zra")
31985 (version "0.2")
31986 (source
31987 (origin
31988 (method url-fetch)
31989 (uri (cran-uri "ZRA" version))
31990 (sha256
31991 (base32
31992 "1sx1q5yf68hhlb5j1hicpj594rmgajqr25llg7ax416j0m2rnagi"))))
31993 (properties `((upstream-name . "ZRA")))
31994 (build-system r-build-system)
31995 (propagated-inputs
31996 (list r-dygraphs r-forecast))
31997 (home-page "https://cran.r-project.org/package=ZRA")
31998 (synopsis "Dynamic plots for time series forecasting")
31999 (description
32000 "This package combines a forecast of a time series, using the function @code{forecast},
32001 with the dynamic plots from @code{dygraphs}.")
32002 (license license:gpl2+)))
32003
32004 (define-public r-rfigshare
32005 (package
32006 (name "r-rfigshare")
32007 (version "0.3.7")
32008 (source
32009 (origin
32010 (method url-fetch)
32011 (uri (cran-uri "rfigshare" version))
32012 (sha256
32013 (base32
32014 "1qgzn0mpjy4czy0pnbi395fxxx84arkg8r7rk8aidmd34584gjiq"))))
32015 (properties `((upstream-name . "rfigshare")))
32016 (build-system r-build-system)
32017 (propagated-inputs
32018 (list r-ggplot2
32019 r-httpuv
32020 r-httr
32021 r-plyr
32022 r-rjsonio
32023 r-xml
32024 r-yaml))
32025 (home-page "https://github.com/ropensci/rfigshare")
32026 (synopsis "R Interface to figshare")
32027 (description
32028 "This package provides an interface to figshare, a scientific repository
32029 to archive and assign DOIs to data, software, figures, and more.")
32030 (license license:cc0)))
32031
32032 (define-public r-dismo
32033 (package
32034 (name "r-dismo")
32035 (version "1.3-5")
32036 (source
32037 (origin
32038 (method url-fetch)
32039 (uri (cran-uri "dismo" version))
32040 (sha256
32041 (base32
32042 "1rqf6h4imbqvs7hjd1k4my6154wg0qnmnp5byan403rcshr1jbl1"))))
32043 (properties `((upstream-name . "dismo")))
32044 (build-system r-build-system)
32045 (propagated-inputs
32046 (list r-raster r-rcpp r-sp r-terra))
32047 (home-page "https://rspatial.org/raster/sdm/")
32048 (synopsis "Species distribution modeling")
32049 (description
32050 "This package provides methods for species distribution modeling, i.e.,
32051 predicting the environmental similarity of any site to that of the locations
32052 of known occurrences of a species.")
32053 (license license:gpl3+)))
32054
32055 (define-public r-zoon
32056 (package
32057 (name "r-zoon")
32058 (version "0.6.5")
32059 (source
32060 (origin
32061 (method url-fetch)
32062 (uri (cran-uri "zoon" version))
32063 (sha256
32064 (base32
32065 "02y29vr2yn8al69km8faiqrwjrc1r3hsvw3dg8lwjr65cxw1krip"))))
32066 (properties `((upstream-name . "zoon")))
32067 (build-system r-build-system)
32068 (propagated-inputs
32069 (list r-dismo
32070 r-plyr
32071 r-randomforest
32072 r-raster
32073 r-rcurl
32074 r-rfigshare
32075 r-rgdal
32076 r-roxygen2
32077 r-rworldmap
32078 r-sp
32079 r-testthat))
32080 (native-inputs
32081 (list r-knitr))
32082 (home-page "https://github.com/zoonproject/zoon")
32083 (synopsis "Reproducible, accessible and shareable species distribution modelling")
32084 (description
32085 "This package reads user submitted modules from an online repository,
32086 runs full species distribution modelling workflows and returns output that is
32087 fully reproducible.")
32088 (license license:bsd-3)))
32089
32090 (define-public r-paws-common
32091 (package
32092 (name "r-paws-common")
32093 (version "0.3.17")
32094 (source
32095 (origin
32096 (method url-fetch)
32097 (uri (cran-uri "paws.common" version))
32098 (sha256
32099 (base32
32100 "1dg18hwnrjd6m1vjcxfs2vm1zxciivf4vzhq0z76dmmiqz2yjm28"))))
32101 (properties `((upstream-name . "paws.common")))
32102 (build-system r-build-system)
32103 (propagated-inputs
32104 (list r-base64enc r-digest r-httr r-jsonlite r-xml2))
32105 (home-page "https://cran.r-project.org/package=paws.common")
32106 (synopsis "Paws low-level Amazon Web Services API")
32107 (description
32108 "This package provides functions for making low-level API requests to
32109 Amazon Web Services. The functions handle building, signing, and sending
32110 requests, and receiving responses. They are designed to help build
32111 higher-level interfaces to individual services, such as Simple Storage
32112 Service (S3).")
32113 (license license:asl2.0)))
32114
32115 (define-public r-paws-customer-engagement
32116 (package
32117 (name "r-paws-customer-engagement")
32118 (version "0.1.12")
32119 (source
32120 (origin
32121 (method url-fetch)
32122 (uri (cran-uri "paws.customer.engagement" version))
32123 (sha256
32124 (base32
32125 "0ac6hzn4ilfjhzdmc9x80999fl18cz16mky31qd3y09m93w2xkdj"))))
32126 (properties
32127 `((upstream-name . "paws.customer.engagement")))
32128 (build-system r-build-system)
32129 (propagated-inputs
32130 (list r-paws-common))
32131 (home-page "https://github.com/paws-r/paws")
32132 (synopsis "Amazon Web Services customer engagement services")
32133 (description
32134 "This package provides an interface to Amazon Web Services customer
32135 engagement services, including Simple Email Service, Connect contact center
32136 service, and more.")
32137 (license license:asl2.0)))
32138
32139 (define-public r-paws-cost-management
32140 (package
32141 (name "r-paws-cost-management")
32142 (version "0.1.12")
32143 (source
32144 (origin
32145 (method url-fetch)
32146 (uri (cran-uri "paws.cost.management" version))
32147 (sha256
32148 (base32
32149 "0in4f8ygw5g2v6vl3lz2y0v51llglh8b1ymbd04d54xxlgn83knh"))))
32150 (properties
32151 `((upstream-name . "paws.cost.management")))
32152 (build-system r-build-system)
32153 (propagated-inputs
32154 (list r-paws-common))
32155 (home-page "https://github.com/paws-r/paws")
32156 (synopsis "Amazon Web Services cost management services")
32157 (description
32158 "This package provides an interface to Amazon Web Services cost
32159 management services, including cost and usage reports, budgets, pricing, and
32160 more.")
32161 (license license:asl2.0)))
32162
32163 (define-public r-paws-developer-tools
32164 (package
32165 (name "r-paws-developer-tools")
32166 (version "0.1.12")
32167 (source
32168 (origin
32169 (method url-fetch)
32170 (uri (cran-uri "paws.developer.tools" version))
32171 (sha256
32172 (base32 "16gb8g8s67al7qdd95fbigxqkih9a9p7slkyf3cga42wb6miiby2"))))
32173 (properties `((upstream-name . "paws.developer.tools")))
32174 (build-system r-build-system)
32175 (propagated-inputs
32176 (list r-paws-common))
32177 (home-page "https://github.com/paws-r/paws")
32178 (synopsis "Amazon Web Services developer tools services")
32179 (description
32180 "This package provides an interface to Amazon Web Services developer
32181 tools services, including version control, continuous integration and
32182 deployment, and more.")
32183 (license license:asl2.0)))
32184
32185 (define-public r-paws-end-user-computing
32186 (package
32187 (name "r-paws-end-user-computing")
32188 (version "0.1.12")
32189 (source
32190 (origin
32191 (method url-fetch)
32192 (uri (cran-uri "paws.end.user.computing" version))
32193 (sha256
32194 (base32 "1xxsz86nx128sizym9np8vldzkbym0p3i6vcy94kq1y0cylaicv3"))))
32195 (properties `((upstream-name . "paws.end.user.computing")))
32196 (build-system r-build-system)
32197 (propagated-inputs
32198 (list r-paws-common))
32199 (home-page "https://github.com/paws-r/paws")
32200 (synopsis "Amazon Web Services end user computing services")
32201 (description
32202 "This package provides an interface to Amazon Web Services end user
32203 computing services, including collaborative document editing, mobile intranet,
32204 and more.")
32205 (license license:asl2.0)))
32206
32207 (define-public r-paws-application-integration
32208 (package
32209 (name "r-paws-application-integration")
32210 (version "0.1.12")
32211 (source
32212 (origin
32213 (method url-fetch)
32214 (uri (cran-uri "paws.application.integration" version))
32215 (sha256
32216 (base32
32217 "0llyd9hc679pad1ih0rcc38q5xxpzinhwrl8cvrkgsjgbc3agq42"))))
32218 (properties
32219 `((upstream-name . "paws.application.integration")))
32220 (build-system r-build-system)
32221 (propagated-inputs
32222 (list r-paws-common))
32223 (home-page "https://github.com/paws-r/paws")
32224 (synopsis "Amazon Web Services application integration services")
32225 (description
32226 "This package provides an interface to Amazon Web Services application
32227 integration services, including Simple Queue Service (SQS) message queue,
32228 Simple Notification Service (SNS) publish/subscribe messaging, and more.")
32229 (license license:asl2.0)))
32230
32231 (define-public r-paws-security-identity
32232 (package
32233 (name "r-paws-security-identity")
32234 (version "0.1.12")
32235 (source
32236 (origin
32237 (method url-fetch)
32238 (uri (cran-uri "paws.security.identity" version))
32239 (sha256
32240 (base32
32241 "092lz2ipn5iqr593x7ra8c0bj64yf6315mdc3llgwrjyb4vfxif9"))))
32242 (properties
32243 `((upstream-name . "paws.security.identity")))
32244 (build-system r-build-system)
32245 (propagated-inputs
32246 (list r-paws-common))
32247 (home-page "https://github.com/paws-r/paws")
32248 (synopsis "Amazon Web Services security, identity, and compliance services")
32249 (description
32250 "This package provides an interface to Amazon Web Services security,
32251 identity, and compliance services, including the Identity and Access
32252 Management (IAM) service for managing access to services and resources, and
32253 more.")
32254 (license license:asl2.0)))
32255
32256 (define-public r-paws-analytics
32257 (package
32258 (name "r-paws-analytics")
32259 (version "0.1.12")
32260 (source
32261 (origin
32262 (method url-fetch)
32263 (uri (cran-uri "paws.analytics" version))
32264 (sha256
32265 (base32
32266 "04gnaxmj21l312xkrsd9bisi0bz9h6h5fyhwlqylcxi077z1yb2g"))))
32267 (properties
32268 `((upstream-name . "paws.analytics")))
32269 (build-system r-build-system)
32270 (propagated-inputs
32271 (list r-paws-common))
32272 (home-page "https://github.com/paws-r/paws")
32273 (synopsis "Amazon Web Services analytics services")
32274 (description
32275 "This package provides an interface to Amazon Web Services analytics
32276 services, including Elastic MapReduce Hadoop and Spark big data service,
32277 Elasticsearch search engine, and more.")
32278 (license license:asl2.0)))
32279
32280 (define-public r-paws-machine-learning
32281 (package
32282 (name "r-paws-machine-learning")
32283 (version "0.1.12")
32284 (source
32285 (origin
32286 (method url-fetch)
32287 (uri (cran-uri "paws.machine.learning" version))
32288 (sha256
32289 (base32
32290 "01w2y5952pk50xjbzby2pc51xrkrzjpfxbmii1b10cl2xgzfkxsa"))))
32291 (properties
32292 `((upstream-name . "paws.machine.learning")))
32293 (build-system r-build-system)
32294 (propagated-inputs
32295 (list r-paws-common))
32296 (home-page "https://github.com/paws-r/paws")
32297 (synopsis "Amazon Web Services machine learning services")
32298 (description
32299 "This package provides an interface to Amazon Web Services machine
32300 learning services, including SageMaker managed machine learning service,
32301 natural language processing, speech recognition, translation, and more.")
32302 (license license:asl2.0)))
32303
32304 (define-public r-paws-management
32305 (package
32306 (name "r-paws-management")
32307 (version "0.1.12")
32308 (source
32309 (origin
32310 (method url-fetch)
32311 (uri (cran-uri "paws.management" version))
32312 (sha256
32313 (base32
32314 "09k7wg0jlj40zs2yb3vldffpkdcjg7ap98n7c5lxr5plpca08swg"))))
32315 (properties
32316 `((upstream-name . "paws.management")))
32317 (build-system r-build-system)
32318 (propagated-inputs
32319 (list r-paws-common))
32320 (home-page "https://github.com/paws-r/paws")
32321 (synopsis "Amazon Web Services management and governance services")
32322 (description
32323 "This package provides an interface to Amazon Web Services management and
32324 governance services, including CloudWatch application and infrastructure
32325 monitoring, Auto Scaling for automatically scaling resources, and more.")
32326 (license license:asl2.0)))
32327
32328 (define-public r-paws-networking
32329 (package
32330 (name "r-paws-networking")
32331 (version "0.1.12")
32332 (source
32333 (origin
32334 (method url-fetch)
32335 (uri (cran-uri "paws.networking" version))
32336 (sha256
32337 (base32
32338 "02hxaa5nlj70mdggh379ij3fn09xm8h5ldzsyf45c342prpl6zwj"))))
32339 (properties
32340 `((upstream-name . "paws.networking")))
32341 (build-system r-build-system)
32342 (propagated-inputs
32343 (list r-paws-common))
32344 (home-page "https://github.com/paws-r/paws")
32345 (synopsis "Amazon Web Services networking and content delivery services")
32346 (description
32347 "This package provides an interface to Amazon Web Services networking and
32348 content delivery services, including Route 53 Domain Name System service,
32349 CloudFront content delivery, load balancing, and more.")
32350 (license license:asl2.0)))
32351
32352 (define-public r-paws-database
32353 (package
32354 (name "r-paws-database")
32355 (version "0.1.12")
32356 (source
32357 (origin
32358 (method url-fetch)
32359 (uri (cran-uri "paws.database" version))
32360 (sha256
32361 (base32
32362 "08jpwz95fw3f68j0wxh2lg57nn60khflldab0ryhkkbcw1iy0qyz"))))
32363 (properties `((upstream-name . "paws.database")))
32364 (build-system r-build-system)
32365 (propagated-inputs
32366 (list r-paws-common))
32367 (home-page "https://github.com/paws-r/paws")
32368 (synopsis
32369 "Amazon Web Services Database Services")
32370 (description
32371 "This package provides an interface to Amazon Web Services database
32372 services, including Relational Database Service (RDS), DynamoDB NoSQL
32373 database, and more.")
32374 (license license:asl2.0)))
32375
32376 (define-public r-paws-storage
32377 (package
32378 (name "r-paws-storage")
32379 (version "0.1.12")
32380 (source
32381 (origin
32382 (method url-fetch)
32383 (uri (cran-uri "paws.storage" version))
32384 (sha256
32385 (base32
32386 "06m887vpqp5d6k3zxdlga599dsv8v3rladk7xqaxqnld1f17am04"))))
32387 (properties `((upstream-name . "paws.storage")))
32388 (build-system r-build-system)
32389 (propagated-inputs
32390 (list r-paws-common))
32391 (home-page "https://github.com/paws-r/paws")
32392 (synopsis "Amazon Web Services storage services")
32393 (description
32394 "This package provides an interface to Amazon Web Services storage
32395 services, including Simple Storage Service (S3).")
32396 (license license:asl2.0)))
32397
32398 (define-public r-paws-compute
32399 (package
32400 (name "r-paws-compute")
32401 (version "0.1.12")
32402 (source
32403 (origin
32404 (method url-fetch)
32405 (uri (cran-uri "paws.compute" version))
32406 (sha256
32407 (base32
32408 "1km6fng6il5fcjlrbbndahsw2dr2ql83hwac9wlpd67zm3wy9lky"))))
32409 (properties `((upstream-name . "paws.compute")))
32410 (build-system r-build-system)
32411 (propagated-inputs
32412 (list r-paws-common))
32413 (home-page "https://github.com/paws-r/paws")
32414 (synopsis "Amazon Web Services compute services")
32415 (description
32416 "This package provides an interface to Amazon Web Services compute
32417 services, including Elastic Compute Cloud (EC2), Lambda
32418 functions-as-a-service, containers, batch processing, and more.")
32419 (license license:asl2.0)))
32420
32421 (define-public r-paws
32422 (package
32423 (name "r-paws")
32424 (version "0.1.12")
32425 (source
32426 (origin
32427 (method url-fetch)
32428 (uri (cran-uri "paws" version))
32429 (sha256
32430 (base32
32431 "0kn1z045r106fwqcaz52hb02bhrcblh479cajfjiq480s1iljcw6"))))
32432 (properties `((upstream-name . "paws")))
32433 (build-system r-build-system)
32434 (propagated-inputs
32435 (list r-paws-analytics
32436 r-paws-application-integration
32437 r-paws-compute
32438 r-paws-cost-management
32439 r-paws-customer-engagement
32440 r-paws-database
32441 r-paws-developer-tools
32442 r-paws-end-user-computing
32443 r-paws-machine-learning
32444 r-paws-management
32445 r-paws-networking
32446 r-paws-security-identity
32447 r-paws-storage))
32448 (home-page "https://github.com/paws-r/paws")
32449 (synopsis "Amazon Web Services software development kit")
32450 (description
32451 "This package provides an interface to Amazon Web Services, including
32452 storage, database, and compute services, such as Simple Storage Service (S3),
32453 DynamoDB NoSQL database, and Lambda functions-as-a-service.")
32454 (license license:asl2.0)))
32455
32456 (define-public r-zoomgroupstats
32457 (package
32458 (name "r-zoomgroupstats")
32459 (version "0.1.0")
32460 (source
32461 (origin
32462 (method url-fetch)
32463 (uri (cran-uri "zoomGroupStats" version))
32464 (sha256
32465 (base32
32466 "0gndiq92cy6gi7f833hdjvqii3cn83wz5rjvygcvjl3dw4pwv966"))))
32467 (properties
32468 `((upstream-name . "zoomGroupStats")))
32469 (build-system r-build-system)
32470 (propagated-inputs
32471 (list r-data-table
32472 r-dplyr
32473 r-lubridate
32474 r-magick
32475 r-openxlsx
32476 r-paws
32477 r-pbapply
32478 r-stringr
32479 r-syuzhet))
32480 (native-inputs (list r-knitr))
32481 (home-page "http://zoomgroupstats.org")
32482 (synopsis "Analyze text, audio, and video from Zoom meetings")
32483 (description
32484 "This package provides utilities for processing and analyzing the files
32485 that are exported from a recorded Zoom meeting. This includes analyzing data
32486 captured through video cameras and microphones, the text-based chat, and
32487 meta-data. You can analyze aspects of the conversation among meeting
32488 participants and their emotional expressions throughout the meeting.")
32489 (license license:expat)))
32490
32491 (define-public r-zoom
32492 (package
32493 (name "r-zoom")
32494 (version "2.0.4")
32495 (source
32496 (origin
32497 (method url-fetch)
32498 (uri (cran-uri "zoom" version))
32499 (sha256
32500 (base32
32501 "03f5rxfr6ncf1j6vpn7pip21q7ylj4bx0a5xphqb6x6i33lxf1g5"))))
32502 (properties `((upstream-name . "zoom")))
32503 (build-system r-build-system)
32504 (home-page "https://github.com/cbarbu/R-package-zoom")
32505 (synopsis "Spatial data visualization tool")
32506 (description
32507 "This package provides @code{zm}, a utility that allows you to
32508 zoom/navigate any plot when called with any active plot.")
32509 (license license:gpl3+)))
32510
32511 (define-public r-zoolog
32512 (package
32513 (name "r-zoolog")
32514 (version "0.4.1")
32515 (source
32516 (origin
32517 (method url-fetch)
32518 (uri (cran-uri "zoolog" version))
32519 (sha256
32520 (base32
32521 "1wxxxscw4ji4p4599vdw6vcrkqm0g75x1gh13m4758lb51wav9ks"))))
32522 (properties `((upstream-name . "zoolog")))
32523 (build-system r-build-system)
32524 (propagated-inputs
32525 (list r-rdpack r-stringi))
32526 (native-inputs
32527 (list r-knitr))
32528 (home-page "https://josempozo.github.io/zoolog/")
32529 (synopsis "Zooarchaeological analysis with log-ratios")
32530 (description
32531 "This package includes functions and reference data to generate and
32532 manipulate log-ratios (also known as @dfn{log size index} (LSI) values) from
32533 measurements obtained on zooarchaeological material. Log ratios are used to
32534 compare the relative (rather than the absolute) dimensions of animals from
32535 archaeological contexts. The zoolog package is also able to seamlessly
32536 integrate data and references with heterogeneous nomenclature, which is
32537 internally managed by a zoolog thesaurus.")
32538 (license license:gpl3)))
32539
32540 (define-public r-filehash
32541 (package
32542 (name "r-filehash")
32543 (version "2.4-3")
32544 (source
32545 (origin
32546 (method url-fetch)
32547 (uri (cran-uri "filehash" version))
32548 (sha256
32549 (base32
32550 "1ga17smgjd4qsnf5a7qk0giwhpc5969ylqj520favs1k6b4y557k"))))
32551 (properties `((upstream-name . "filehash")))
32552 (build-system r-build-system)
32553 (home-page "http://github.com/rdpeng/filehash")
32554 (synopsis "Simple key-value database")
32555 (description
32556 "This package implements a simple key-value style database where
32557 character string keys are associated with data values that are stored on the
32558 disk. A simple interface is provided for inserting, retrieving, and deleting
32559 data from the database. Utilities are provided that allow filehash databases
32560 to be treated much like environments and lists are already used in R. These
32561 utilities are provided to encourage interactive and exploratory analysis on
32562 large datasets.")
32563 (license license:gpl2+)))
32564
32565 (define-public r-mlearning
32566 (package
32567 (name "r-mlearning")
32568 (version "1.0-0")
32569 (source
32570 (origin
32571 (method url-fetch)
32572 (uri (cran-uri "mlearning" version))
32573 (sha256
32574 (base32
32575 "0r8xfaxw83s2r27b8x5qd0k4r5ayxpkafzn9b1a0jvsr87i6520r"))))
32576 (properties `((upstream-name . "mlearning")))
32577 (build-system r-build-system)
32578 (propagated-inputs
32579 (list r-class
32580 r-e1071
32581 r-ipred
32582 r-mass
32583 r-nnet
32584 r-randomforest))
32585 (home-page "http://www.sciviews.org/zooimage")
32586 (synopsis "Machine learning algorithms with unified interface")
32587 (description
32588 "This package provides a unified interface to various machine learning
32589 algorithms. Confusion matrices are provided too.")
32590 (license license:gpl2+)))
32591
32592 (define-public r-zooimage
32593 (package
32594 (name "r-zooimage")
32595 (version "5.5.2")
32596 (source
32597 (origin
32598 (method url-fetch)
32599 (uri (cran-uri "zooimage" version))
32600 (sha256
32601 (base32
32602 "0ck8w0zb9l1n9xvjwqshq9q9l8pigy3yslq2hnfbgcwk17kk9mp8"))))
32603 (properties `((upstream-name . "zooimage")))
32604 (build-system r-build-system)
32605 (propagated-inputs
32606 (list r-digest
32607 r-dt
32608 r-filehash
32609 r-jpeg
32610 r-mass
32611 r-mda
32612 r-mlearning
32613 r-png
32614 r-shiny
32615 r-svdialogs
32616 r-svmisc
32617 r-tiff))
32618 (home-page "http://www.sciviews.org/zooimage")
32619 (synopsis "Analysis of numerical plankton images")
32620 (description
32621 "This package provides a solution for analyzing digital images of
32622 plankton. In combination with ImageJ, an image analysis system, it processes
32623 digital images, measures individuals, trains for automatic classification of
32624 taxa, and finally, measures plankton samples (abundances, total and partial
32625 size spectra or biomasses, etc.).")
32626 (license license:gpl2+)))
32627
32628 (define-public r-zooarch
32629 (package
32630 (name "r-zooarch")
32631 (version "1.2")
32632 (source
32633 (origin
32634 (method url-fetch)
32635 (uri (cran-uri "zooaRch" version))
32636 (sha256
32637 (base32
32638 "0grc378xppv0303sf4flfqz5002vq5a23nzbq4bsff41rww7dihc"))))
32639 (properties `((upstream-name . "zooaRch")))
32640 (build-system r-build-system)
32641 (propagated-inputs (list r-ggplot2))
32642 (native-inputs (list r-knitr))
32643 (home-page
32644 "https://cran.r-project.org/package=zooaRch")
32645 (synopsis
32646 "Analytical Tools for Zooarchaeological Data")
32647 (description
32648 "The analysis and inference of faunal remains recovered from
32649 archaeological sites concerns the field of zooarchaeology. The zooaRch
32650 package provides analytical tools to make inferences on zooarchaeological
32651 data. Functions in this package allow users to read, manipulate, visualize,
32652 and analyze zooarchaeological data.")
32653 (license license:gpl2+)))
32654
32655 (define-public r-zonebuilder
32656 (package
32657 (name "r-zonebuilder")
32658 (version "0.0.2")
32659 (source
32660 (origin
32661 (method url-fetch)
32662 (uri (cran-uri "zonebuilder" version))
32663 (sha256
32664 (base32
32665 "0mxf3dz0d6bi5wwjilqivdxhy5ypnq5svky8zygha0clv45l4dmn"))))
32666 (properties `((upstream-name . "zonebuilder")))
32667 (build-system r-build-system)
32668 (propagated-inputs
32669 (list r-rcolorbrewer r-sf))
32670 (native-inputs
32671 (list r-knitr))
32672 (home-page "https://github.com/zonebuilders/zonebuilder")
32673 (synopsis "Create and explore geographic zoning systems")
32674 (description
32675 "This package provides functions, documentation and example data to help
32676 divide geographic space into discrete polygons (zones). The functions are
32677 motivated by research into the merits of different zoning systems. A flexible
32678 @code{ClockBoard} zoning system is provided, which breaks-up space by
32679 concentric rings and radial lines emanating from a central point.")
32680 (license license:gpl3)))
32681
32682 (define-public r-zonator
32683 (package
32684 (name "r-zonator")
32685 (version "0.6.0")
32686 (source
32687 (origin
32688 (method url-fetch)
32689 (uri (cran-uri "zonator" version))
32690 (sha256
32691 (base32
32692 "1plxchpd4ypp36phl13pi9yvlrqi3lk83lv5rldrhdqynhcgfw2k"))))
32693 (properties `((upstream-name . "zonator")))
32694 (build-system r-build-system)
32695 (propagated-inputs
32696 (list r-ggplot2 r-raster r-rcolorbrewer r-reshape2 r-rgdal))
32697 (native-inputs (list r-knitr))
32698 (home-page "https://cbig.github.io/zonator/")
32699 (synopsis "Utilities for Zonation spatial conservation prioritization")
32700 (description
32701 "Create new analysis setups and deal with results of Zonation
32702 conservation prioritization software.")
32703 (license license:bsd-2)))
32704
32705 (define-public r-mmwrweek
32706 (package
32707 (name "r-mmwrweek")
32708 (version "0.1.3")
32709 (source
32710 (origin
32711 (method url-fetch)
32712 (uri (cran-uri "MMWRweek" version))
32713 (sha256
32714 (base32
32715 "1l1ks44v52iggw9nhs56lfj6804yab5b17k8fzrc6h1kvj3vda0s"))))
32716 (properties `((upstream-name . "MMWRweek")))
32717 (build-system r-build-system)
32718 (home-page "http://wwwn.cdc.gov/nndss/document/MMWR_Week_overview.pdf")
32719 (synopsis "Convert dates to MMWR day, week, and year")
32720 (description
32721 "The first day of any MMWR week is Sunday. MMWR week numbering is
32722 sequential beginning with 1 and incrementing with each week to a maximum of 52
32723 or 53. MMWR week #1 of an MMWR year is the first week of the year that has at
32724 least four days in the calendar year. This package provides functionality to
32725 convert dates to MMWR day, week, and year and the reverse.")
32726 (license license:gpl2+)))
32727
32728 (define-public r-cccd
32729 (package
32730 (name "r-cccd")
32731 (version "1.6")
32732 (source
32733 (origin
32734 (method url-fetch)
32735 (uri (cran-uri "cccd" version))
32736 (sha256
32737 (base32 "0cxh19jqappc6zq9nz3m40ybdmsp12mf7yvflsz96wks3ly2ld4y"))))
32738 (properties `((upstream-name . "cccd")))
32739 (build-system r-build-system)
32740 (propagated-inputs (list r-deldir r-fnn r-igraph r-proxy))
32741 (home-page "https://cran.r-project.org/package=cccd")
32742 (synopsis "Class cover catch digraphs")
32743 (description
32744 "This package provides tools to create Class Cover Catch Digraphs,
32745 neighborhood graphs, and relatives.")
32746 (license license:gpl2+)))
32747
32748 (define-public r-crul
32749 (package
32750 (name "r-crul")
32751 (version "1.2.0")
32752 (source
32753 (origin
32754 (method url-fetch)
32755 (uri (cran-uri "crul" version))
32756 (sha256
32757 (base32
32758 "133g0skz4lifl8hm8pqdryd2m2drbrm6mdfzbbsrw8fg46di86my"))))
32759 (properties `((upstream-name . "crul")))
32760 (build-system r-build-system)
32761 (propagated-inputs
32762 (list r-curl
32763 r-httpcode
32764 r-jsonlite
32765 r-mime
32766 r-r6
32767 r-urltools))
32768 (native-inputs (list r-knitr))
32769 (home-page "https://github.com/ropensci/crul")
32770 (synopsis "HTTP client")
32771 (description
32772 "This package provides a simple HTTP client, with tools for making HTTP
32773 requests, and mocking HTTP requests. The package is built on R6, and takes
32774 inspiration from Ruby's @code{faraday} gem.")
32775 (license license:expat)))
32776
32777 (define-public r-gistr
32778 (package
32779 (name "r-gistr")
32780 (version "0.9.0")
32781 (source
32782 (origin
32783 (method url-fetch)
32784 (uri (cran-uri "gistr" version))
32785 (sha256
32786 (base32
32787 "0ac9ikrdg6i8xvlma0gizvsdva46408lk7hvsgkqirhy2ljy02hp"))))
32788 (properties `((upstream-name . "gistr")))
32789 (build-system r-build-system)
32790 (propagated-inputs
32791 (list r-assertthat
32792 r-crul
32793 r-dplyr
32794 r-httr
32795 r-jsonlite
32796 r-knitr
32797 r-magrittr
32798 r-rmarkdown))
32799 (native-inputs (list r-knitr))
32800 (home-page "https://github.com/ropensci/gistr")
32801 (synopsis "Work with Gists in browser")
32802 (description
32803 "This package allows the user to create new Github gists, update gists
32804 with new files, rename files, delete files, get and delete gists, star and
32805 un-star them, fork them, open a gist in your default browser, get an embed
32806 code for a gist, list gist commits, and get rate limit information when
32807 authenticated.")
32808 (license license:expat)))
32809
32810 (define-public r-rbokeh
32811 (package
32812 (name "r-rbokeh")
32813 (version "0.5.2")
32814 (source
32815 (origin
32816 (method url-fetch)
32817 (uri (cran-uri "rbokeh" version))
32818 (sha256
32819 (base32
32820 "1h2fpzqf17pw9d09r1g1iyxsj5qma4fsk8vnar7f1z4fjyypvi6q"))
32821 (snippet
32822 '(for-each delete-file '("inst/htmlwidgets/lib/bokehjs/bokeh-widgets.min.js"
32823 "inst/htmlwidgets/lib/bokehjs/bokeh.min.js")))))
32824 (properties `((upstream-name . "rbokeh")))
32825 (build-system r-build-system)
32826 (arguments
32827 `(#:phases
32828 (modify-phases %standard-phases
32829 (add-after 'unpack 'process-javascript
32830 (lambda* (#:key inputs #:allow-other-keys)
32831 (with-directory-excursion "inst/htmlwidgets/lib/bokehjs"
32832 (let ((mapping
32833 `((,(assoc-ref inputs "js-bokeh-widgets")
32834 . "bokeh-widgets.min.js")
32835 (,(assoc-ref inputs "js-bokeh")
32836 . "bokeh.min.js"))))
32837 (for-each (lambda (source target)
32838 (format #true "Processing ~a --> ~a~%"
32839 source target)
32840 (invoke "esbuild" source "--minify"
32841 (string-append "--outfile=" target)))
32842 (map car mapping)
32843 (map cdr mapping)))))))))
32844 (propagated-inputs
32845 (list r-digest
32846 r-gistr
32847 r-hexbin
32848 r-htmlwidgets
32849 r-jsonlite
32850 r-lazyeval
32851 r-magrittr
32852 r-maps
32853 r-pryr
32854 r-scales))
32855 ;; Version 0.12.15 is mentioned in lib/htmlwidgets/rbokeh.yaml.
32856 (native-inputs
32857 `(("esbuild" ,esbuild)
32858 ("js-bokeh-widgets"
32859 ,(origin
32860 (method url-fetch)
32861 (uri "https://unpkg.com/bokehjs@0.12.15/build/js/bokeh-widgets.js")
32862 (sha256
32863 (base32
32864 "07v9lrkfcbdznpb10qqwi4m660zp65g85vlnfw7kn83zmkxkhhxy"))))
32865 ("js-bokeh"
32866 ,(origin
32867 (method url-fetch)
32868 (uri "https://unpkg.com/bokehjs@0.12.15/build/js/bokeh.js")
32869 (sha256
32870 (base32
32871 "1pq0059aad7d2jv50nv9449p3w0gbkxkl0mhblc76m5d9qjqav2q"))))
32872 ("r-knitr" ,r-knitr)))
32873 (home-page "https://cran.r-project.org/web/packages/rbokeh/")
32874 (synopsis "R interface for the Bokeh visualization library")
32875 (description
32876 "This package provides a native R plotting library that provides a
32877 flexible declarative interface for creating interactive web-based graphics,
32878 backed by the @url{https://bokeh.pydata.org/, Bokeh visualization library}.")
32879 (license license:expat)))
32880
32881 (define-public r-fauxpas
32882 (package
32883 (name "r-fauxpas")
32884 (version "0.5.0")
32885 (source
32886 (origin
32887 (method url-fetch)
32888 (uri (cran-uri "fauxpas" version))
32889 (sha256
32890 (base32
32891 "129fzqb7wsskbn50s8x0marr4wm8jrns6hiycqcsk166k3dnyyy8"))))
32892 (properties `((upstream-name . "fauxpas")))
32893 (build-system r-build-system)
32894 (propagated-inputs
32895 (list r-httpcode r-r6 r-whisker))
32896 (native-inputs
32897 (list r-knitr))
32898 (home-page "https://docs.ropensci.org/fauxpas")
32899 (synopsis "HTTP error helpers")
32900 (description
32901 "This package provides HTTP error helpers. Methods are included for
32902 general purpose HTTP error handling, as well as individual methods for every
32903 HTTP status code, both via status code numbers as well as their descriptive
32904 names. It supports the ability to adjust behavior to stop, message or
32905 warning. It includes the ability to use a custom whisker template to have any
32906 configuration of status code, short description, and verbose message.")
32907 (license license:expat)))
32908
32909 (define-public r-webmockr
32910 (package
32911 (name "r-webmockr")
32912 (version "0.8.0")
32913 (source
32914 (origin
32915 (method url-fetch)
32916 (uri (cran-uri "webmockr" version))
32917 (sha256
32918 (base32
32919 "0j40srwi0yasmllb9wsww4m6zkiyzqd549cis4dxd7c7p24hak8j"))))
32920 (properties `((upstream-name . "webmockr")))
32921 (build-system r-build-system)
32922 (propagated-inputs
32923 (list r-base64enc
32924 r-crul
32925 r-curl
32926 r-fauxpas
32927 r-jsonlite
32928 r-magrittr
32929 r-r6
32930 r-urltools))
32931 (home-page "https://github.com/ropensci/webmockr")
32932 (synopsis "Stubbing and setting expectations on HTTP Requests")
32933 (description
32934 "This is a package for stubbing and setting expectations on HTTP
32935 requests. It includes tools for stubbing HTTP requests, including expected
32936 request conditions and response conditions. You can match on HTTP method,
32937 query parameters, request body, headers and more. It can be used for unit
32938 tests or outside of a testing context.")
32939 (license license:expat)))
32940
32941 (define-public r-iotools
32942 (package
32943 (name "r-iotools")
32944 (version "0.3-2")
32945 (source
32946 (origin
32947 (method url-fetch)
32948 (uri (cran-uri "iotools" version))
32949 (sha256
32950 (base32 "07q0z0kszm1xx5hfhisfliyrcsxd8dc5mx0a2bwwnv5l1xzmix17"))))
32951 (properties `((upstream-name . "iotools")))
32952 (build-system r-build-system)
32953 (home-page "https://www.rforge.net/iotools")
32954 (synopsis "I/O tools for streaming")
32955 (description "This package provides basic I/O tools for streaming and data
32956 parsing.")
32957 ;; GPL 2 or GPL 3.
32958 (license license:gpl3)))
32959
32960 (define-public r-wordspace
32961 (package
32962 (name "r-wordspace")
32963 (version "0.2-7")
32964 (source
32965 (origin
32966 (method url-fetch)
32967 (uri (cran-uri "wordspace" version))
32968 (sha256
32969 (base32 "0hrjv5mag7gwl4wj7np248sdyns5i623wl37b11hlgalhbmlypyf"))))
32970 (properties `((upstream-name . "wordspace")))
32971 (build-system r-build-system)
32972 (propagated-inputs
32973 (list r-cluster r-iotools r-mass r-matrix r-rcpp r-sparsesvd))
32974 (native-inputs (list r-knitr))
32975 (home-page "https://wordspace.r-forge.r-project.org/")
32976 (synopsis "Distributional semantic models in R")
32977 (description
32978 "The wordspace package turns R into an interactive laboratory for
32979 empirical research on @dfn{distributional semantic models} (DSM). It consists
32980 of a small set of carefully designed functions, most of which
32981
32982 @itemize
32983 @item encapsulate non-trivial R operations in a user-friendly manner or
32984 @item provide efficient and memory-lean C implementations of key operations.
32985 @end itemize
32986 ")
32987 (license license:gpl3)))
32988
32989 (define-public r-maxlik
32990 (package
32991 (name "r-maxlik")
32992 (version "1.5-2")
32993 (source
32994 (origin
32995 (method url-fetch)
32996 (uri (cran-uri "maxLik" version))
32997 (sha256
32998 (base32 "0pdigfpyiqacj2ydhpn5w1h89dz1ydk0syzs25lsgdi40sz0bvkw"))))
32999 (properties `((upstream-name . "maxLik")))
33000 (build-system r-build-system)
33001 (propagated-inputs (list r-generics r-misctools r-sandwich))
33002 (home-page "https://cran.r-project.org/package=maxLik")
33003 (synopsis "Maximum Likelihood Estimation and related tools")
33004 (description
33005 "This package provides functions for @dfn{Maximum Likelihood} (ML) estimation,
33006 non-linear optimization, and related tools. It includes a unified way to call
33007 different optimizers, and classes and methods to handle the results from the
33008 Maximum Likelihood viewpoint. It also includes a number of convenience tools
33009 for testing and developing your own models.")
33010 (license license:gpl2+)))
33011
33012 (define-public r-misctools
33013 (package
33014 (name "r-misctools")
33015 (version "0.6-26")
33016 (source
33017 (origin
33018 (method url-fetch)
33019 (uri (cran-uri "miscTools" version))
33020 (sha256
33021 (base32 "16pwfxpyl0zv3hjxx2kjchkg7p6kbj0s2rrpskj7rkhjr9imlg5y"))))
33022 (properties `((upstream-name . "miscTools")))
33023 (build-system r-build-system)
33024 (propagated-inputs (list r-digest))
33025 (home-page "http://www.micEcon.org")
33026 (synopsis "Miscellaneous tools and utilities")
33027 (description
33028 "This package provides miscellaneous small tools and utilities. Many of
33029 them facilitate the work with matrices, e.g. inserting rows or columns,
33030 creating symmetric matrices, or checking for semidefiniteness. Other tools
33031 facilitate the work with regression models, e.g. extracting the standard
33032 errors, obtaining the number of (estimated) parameters, or calculating
33033 R-squared values.")
33034 (license license:gpl2+)))
33035
33036 (define-public r-mockery
33037 (package
33038 (name "r-mockery")
33039 (version "0.4.3")
33040 (source
33041 (origin
33042 (method url-fetch)
33043 (uri (cran-uri "mockery" version))
33044 (sha256
33045 (base32
33046 "0sj77m9vgn4bzb8c8nq93xb9lm8ih8rcb7sfccripraibibg3jcz"))))
33047 (properties `((upstream-name . "mockery")))
33048 (build-system r-build-system)
33049 (propagated-inputs
33050 (list r-testthat))
33051 (native-inputs
33052 (list r-knitr))
33053 (home-page "https://github.com/jfiksel/mockery")
33054 (synopsis "Mocking library for R")
33055 (description
33056 "The two main functionalities of this package are creating mock
33057 objects (functions) and selectively intercepting calls to a given function
33058 that originate in some other function. It can be used with any testing
33059 framework available for R. Mock objects can be injected with either this
33060 package's own @code{stub} function or a similar @code{with_mock} facility
33061 present in the @code{testthat} package.")
33062 (license license:expat)))
33063
33064 (define-public r-zoltr
33065 (package
33066 (name "r-zoltr")
33067 (version "0.5.1")
33068 (source
33069 (origin
33070 (method url-fetch)
33071 (uri (cran-uri "zoltr" version))
33072 (sha256
33073 (base32
33074 "12zh7y3pwidclscgvd0b0iaqq9j5y8mc8xd6pz4vs0jy5qs3ahar"))))
33075 (properties `((upstream-name . "zoltr")))
33076 (build-system r-build-system)
33077 (propagated-inputs
33078 (list r-base64url
33079 r-dplyr
33080 r-httr
33081 r-jsonlite
33082 r-magrittr
33083 r-mmwrweek
33084 r-mockery
33085 r-readr
33086 r-rlang
33087 r-webmockr))
33088 (native-inputs (list r-knitr))
33089 (home-page "https://github.com/reichlab/zoltr")
33090 (synopsis "Interface to the Zoltar forecast repository API")
33091 (description
33092 "Zoltar is a website that provides a repository of model forecast results
33093 in a standardized format and a central location. It supports storing,
33094 retrieving, comparing, and analyzing time series forecasts for prediction
33095 challenges of interest to the modeling community. This package provides
33096 functions for working with the Zoltar API, including connecting and
33097 authenticating, getting information about projects, models, and forecasts,
33098 deleting and uploading forecast data, and downloading scores.")
33099 (license license:gpl3)))
33100
33101 (define-public r-zoib
33102 (package
33103 (name "r-zoib")
33104 (version "1.5.5")
33105 (source
33106 (origin
33107 (method url-fetch)
33108 (uri (cran-uri "zoib" version))
33109 (sha256
33110 (base32
33111 "0inm7f2pc68ksqxvq12xp9jc99vj7ydylvs24ip12nksbj5k1n8f"))))
33112 (properties `((upstream-name . "zoib")))
33113 (build-system r-build-system)
33114 (propagated-inputs
33115 (list r-abind r-coda r-formula r-rjags))
33116 (home-page "https://www.r-project.org")
33117 (synopsis "Bayesian inference for beta regression")
33118 (description
33119 "This package lets you fit beta regression and zero-or-one inflated beta
33120 regression and obtain Bayesian inference of the model via the Markov Chain
33121 Monte Carlo approach implemented in JAGS.")
33122 (license license:gpl3+)))
33123
33124 (define-public r-logger
33125 (package
33126 (name "r-logger")
33127 (version "0.2.2")
33128 (source
33129 (origin
33130 (method url-fetch)
33131 (uri (cran-uri "logger" version))
33132 (sha256
33133 (base32 "08kym5i5fvbf5xhh9qdszp4jdgyc7j7zpnwzy68wabqz73aff6sg"))))
33134 (properties `((upstream-name . "logger")))
33135 (build-system r-build-system)
33136 (native-inputs (list r-knitr))
33137 (home-page "https://daroczig.github.io/logger/")
33138 (synopsis "Lightweight and flexible logging utility")
33139 (description
33140 "Inspired by the the @code{futile.logger} R package and @code{logging}
33141 Python module, this utility provides a flexible and extensible way of
33142 formatting and delivering log messages with low overhead.")
33143 (license license:agpl3+)))
33144
33145 (define-public r-fasterize
33146 (package
33147 (name "r-fasterize")
33148 (version "1.0.3")
33149 (source
33150 (origin
33151 (method url-fetch)
33152 (uri (cran-uri "fasterize" version))
33153 (sha256
33154 (base32 "10bzl77c1b9jhcn1xp467qzp2n8c7s3wpxn53qjh1nwvbri5kd32"))))
33155 (properties `((upstream-name . "fasterize")))
33156 (build-system r-build-system)
33157 (propagated-inputs
33158 (list r-raster r-rcpp r-rcpparmadillo r-sp))
33159 (native-inputs (list r-knitr))
33160 (home-page "https://github.com/ecohealthalliance/fasterize")
33161 (synopsis "Fast Polygon to Raster Conversion")
33162 (description
33163 "This package provides a drop-in replacement for @code{rasterize} from
33164 the @code{raster} package that takes sf-type objects, and is much faster.
33165 There is support for the main options provided by the @code{rasterize}
33166 function, including setting the field used and background value, and
33167 options for aggregating multi-layer rasters.")
33168 (license license:expat)))
33169
33170 (define-public r-bien
33171 (package
33172 (name "r-bien")
33173 (version "1.2.5")
33174 (source
33175 (origin
33176 (method url-fetch)
33177 (uri (cran-uri "BIEN" version))
33178 (sha256
33179 (base32 "0s98n6zbf48vssd3h63k6kashcxv1kawcb026n0ngsfpc5dv6i48"))))
33180 (properties `((upstream-name . "BIEN")))
33181 (build-system r-build-system)
33182 (native-inputs
33183 (list r-knitr))
33184 (propagated-inputs
33185 (list r-ape
33186 r-dbi
33187 r-doparallel
33188 r-fasterize
33189 r-foreach
33190 r-raster
33191 r-rgdal
33192 r-rgeos
33193 r-rpostgresql
33194 r-sf
33195 r-sp))
33196 (home-page "https://cran.r-project.org/package=BIEN")
33197 (synopsis "Tools for accessing the BIEN database")
33198 (description
33199 "This package provides tools for accessing the Botanical Information and
33200 Ecology Network (BIEN) database. The BIEN database contains cleaned and
33201 standardized botanical data including occurrence, trait, plot and taxonomic
33202 data. This package provides functions that query the BIEN database by
33203 constructing and executing optimized SQL queries.")
33204 (license license:expat)))
33205
33206 (define-public r-varhandle
33207 (package
33208 (name "r-varhandle")
33209 (version "2.0.5")
33210 (source
33211 (origin
33212 (method url-fetch)
33213 (uri (cran-uri "varhandle" version))
33214 (sha256
33215 (base32 "1l42d0s6fbjjc9l28a2m3myxkrx2c0p0b9yj8wjjjgilw19yc3lv"))))
33216 (properties `((upstream-name . "varhandle")))
33217 (build-system r-build-system)
33218 (home-page "https://bitbucket.org/mehrad_mahmoudian/varhandle")
33219 (synopsis "Functions for robust variable handling")
33220 (description
33221 "This package contains some functions to help users (especially data
33222 explorers) to make more sense of their variables and take the most out of
33223 variables and hardware resources. Functions in this package are supposed to
33224 be efficient and easy to use.")
33225 (license license:gpl2+)))
33226
33227 (define-public r-ggh4x
33228 (package
33229 (name "r-ggh4x")
33230 (version "0.2.1")
33231 (source
33232 (origin
33233 (method url-fetch)
33234 (uri (cran-uri "ggh4x" version))
33235 (sha256
33236 (base32
33237 "1r49yfm5fqv5s7jb92ad6rf8hd9plcry6f500czjhnhhrp16cqfp"))))
33238 (properties `((upstream-name . "ggh4x")))
33239 (build-system r-build-system)
33240 (propagated-inputs
33241 (list r-ggplot2 r-gtable r-rlang r-scales r-vctrs))
33242 (native-inputs
33243 (list r-knitr))
33244 (home-page "https://github.com/teunbrand/ggh4x")
33245 (synopsis "Extension for ggplot2")
33246 (description "This package is a @code{ggplot2} extension. It provides some
33247 utility functions that do not entirely fit within the grammar of graphics
33248 concept. The package extends @code{ggpplots} facets through customisation, by
33249 setting individual scales per panel, resizing panels and providing nested
33250 facets. It also allows multiple colour, fill scales per plot and hosts a
33251 smaller collection of stats, geoms and axis guides.")
33252 (license license:expat)))
33253
33254 (define-public r-zoeppritz
33255 (package
33256 (name "r-zoeppritz")
33257 (version "1.0-8")
33258 (source (origin
33259 (method url-fetch)
33260 (uri (cran-uri "zoeppritz" version))
33261 (sha256
33262 (base32
33263 "1711szx9zz17q6pfinyzlyrw7m9772c8ywlixqar2l165bkjalgm"))))
33264 (properties `((upstream-name . "zoeppritz")))
33265 (build-system r-build-system)
33266 (home-page "https://cran.r-project.org/package=zoeppritz")
33267 (synopsis "Seismic reflection and scattering coefficients for waves")
33268 (description
33269 "The @code{r-zoeppritz} package calculates and plots scattering matrix
33270 coefficients or scattering amplitudes, for seismological P and S-waves at an
33271 interface.")
33272 (license license:gpl2+)))