gnu: r-tidyr: Update to 1.0.2.
[jackhill/guix/guix.git] / gnu / packages / statistics.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2015 Vicente Vera Parra <vicentemvp@gmail.com>
4 ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
5 ;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
6 ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
7 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
8 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
9 ;;; Copyright © 2016, 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
10 ;;; Copyright © 2017 Kyle Meyer <kyle@kyleam.com>
11 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
12 ;;; Copyright © 2017 Alex Kost <alezost@gmail.com>
13 ;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
14 ;;;
15 ;;; This file is part of GNU Guix.
16 ;;;
17 ;;; GNU Guix is free software; you can redistribute it and/or modify it
18 ;;; under the terms of the GNU General Public License as published by
19 ;;; the Free Software Foundation; either version 3 of the License, or (at
20 ;;; your option) any later version.
21 ;;;
22 ;;; GNU Guix is distributed in the hope that it will be useful, but
23 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;;; GNU General Public License for more details.
26 ;;;
27 ;;; You should have received a copy of the GNU General Public License
28 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
29
30 (define-module (gnu packages statistics)
31 #:use-module ((guix licenses) #:prefix license:)
32 #:use-module (guix packages)
33 #:use-module (guix download)
34 #:use-module (guix hg-download)
35 #:use-module (guix git-download)
36 #:use-module (guix utils)
37 #:use-module (guix build-system ant)
38 #:use-module (guix build-system gnu)
39 #:use-module (guix build-system r)
40 #:use-module (guix build-system python)
41 #:use-module (guix build-system trivial)
42 #:use-module (gnu packages)
43 #:use-module (gnu packages algebra)
44 #:use-module (gnu packages autotools)
45 #:use-module (gnu packages bash)
46 #:use-module (gnu packages check)
47 #:use-module (gnu packages compression)
48 #:use-module (gnu packages cran)
49 #:use-module (gnu packages curl)
50 #:use-module (gnu packages emacs)
51 #:use-module (gnu packages emacs-xyz)
52 #:use-module (gnu packages fontutils)
53 #:use-module (gnu packages gcc)
54 #:use-module (gnu packages gtk)
55 #:use-module (gnu packages gettext)
56 #:use-module (gnu packages glib)
57 #:use-module (gnu packages haskell-xyz)
58 #:use-module (gnu packages icu4c)
59 #:use-module (gnu packages image)
60 #:use-module (gnu packages java)
61 #:use-module (gnu packages libffi)
62 #:use-module (gnu packages machine-learning)
63 #:use-module (gnu packages maths)
64 #:use-module (gnu packages multiprecision)
65 #:use-module (gnu packages pcre)
66 #:use-module (gnu packages perl)
67 #:use-module (gnu packages pkg-config)
68 #:use-module (gnu packages python)
69 #:use-module (gnu packages python-science)
70 #:use-module (gnu packages python-xyz)
71 #:use-module (gnu packages readline)
72 #:use-module (gnu packages sphinx)
73 #:use-module (gnu packages ssh)
74 #:use-module (gnu packages tcl)
75 #:use-module (gnu packages tex)
76 #:use-module (gnu packages texinfo)
77 #:use-module (gnu packages time)
78 #:use-module (gnu packages tls)
79 #:use-module (gnu packages base)
80 #:use-module (gnu packages version-control)
81 #:use-module (gnu packages web)
82 #:use-module (gnu packages xml)
83 #:use-module (gnu packages xorg)
84 #:use-module (srfi srfi-1))
85
86
87 (define-public pspp
88 (package
89 (name "pspp")
90 (version "1.2.0")
91 (source
92 (origin
93 (method url-fetch)
94 (uri (string-append "mirror://gnu/pspp/pspp-"
95 version ".tar.gz"))
96 (sha256
97 (base32
98 "07pp27zycrb5x927jwaj9r3q7hy915jh51xs85zxby6gfiwl63m5"))))
99 (build-system gnu-build-system)
100 (inputs
101 `(("cairo" ,cairo)
102 ("gettext" ,gettext-minimal)
103 ("gsl" ,gsl)
104 ("libxml2" ,libxml2)
105 ("pango" ,pango)
106 ("readline" ,readline)
107 ("gtk" ,gtk+)
108 ("gtksourceview" ,gtksourceview)
109 ("spread-sheet-widget" ,spread-sheet-widget)
110 ("zlib" ,zlib)))
111 (native-inputs
112 `(("autoconf" ,autoconf) ;for tests
113 ("glib" ,glib "bin") ;for glib-genmarshal
114 ("perl" ,perl)
115 ("pkg-config" ,pkg-config)
116 ("python" ,python-2) ;for tests
117 ("texinfo" ,texinfo)))
118 (home-page "https://www.gnu.org/software/pspp/")
119 (synopsis "Statistical analysis")
120 (description
121 "GNU PSPP is a statistical analysis program. It can perform
122 descriptive statistics, T-tests, linear regression and non-parametric tests.
123 It features both a graphical interface as well as command-line input. PSPP
124 is designed to interoperate with Gnumeric, LibreOffice and OpenOffice. Data
125 can be imported from spreadsheets, text files and database sources and it can
126 be output in text, PostScript, PDF or HTML.")
127 (license license:gpl3+)))
128
129 (define-public jags
130 (package
131 (name "jags")
132 (version "4.3.0")
133 (source (origin
134 (method url-fetch)
135 (uri (string-append "mirror://sourceforge/mcmc-jags/JAGS/"
136 (version-major version) ".x/Source/"
137 "JAGS-" version ".tar.gz"))
138 (sha256
139 (base32
140 "1z3icccg2ic56vmhyrpinlsvpq7kcaflk1731rgpvz9bk1bxvica"))))
141 (build-system gnu-build-system)
142 (home-page "http://mcmc-jags.sourceforge.net/")
143 (native-inputs
144 `(("gfortran" ,gfortran)
145 ("lapack" ,lapack)))
146 (synopsis "Gibbs sampler")
147 (description "JAGS is Just Another Gibbs Sampler. It is a program for
148 analysis of Bayesian hierarchical models using Markov Chain Monte Carlo (MCMC)
149 simulation not wholly unlike BUGS. JAGS was written with three aims in mind:
150
151 @enumerate
152 @item To have a cross-platform engine for the BUGS language;
153 @item To be extensible, allowing users to write their own functions,
154 distributions and samplers;
155 @item To be a platform for experimentation with ideas in Bayesian modelling.
156 @end enumerate\n")
157 (license license:gpl2)))
158
159 (define-public libxls
160 (package
161 (name "libxls")
162 (version "1.5.2")
163 (source
164 (origin
165 (method url-fetch)
166 (uri (string-append "https://github.com/libxls/libxls/releases/download/"
167 "v" version "/libxls-" version ".tar.gz"))
168 (sha256
169 (base32 "1akadsyl10rp101ccjmrxr7933c3v641k377bn74jv6cdkcm4zld"))))
170 (build-system gnu-build-system)
171 (home-page "https://github.com/libxls/libxls")
172 (synopsis "Read binary (.xls) Excel spreadsheet files")
173 (description
174 "libxls is a C library to read .xls spreadsheet files in the binary OLE
175 BIFF8 format as created by Excel 97 and later versions. It cannot write them.
176
177 This package also provides @command{xls2csv} to export Excel files to CSV.")
178 (license license:bsd-2)))
179
180 ;; Update this package together with the set of recommended packages: r-boot,
181 ;; r-class, r-cluster, r-codetools, r-foreign, r-kernsmooth, r-lattice,
182 ;; r-mass, r-matrix, r-mgcv, r-nlme, r-nnet, r-rpart, r-spatial, r-survival.
183 (define r-with-tests
184 (package
185 (name "r-with-tests")
186 (version "3.6.2")
187 (source (origin
188 (method url-fetch)
189 (uri (string-append "mirror://cran/src/base/R-"
190 (version-major version) "/R-"
191 version ".tar.gz"))
192 (sha256
193 (base32
194 "0m69pfi0nxyriyb2yz74xfzaxwfkinnf9kpvf1rz727vvmfa8rdx"))))
195 (build-system gnu-build-system)
196 (arguments
197 `(#:disallowed-references (,tzdata-for-tests)
198 #:make-flags
199 (list (string-append "LDFLAGS=-Wl,-rpath="
200 (assoc-ref %outputs "out")
201 "/lib/R/lib")
202 ;; This affects the embedded timestamp of only the core packages.
203 "PKG_BUILT_STAMP=1970-01-01")
204 #:phases
205 (modify-phases %standard-phases
206 (add-before 'configure 'do-not-compress-serialized-files
207 (lambda* (#:key inputs #:allow-other-keys)
208 ;; This ensures that Guix can detect embedded store references;
209 ;; see bug #28157 for details.
210 (substitute* "src/library/base/makebasedb.R"
211 (("compress = TRUE") "compress = FALSE"))
212 #t))
213 (add-before 'configure 'patch-uname
214 (lambda* (#:key inputs #:allow-other-keys)
215 (let ((uname-bin (string-append (assoc-ref inputs "coreutils")
216 "/bin/uname")))
217 (substitute* "src/scripts/R.sh.in"
218 (("uname") uname-bin)))
219 #t))
220 (add-after 'unpack 'build-reproducibly
221 (lambda _
222 ;; The documentation contains time stamps to demonstrate
223 ;; documentation generation in different phases.
224 (substitute* "src/library/tools/man/Rd2HTML.Rd"
225 (("\\\\%Y-\\\\%m-\\\\%d at \\\\%H:\\\\%M:\\\\%S")
226 "(removed for reproducibility)"))
227
228 ;; Remove timestamp from tracing environment. This fixes
229 ;; reproducibility of "methods.rd{b,x}".
230 (substitute* "src/library/methods/R/trace.R"
231 (("dateCreated = Sys.time\\(\\)")
232 "dateCreated = as.POSIXct(\"1970-1-1 00:00:00\", tz = \"UTC\")"))
233
234 ;; Ensure that gzipped files are reproducible.
235 (substitute* '("src/library/grDevices/Makefile.in"
236 "doc/manual/Makefile.in")
237 (("R_GZIPCMD\\)" line)
238 (string-append line " -n")))
239
240 ;; The "srcfile" procedure in "src/library/base/R/srcfile.R"
241 ;; queries the mtime of a given file and records it in an object.
242 ;; This is acceptable at runtime to detect stale source files,
243 ;; but it destroys reproducibility at build time.
244
245 ;; Similarly, the "srcfilecopy" procedure records the current
246 ;; time. We change both of them to respect SOURCE_DATE_EPOCH.
247 (substitute* "src/library/base/R/srcfile.R"
248 (("timestamp <- (timestamp.*|file.mtime.*)" _ time)
249 (string-append "timestamp <- \
250 as.POSIXct(if (\"\" != Sys.getenv(\"SOURCE_DATE_EPOCH\")) {\
251 as.numeric(Sys.getenv(\"SOURCE_DATE_EPOCH\"))\
252 } else { " time "}, origin=\"1970-01-01\")\n")))
253
254 ;; This library is installed using "install_package_description",
255 ;; so we need to pass the "builtStamp" argument.
256 (substitute* "src/library/tools/Makefile.in"
257 (("(install_package_description\\(.*\"')\\)\"" line prefix)
258 (string-append prefix ", builtStamp='1970-01-01')\"")))
259
260 (substitute* "src/library/Recommended/Makefile.in"
261 (("INSTALL_OPTS =" m)
262 (string-append m " --built-timestamp=1970-01-01" m)))
263
264 ;; R bundles an older version of help2man, which does not respect
265 ;; SOURCE_DATE_EPOCH. We cannot just use the latest help2man,
266 ;; because that breaks a test.
267 (with-fluids ((%default-port-encoding "ISO-8859-1"))
268 (substitute* "tools/help2man.pl"
269 (("my \\$date = strftime \"%B %Y\", localtime" line)
270 (string-append line " 1"))))
271 #t))
272 (add-before 'configure 'set-default-pager
273 ;; Set default pager to "cat", because otherwise it is "false",
274 ;; making "help()" print nothing at all.
275 (lambda _ (setenv "PAGER" "cat") #t))
276 (add-before 'check 'set-timezone
277 ;; Some tests require the timezone to be set. However, the
278 ;; timezone may not just be "UTC", or else a brittle regression
279 ;; test in reg-tests-1d will fail.
280 (lambda* (#:key inputs #:allow-other-keys)
281 (setenv "TZ" "UTC+1")
282 (setenv "TZDIR"
283 (string-append (assoc-ref inputs "tzdata")
284 "/share/zoneinfo"))
285 #t))
286 (add-after 'build 'make-info
287 (lambda _ (invoke "make" "info")))
288 (add-after 'build 'install-info
289 (lambda _ (invoke "make" "install-info"))))
290 #:configure-flags
291 `(;; We build the recommended packages here, because they are needed in
292 ;; order to run the test suite. We disable them in the r-minimal
293 ;; package.
294 "--with-cairo"
295 "--with-blas=-lopenblas"
296 "--with-libpng"
297 "--with-jpeglib"
298 "--with-libtiff"
299 "--with-ICU"
300 "--with-tcltk"
301 ,(string-append "--with-tcl-config="
302 (assoc-ref %build-inputs "tcl")
303 "/lib/tclConfig.sh")
304 ,(string-append "--with-tk-config="
305 (assoc-ref %build-inputs "tk")
306 "/lib/tkConfig.sh")
307 "--enable-R-shlib"
308 "--enable-BLAS-shlib"
309 "--with-system-tre")))
310 ;; R has some support for Java. When the JDK is available at configure
311 ;; time environment variables pointing to the JDK will be recorded under
312 ;; $R_HOME/etc and ./tools/getsp.java will be compiled which is used by "R
313 ;; CMD javareconf". "R CMD javareconf" appears to only be used to update
314 ;; the recorded environment variables in $R_HOME/etc. Refer to
315 ;; https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Java-support
316 ;; for additional information.
317
318 ;; As the JDK is a rather large input with only very limited effects on R,
319 ;; we decided to drop it.
320 (native-inputs
321 `(("bzip2" ,bzip2)
322 ("perl" ,perl)
323 ("pkg-config" ,pkg-config)
324 ("texinfo" ,texinfo) ; for building HTML manuals
325 ("texlive" ,(texlive-union (list texlive-fonts-ec
326 texlive-amsfonts
327 texlive-latex-base
328 texlive-latex-fancyvrb
329 texlive-latex-graphics
330 texlive-latex-hyperref
331 texlive-latex-oberdiek
332 texlive-latex-tools
333 texlive-latex-upquote
334 texlive-latex-url)))
335 ("tzdata" ,tzdata-for-tests)
336 ("xz" ,xz)))
337 (inputs
338 `(;; We need not only cairo here, but pango to ensure that tests for the
339 ;; "cairo" bitmapType plotting backend succeed.
340 ("pango" ,pango)
341 ("coreutils" ,coreutils)
342 ("curl" ,curl)
343 ("openblas" ,openblas)
344 ("gfortran" ,gfortran)
345 ("icu4c" ,icu4c)
346 ("libjpeg" ,libjpeg)
347 ("libpng" ,libpng)
348 ("libtiff" ,libtiff)
349 ("libxt" ,libxt)
350 ("pcre" ,pcre)
351 ("readline" ,readline)
352 ;; This avoids a reference to the ungraftable static bash. R uses the
353 ;; detected shell for the "system" procedure.
354 ("bash" ,bash-minimal)
355 ("tcl" ,tcl)
356 ("tk" ,tk)
357 ("which" ,which)
358 ("zlib" ,zlib)))
359 (native-search-paths
360 (list (search-path-specification
361 (variable "R_LIBS_SITE")
362 (files (list "site-library/")))))
363 (home-page "https://www.r-project.org/")
364 (synopsis "Environment for statistical computing and graphics")
365 (description
366 "R is a language and environment for statistical computing and graphics.
367 It provides a variety of statistical techniques, such as linear and nonlinear
368 modeling, classical statistical tests, time-series analysis, classification
369 and clustering. It also provides robust support for producing
370 publication-quality data plots. A large amount of 3rd-party packages are
371 available, greatly increasing its breadth and scope.")
372 (license license:gpl3+)))
373
374 (define-public r-minimal
375 (package (inherit r-with-tests)
376 (name "r-minimal")
377 (arguments
378 `(#:tests? #f
379 ,@(substitute-keyword-arguments (package-arguments r-with-tests)
380 ((#:configure-flags flags)
381 ;; Do not build the recommended packages. The build system creates
382 ;; random temporary directories and embeds their names in some
383 ;; package files. We build these packages with the r-build-system
384 ;; instead.
385 `(cons "--without-recommended-packages" ,flags)))))))
386
387 (define-public rmath-standalone
388 (package (inherit r-minimal)
389 (name "rmath-standalone")
390 (arguments
391 '(#:phases
392 (modify-phases %standard-phases
393 (add-after 'configure 'chdir
394 (lambda _ (chdir "src/nmath/standalone/") #t)))))
395 (synopsis "Standalone R math library")
396 (description
397 "This package provides the R math library as an independent package.")))
398
399 (define-public r-boot
400 (package
401 (name "r-boot")
402 (version "1.3-24")
403 (source
404 (origin
405 (method url-fetch)
406 (uri (cran-uri "boot" version))
407 (sha256
408 (base32
409 "0yv0l55kjmlfdx1xhgyjdi0bskxhfal74wr5jxaib1qj99nmkm49"))))
410 (build-system r-build-system)
411 (home-page "https://cran.r-project.org/web/packages/boot")
412 (synopsis "Bootstrap functions for R")
413 (description
414 "This package provides functions and datasets for bootstrapping from the
415 book \"Bootstrap Methods and Their Application\" by A.C. Davison and
416 D.V. Hinkley (1997, CUP), originally written by Angelo Canty for S.")
417 ;; Unlimited distribution
418 (license (license:non-copyleft "file://R/bootfuns.q"))))
419
420 (define-public r-mass
421 (package
422 (name "r-mass")
423 (version "7.3-51.5")
424 (source
425 (origin
426 (method url-fetch)
427 (uri (cran-uri "MASS" version))
428 (sha256
429 (base32
430 "1k0m7pa4gb5apzrrkb5kx5d7bmkm2pl5g15vwb6j067hrqahck26"))))
431 (properties `((upstream-name . "MASS")))
432 (build-system r-build-system)
433 (home-page "http://www.stats.ox.ac.uk/pub/MASS4/")
434 (synopsis "Support functions and datasets for Venables and Ripley's MASS")
435 (description
436 "This package provides functions and datasets for the book \"Modern
437 Applied Statistics with S\" (4th edition, 2002) by Venables and Ripley.")
438 ;; Either version may be picked.
439 (license (list license:gpl2 license:gpl3))))
440
441 (define-public r-class
442 (package
443 (name "r-class")
444 (version "7.3-15")
445 (source
446 (origin
447 (method url-fetch)
448 (uri (cran-uri "class" version))
449 (sha256
450 (base32
451 "1x1hqz8xyhbpq4krsh02glqnlzcch25agkmn4a3da9n723b37gzn"))))
452 (build-system r-build-system)
453 (propagated-inputs
454 `(("r-mass" ,r-mass)))
455 (home-page "http://www.stats.ox.ac.uk/pub/MASS4/")
456 (synopsis "R functions for classification")
457 (description
458 "This package provides various functions for classification, including
459 k-nearest neighbour, Learning Vector Quantization and Self-Organizing Maps.")
460 ;; Either of the two versions can be picked.
461 (license (list license:gpl2 license:gpl3))))
462
463 (define-public r-cluster
464 (package
465 (name "r-cluster")
466 (version "2.1.0")
467 (source
468 (origin
469 (method url-fetch)
470 (uri (cran-uri "cluster" version))
471 (sha256
472 (base32
473 "055af3yz2biqbsbwm4arwr1yqnj4gicpzv2i6dbfl5pnz2z5byga"))))
474 (build-system r-build-system)
475 (native-inputs
476 `(("gfortran" ,gfortran)))
477 (home-page "https://cran.r-project.org/web/packages/cluster")
478 (synopsis "Methods for cluster analysis")
479 (description
480 "This package provides methods for cluster analysis. It is a much
481 extended version of the original from Peter Rousseeuw, Anja Struyf and Mia
482 Hubert, based on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".")
483 (license license:gpl2+)))
484
485 (define-public r-codetools
486 (package
487 (name "r-codetools")
488 (version "0.2-16")
489 (source
490 (origin
491 (method url-fetch)
492 (uri (cran-uri "codetools" version))
493 (sha256
494 (base32
495 "00bmhzqprqfn3w6ghx7sakai6s7il8gbksfiawj8in5mbhbncypn"))))
496 (build-system r-build-system)
497 (home-page "https://cran.r-project.org/web/packages/codetools")
498 (synopsis "Code analysis tools for R")
499 (description "This package provides code analysis tools for R to check R
500 code for possible problems.")
501 ;; Any version of the GPL.
502 (license (list license:gpl2+ license:gpl3+))))
503
504 (define-public r-foreign
505 (package
506 (name "r-foreign")
507 (version "0.8-75")
508 (source
509 (origin
510 (method url-fetch)
511 (uri (cran-uri "foreign" version))
512 (sha256
513 (base32
514 "0g4mi101srjbl17ydb2hl3854m3xj0llj6861lfr30sp08nkqavl"))))
515 (build-system r-build-system)
516 (home-page "https://cran.r-project.org/web/packages/foreign")
517 (synopsis "Read data stored by other statistics software")
518 (description
519 "This package provides functions for reading and writing data stored by
520 some versions of Epi Info, Minitab, S, SAS, SPSS, Stata, Systat and Weka and
521 for reading and writing some dBase files.")
522 (license license:gpl2+)))
523
524 (define-public r-kernsmooth
525 (package
526 (name "r-kernsmooth")
527 (version "2.23-16")
528 (source
529 (origin
530 (method url-fetch)
531 (uri (cran-uri "KernSmooth" version))
532 (sha256
533 (base32
534 "1acrkbdn3a74y4dndkcdl1njnpfqz7gk3bsz03g8lfj8l7z53hmq"))))
535 (properties `((upstream-name . "KernSmooth")))
536 (build-system r-build-system)
537 (native-inputs
538 `(("gfortran" ,gfortran)))
539 (home-page "https://cran.r-project.org/web/packages/KernSmooth")
540 (synopsis "Functions for kernel smoothing")
541 (description
542 "This package provides functions for kernel smoothing (and density
543 estimation) corresponding to the book: Wand, M.P. and Jones, M.C. (1995)
544 \"Kernel Smoothing\".")
545 ;; Unlimited use and distribution
546 (license (license:non-copyleft "file://LICENCE.note"))))
547
548 (define-public r-lattice
549 (package
550 (name "r-lattice")
551 (version "0.20-38")
552 (source (origin
553 (method url-fetch)
554 (uri (cran-uri "lattice" version))
555 (sha256
556 (base32
557 "0b8abkz7syscq883mrgv63pkwaqkcpwfx8rgbqy9vgfva0z5xszx"))))
558 (build-system r-build-system)
559 (home-page "http://lattice.r-forge.r-project.org/")
560 (synopsis "High-level data visualization system")
561 (description
562 "The lattice package provides a powerful and elegant high-level data
563 visualization system inspired by Trellis graphics, with an emphasis on
564 multivariate data. Lattice is sufficient for typical graphics needs, and is
565 also flexible enough to handle most nonstandard requirements.")
566 (license license:gpl2+)))
567
568 (define-public r-matrix
569 (package
570 (name "r-matrix")
571 (version "1.2-18")
572 (source
573 (origin
574 (method url-fetch)
575 (uri (cran-uri "Matrix" version))
576 (sha256
577 (base32
578 "06b1rc1vq65b271f2wpzhqkvhng8hwwnvjflzxkng50i52603zzp"))))
579 (properties `((upstream-name . "Matrix")))
580 (build-system r-build-system)
581 (propagated-inputs
582 `(("r-lattice" ,r-lattice)))
583 (home-page "http://Matrix.R-forge.R-project.org/")
584 (synopsis "Sparse and dense matrix classes and methods")
585 (description
586 "This package provides classes and methods for dense and sparse matrices
587 and operations on them using LAPACK and SuiteSparse.")
588 (license license:gpl2+)))
589
590 (define-public r-nlme
591 (package
592 (name "r-nlme")
593 (version "3.1-143")
594 (source
595 (origin
596 (method url-fetch)
597 (uri (cran-uri "nlme" version))
598 (sha256
599 (base32 "13iixbs2ibldc75rl7rav5n5kx33zwm33xnfw1yvlkpcqf38bd22"))))
600 (build-system r-build-system)
601 (propagated-inputs
602 `(("r-lattice" ,r-lattice)))
603 (native-inputs
604 `(("gfortran" ,gfortran)))
605 (home-page "https://cran.r-project.org/web/packages/nlme")
606 (synopsis "Linear and nonlinear mixed effects models")
607 (description
608 "This package provides tools to fit and compare Gaussian linear and
609 nonlinear mixed-effects models.")
610 (license license:gpl2+)))
611
612 (define-public r-mgcv
613 (package
614 (name "r-mgcv")
615 (version "1.8-31")
616 (source
617 (origin
618 (method url-fetch)
619 (uri (cran-uri "mgcv" version))
620 (sha256
621 (base32 "1if34mqsn9r7g0l82lxvvx0wjhi9paqdymyd73nschxcl1if8vbk"))))
622 (build-system r-build-system)
623 (propagated-inputs
624 `(("r-matrix" ,r-matrix)
625 ("r-nlme" ,r-nlme)))
626 (home-page "https://cran.r-project.org/web/packages/mgcv")
627 (synopsis "Mixed generalised additive model computation")
628 (description
629 "GAMs, GAMMs and other generalized ridge regression with multiple smoothing
630 parameter estimation by GCV, REML or UBRE/AIC. The library includes a
631 @code{gam()} function, a wide variety of smoothers, JAGS support and
632 distributions beyond the exponential family.")
633 (license license:gpl2+)))
634
635 (define-public r-nnet
636 (package
637 (name "r-nnet")
638 (version "7.3-12")
639 (source
640 (origin
641 (method url-fetch)
642 (uri (cran-uri "nnet" version))
643 (sha256
644 (base32
645 "17amqnw9dpap2w8ivx53hxha2xrm0drwfnj32li0xk41hlz548r7"))))
646 (build-system r-build-system)
647 (home-page "http://www.stats.ox.ac.uk/pub/MASS4/")
648 (synopsis "Feed-forward neural networks and multinomial log-linear models")
649 (description
650 "This package provides functions for feed-forward neural networks with a
651 single hidden layer, and for multinomial log-linear models.")
652 (license (list license:gpl2+ license:gpl3+))))
653
654 (define-public r-rpart
655 (package
656 (name "r-rpart")
657 (version "4.1-15")
658 (source
659 (origin
660 (method url-fetch)
661 (uri (cran-uri "rpart" version))
662 (sha256
663 (base32
664 "0p5frya963ppn476p5dxs2mnarsalksr6gw9zzmjsn8ikq7bx3ib"))))
665 (build-system r-build-system)
666 (home-page "https://cran.r-project.org/web/packages/rpart")
667 (synopsis "Recursive partitioning and regression trees")
668 (description
669 "This package provides recursive partitioning functions for
670 classification, regression and survival trees.")
671 (license (list license:gpl2+ license:gpl3+))))
672
673 (define-public r-spatial
674 (package
675 (name "r-spatial")
676 (version "7.3-11")
677 (source
678 (origin
679 (method url-fetch)
680 (uri (cran-uri "spatial" version))
681 (sha256
682 (base32
683 "04aw8j533sn63ybyrf4hyhrqm4058vfcb7yhjy07kq92mk94hi32"))))
684 (build-system r-build-system)
685 (home-page "http://www.stats.ox.ac.uk/pub/MASS4/")
686 (synopsis "Functions for kriging and point pattern analysis")
687 (description
688 "This package provides functions for kriging and point pattern
689 analysis.")
690 ;; Either version may be picked.
691 (license (list license:gpl2 license:gpl3))))
692
693 (define-public r-survival
694 (package
695 (name "r-survival")
696 (version "3.1-8")
697 (source
698 (origin
699 (method url-fetch)
700 (uri (cran-uri "survival" version))
701 (sha256
702 (base32
703 "15fj4y8c107bwq22amx88r5hw7qndlcbr9sapzrpkpr7iqz3kkyf"))))
704 (build-system r-build-system)
705 (propagated-inputs
706 `(("r-matrix" ,r-matrix)))
707 (home-page "https://github.com/therneau/survival")
708 (synopsis "Survival analysis")
709 (description
710 "This package contains the core survival analysis routines, including
711 definition of Surv objects, Kaplan-Meier and Aalen-Johansen (multi-state)
712 curves, Cox models, and parametric accelerated failure time models.")
713 (license license:lgpl2.0+)))
714
715 (define-public r
716 (package (inherit r-minimal)
717 (name "r")
718 (source #f)
719 (build-system trivial-build-system)
720 (arguments '(#:builder (begin (mkdir %output) #t)))
721 (propagated-inputs
722 `(("r-minimal" ,r-minimal)
723 ("r-boot" ,r-boot)
724 ("r-class" ,r-class)
725 ("r-cluster" ,r-cluster)
726 ("r-codetools" ,r-codetools)
727 ("r-foreign" ,r-foreign)
728 ("r-kernsmooth" ,r-kernsmooth)
729 ("r-lattice" ,r-lattice)
730 ("r-mass" ,r-mass)
731 ("r-matrix" ,r-matrix)
732 ("r-mgcv" ,r-mgcv)
733 ("r-nlme" ,r-nlme)
734 ("r-nnet" ,r-nnet)
735 ("r-rpart" ,r-rpart)
736 ("r-spatial" ,r-spatial)
737 ("r-survival" ,r-survival)))))
738
739 (define-public r-bit
740 (package
741 (name "r-bit")
742 (version "1.1-15.1")
743 (source
744 (origin
745 (method url-fetch)
746 (uri (cran-uri "bit" version))
747 (sha256
748 (base32
749 "0y351ajlrn9ywbiai46mjpwmw5pqc9ik2z24rf0bnbdcvaxdr7r8"))))
750 (build-system r-build-system)
751 (home-page "http://ff.r-forge.r-project.org")
752 (synopsis "Class for vectors of 1-bit booleans")
753 (description
754 "This package provides bitmapped vectors of booleans (no @code{NA}s),
755 coercion from and to logicals, integers and integer subscripts, fast boolean
756 operators and fast summary statistics. With @code{bit} class vectors of true
757 binary booleans, @code{TRUE} and @code{FALSE} can be stored with 1 bit only.")
758 (license license:gpl2)))
759
760 (define-public r-bit64
761 (package
762 (name "r-bit64")
763 (version "0.9-7")
764 (source
765 (origin
766 (method url-fetch)
767 (uri (cran-uri "bit64" version))
768 (sha256
769 (base32
770 "07znvz9vp1nz1y5ljng4qyskvm943cdbmy996s67560ijxzsm6kv"))))
771 (build-system r-build-system)
772 (propagated-inputs
773 `(("r-bit" ,r-bit)))
774 (home-page "http://ff.r-forge.r-project.org/")
775 (synopsis "S3 class for vectors of 64 bit integers")
776 (description
777 "The bit64 package provides serializable S3 atomic 64 bit (signed)
778 integers that can be used in vectors, matrices, arrays and @code{data.frames}.
779 Methods are available for coercion from and to logicals, integers, doubles,
780 characters and factors as well as many elementwise and summary functions.
781 Many fast algorithmic operations such as @code{match} and @code{order} support
782 interactive data exploration and manipulation and optionally leverage
783 caching.")
784 (license license:gpl2)))
785
786 (define-public r-dichromat
787 (package
788 (name "r-dichromat")
789 (version "2.0-0")
790 (source
791 (origin
792 (method url-fetch)
793 (uri (cran-uri "dichromat" version))
794 (sha256
795 (base32 "1l8db1nk29ccqg3mkbafvfiw0775iq4gapysf88xq2zp6spiw59i"))))
796 (build-system r-build-system)
797 (home-page "https://cran.r-project.org/web/packages/dichromat")
798 (synopsis "Color schemes for dichromats")
799 (description
800 "Dichromat collapses red-green or green-blue distinctions to simulate the
801 effects of different types of color-blindness.")
802 (license license:gpl2+)))
803
804 (define-public r-digest
805 (package
806 (name "r-digest")
807 (version "0.6.23")
808 (source
809 (origin
810 (method url-fetch)
811 (uri (cran-uri "digest" version))
812 (sha256
813 (base32 "18h5s8vkdcz2vhpsx6g3ig00zalrihr03skn95zw3lr2y56pafmp"))))
814 (build-system r-build-system)
815 ;; Vignettes require r-knitr, which requires r-digest, so we have to
816 ;; disable them and the tests.
817 (arguments
818 `(#:tests? #f
819 #:configure-flags (list "--no-build-vignettes")))
820 (home-page "http://dirk.eddelbuettel.com/code/digest.html")
821 (synopsis "Create cryptographic hash digests of R objects")
822 (description
823 "This package contains an implementation of a function @code{digest()} for
824 the creation of hash digests of arbitrary R objects (using the md5, sha-1,
825 sha-256, crc32, xxhash and murmurhash algorithms) permitting easy comparison
826 of R language objects, as well as a function @code{hmac()} to create hash-based
827 message authentication code.
828
829 Please note that this package is not meant to be deployed for cryptographic
830 purposes for which more comprehensive (and widely tested) libraries such as
831 OpenSSL should be used.")
832 (license license:gpl2+)))
833
834 (define-public r-estimability
835 (package
836 (name "r-estimability")
837 (version "1.3")
838 (source (origin
839 (method url-fetch)
840 (uri (cran-uri "estimability" version))
841 (sha256
842 (base32
843 "0cifdaa71spkcxl4db4z884jrya865sg3dhcv4isd8fnzg2pjcd3"))))
844 (build-system r-build-system)
845 (home-page "https://cran.r-project.org/web/packages/estimability")
846 (synopsis "Tools for assessing estimability of linear predictions")
847 (description "Provides tools for determining estimability of linear
848 functions of regression coefficients, and @code{epredict} methods that handle
849 non-estimable cases correctly.")
850 (license license:gpl2+)))
851
852 (define-public r-labeling
853 (package
854 (name "r-labeling")
855 (version "0.3")
856 (source
857 (origin
858 (method url-fetch)
859 (uri (cran-uri "labeling" version))
860 (sha256
861 (base32 "13sk7zrrrzry6ky1bp8mmnzcl9jhvkig8j4id9nny7z993mnk00d"))))
862 (build-system r-build-system)
863 (home-page "https://cran.r-project.org/web/packages/labeling")
864 (synopsis "Axis labeling algorithms")
865 (description "The labeling package provides a range of axis labeling
866 algorithms.")
867 (license license:expat)))
868
869 (define-public r-magrittr
870 (package
871 (name "r-magrittr")
872 (version "1.5")
873 (source
874 (origin
875 (method url-fetch)
876 (uri (cran-uri "magrittr" version))
877 (sha256
878 (base32 "1s1ar6rag8m277qcqmdp02gn4awn9bdj9ax0r8s32i59mm1mki05"))))
879 (build-system r-build-system)
880 (home-page "https://cran.r-project.org/web/packages/magrittr/index.html")
881 (synopsis "A forward-pipe operator for R")
882 (description
883 "Magrittr provides a mechanism for chaining commands with a new
884 forward-pipe operator, %>%. This operator will forward a value, or the result
885 of an expression, into the next function call/expression. There is flexible
886 support for the type of right-hand side expressions. For more information,
887 see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"")
888 (license license:expat)))
889
890 (define-public r-munsell
891 (package
892 (name "r-munsell")
893 (version "0.5.0")
894 (source
895 (origin
896 (method url-fetch)
897 (uri (cran-uri "munsell" version))
898 (sha256
899 (base32 "16g1fzisbpqb15yh3pqf3iia4csppva5dnv1z88x9dg263xskwyh"))))
900 (build-system r-build-system)
901 (propagated-inputs
902 `(("r-colorspace" ,r-colorspace)))
903 (home-page "https://cran.r-project.org/web/packages/munsell")
904 (synopsis "Munsell colour system")
905 (description
906 "The Munsell package contains Functions for exploring and using the
907 Munsell colour system.")
908 (license license:expat)))
909
910 (define-public r-permute
911 (package
912 (name "r-permute")
913 (version "0.9-5")
914 (source
915 (origin
916 (method url-fetch)
917 (uri (cran-uri "permute" version))
918 (sha256
919 (base32
920 "0ra8p5mf2590azrkas8z2ry7mif77xqxd29n4zgyi5vll225726j"))))
921 (build-system r-build-system)
922 ;; Tests do not run correctly, but running them properly would entail a
923 ;; circular dependency with vegan.
924 (home-page "https://github.com/gavinsimpson/permute")
925 (synopsis "Functions for Generating Restricted Permutations of Data")
926 (description
927 "This package provides a set of restricted permutation designs for freely
928 exchangeable, line transects (time series), spatial grid designs and permutation
929 of blocks (groups of samples). @code{permute} also allows split-plot designs,
930 in which the whole-plots or split-plots or both can be freely exchangeable.")
931 (license license:gpl2+)))
932
933 (define-public r-plyr
934 (package
935 (name "r-plyr")
936 (version "1.8.5")
937 (source
938 (origin
939 (method url-fetch)
940 (uri (cran-uri "plyr" version))
941 (sha256
942 (base32 "0x4mbb3rgv1ayxqidw0p9i10khbg51fz5r62vw4il8d7licqq07a"))))
943 (build-system r-build-system)
944 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
945 (home-page "http://had.co.nz/plyr")
946 (synopsis "Tools for Splitting, Applying and Combining Data")
947 (description
948 "Plyr is a set of tools that solves a common set of problems: you need to
949 break a big problem down into manageable pieces, operate on each piece and
950 then put all the pieces back together. For example, you might want to fit a
951 model to each spatial location or time point in your study, summarise data by
952 panels or collapse high-dimensional arrays to simpler summary statistics.")
953 (license license:expat)))
954
955 (define-public r-proto
956 (package
957 (name "r-proto")
958 (version "1.0.0")
959 (source
960 (origin
961 (method url-fetch)
962 (uri (cran-uri "proto" version))
963 (sha256
964 (base32 "1l843p8vckjckdhgv37ngv47fga5jzy0n00pmipvp05nnaixk54j"))))
965 (build-system r-build-system)
966 (home-page "https://github.com/hadley/proto")
967 (synopsis "Prototype object-based programming")
968 (description
969 "Proto is an object oriented system using object-based, also called
970 prototype-based, rather than class-based object oriented ideas.")
971 (license license:gpl2+)))
972
973 (define-public r-rcolorbrewer
974 (package
975 (name "r-rcolorbrewer")
976 (version "1.1-2")
977 (source
978 (origin
979 (method url-fetch)
980 (uri (cran-uri "RColorBrewer" version))
981 (sha256
982 (base32 "1pfcl8z1pnsssfaaz9dvdckyfnnc6rcq56dhislbf571hhg7isgk"))))
983 (build-system r-build-system)
984 (home-page "https://cran.r-project.org/web/packages/RColorBrewer")
985 (synopsis "ColorBrewer palettes")
986 (description
987 "This package provides color schemes for maps (and other graphics)
988 designed by Cynthia Brewer as described at http://colorbrewer2.org")
989 ;; Includes code licensed under bsd-4
990 (license license:asl2.0)))
991
992 (define-public r-sendmailr
993 (package
994 (name "r-sendmailr")
995 (version "1.2-1")
996 (source
997 (origin
998 (method url-fetch)
999 (uri (cran-uri "sendmailR" version))
1000 (sha256
1001 (base32
1002 "0z7ipywnzgkhfvl4zb2fjwl1xq7b5wib296vn9c9qgbndj6b1zh4"))))
1003 (properties `((upstream-name . "sendmailR")))
1004 (build-system r-build-system)
1005 (propagated-inputs
1006 `(("r-base64enc" ,r-base64enc)))
1007 (home-page
1008 "https://cran.r-project.org/web/packages/sendmailR")
1009 (synopsis "Send email using R")
1010 (description
1011 "This package contains a simple SMTP client which provides a portable
1012 solution for sending email, including attachments, from within R.")
1013 (license license:gpl2+)))
1014
1015 (define-public r-stringi
1016 (package
1017 (name "r-stringi")
1018 (version "1.4.5")
1019 (source
1020 (origin
1021 (method url-fetch)
1022 (uri (cran-uri "stringi" version))
1023 (sha256
1024 (base32
1025 "0gdmdf4i3ik8rcs7af1vlsfnilcmw3z28jx4278rpq2asigps89k"))))
1026 (build-system r-build-system)
1027 (inputs `(("icu4c" ,icu4c)))
1028 (native-inputs `(("pkg-config" ,pkg-config)))
1029 (home-page "http://stringi.rexamine.com/")
1030 (synopsis "Character string processing facilities")
1031 (description
1032 "This package allows for fast, correct, consistent, portable, as well as
1033 convenient character string/text processing in every locale and any native
1034 encoding. Owing to the use of the ICU library, the package provides R users
1035 with platform-independent functions known to Java, Perl, Python, PHP, and Ruby
1036 programmers. Among available features there are: pattern searching
1037 (e.g. via regular expressions), random string generation, string collation,
1038 transliteration, concatenation, date-time formatting and parsing, etc.")
1039 (license license:bsd-3)))
1040
1041 (define-public r-stringr
1042 (package
1043 (name "r-stringr")
1044 (version "1.4.0")
1045 (source
1046 (origin
1047 (method url-fetch)
1048 (uri (cran-uri "stringr" version))
1049 (sha256
1050 (base32 "1p9ip7p87gbbg4s6d3d392svvzz2b5dqdq2c8ilgvn4s78nlsq47"))))
1051 (build-system r-build-system)
1052 (propagated-inputs
1053 `(("r-glue" ,r-glue)
1054 ("r-magrittr" ,r-magrittr)
1055 ("r-stringi" ,r-stringi)))
1056 (home-page "https://github.com/hadley/stringr")
1057 (synopsis "Simple, consistent wrappers for common string operations")
1058 (description
1059 "Stringr is a consistent, simple and easy to use set of wrappers around
1060 the fantastic @code{stringi} package. All function and argument names (and
1061 positions) are consistent, all functions deal with \"NA\"'s and zero length
1062 vectors in the same way, and the output from one function is easy to feed into
1063 the input of another.")
1064 (license license:gpl2+)))
1065
1066 (define-public r-reshape2
1067 (package
1068 (name "r-reshape2")
1069 (version "1.4.3")
1070 (source
1071 (origin
1072 (method url-fetch)
1073 (uri (cran-uri "reshape2" version))
1074 (sha256
1075 (base32 "03ki5ka1dj208fc0dclbm0b4xp9d769pah2j9cs34l776p4r9zwa"))))
1076 (build-system r-build-system)
1077 (propagated-inputs
1078 `(("r-plyr" ,r-plyr)
1079 ("r-rcpp" ,r-rcpp)
1080 ("r-stringr" ,r-stringr)))
1081 (home-page "https://github.com/hadley/reshape")
1082 (synopsis "Flexibly reshape data: a reboot of the \"reshape\" package")
1083 (description
1084 "Reshape2 is an R library to flexibly restructure and aggregate data
1085 using just two functions: melt and dcast (or acast).")
1086 (license license:expat)))
1087
1088 (define-public r-ggplot2
1089 (package
1090 (name "r-ggplot2")
1091 (version "3.2.1")
1092 (source
1093 (origin
1094 (method url-fetch)
1095 (uri (cran-uri "ggplot2" version))
1096 (sha256
1097 (base32 "0mjswqiqcwm0aqxll16bx2kwa6c9km3aql87bdj4347n1ali94g3"))))
1098 (build-system r-build-system)
1099 (propagated-inputs
1100 `(("r-digest" ,r-digest)
1101 ("r-gtable" ,r-gtable)
1102 ("r-lazyeval" ,r-lazyeval)
1103 ("r-mass" ,r-mass)
1104 ("r-mgcv" ,r-mgcv)
1105 ("r-tibble" ,r-tibble)
1106 ("r-reshape2" ,r-reshape2)
1107 ("r-rlang" ,r-rlang)
1108 ("r-scales" ,r-scales)
1109 ("r-svglite" ,r-svglite) ; Needed for 'ggsave'
1110 ("r-viridislite" ,r-viridislite)
1111 ("r-withr" ,r-withr)))
1112 (home-page "https://ggplot2.tidyverse.org")
1113 (synopsis "An implementation of the grammar of graphics")
1114 (description
1115 "Ggplot2 is an implementation of the grammar of graphics in R. It
1116 combines the advantages of both base and lattice graphics: conditioning and
1117 shared axes are handled automatically, and you can still build up a plot step
1118 by step from multiple data sources. It also implements a sophisticated
1119 multidimensional conditioning system and a consistent interface to map data to
1120 aesthetic attributes.")
1121 (license license:gpl2+)))
1122
1123 (define-public r-ggdendro
1124 (package
1125 (name "r-ggdendro")
1126 (version "0.1-20")
1127 (source (origin
1128 (method url-fetch)
1129 (uri (cran-uri "ggdendro" version))
1130 (sha256
1131 (base32
1132 "1zzq1hxd0d1qa5hrzwfkdw6fzscpcafbwbpkrb62dm559y8awp0j"))))
1133 (build-system r-build-system)
1134 (propagated-inputs
1135 `(("r-ggplot2" ,r-ggplot2)
1136 ("r-mass" ,r-mass)
1137 ("r-knitr" ,r-knitr)))
1138 (home-page "https://github.com/andrie/ggdendro")
1139 (synopsis "Create Dendrograms and Tree Diagrams Using ggplot2")
1140 (description "This is a set of tools for dendrograms and tree plots using
1141 ggplot2. The ggplot2 philosophy is to clearly separate data from the
1142 presentation. Unfortunately the plot method for dendrograms plots directly
1143 to a plot device with out exposing the data. The ggdendro package resolves
1144 this by making available functions that extract the dendrogram plot data.
1145 The package provides implementations for tree, rpart, as well as diana and
1146 agnes cluster diagrams.")
1147 (license license:gpl2+)))
1148
1149 (define-public r-gdtools
1150 (package
1151 (name "r-gdtools")
1152 (version "0.2.1")
1153 (source
1154 (origin
1155 (method url-fetch)
1156 (uri (cran-uri "gdtools" version))
1157 (sha256
1158 (base32
1159 "1aax50wyrs4336zpf247l8wmp4spab2n70msziy1ip4gbjn26wa1"))))
1160 (build-system r-build-system)
1161 (native-inputs
1162 `(("pkg-config" ,pkg-config)))
1163 (inputs
1164 `(("cairo" ,cairo)
1165 ("freetype2" ,freetype)
1166 ("zlib" ,zlib)))
1167 (propagated-inputs
1168 `(("r-rcpp" ,r-rcpp)
1169 ("r-systemfonts" ,r-systemfonts)))
1170 (home-page "https://cran.r-project.org/web/packages/gdtools")
1171 (synopsis "Utilities for graphical rendering")
1172 (description
1173 "The @code{gdtools} package provides functionalities to get font metrics
1174 and to generate base64 encoded string from raster matrix.")
1175 (license license:gpl3)))
1176
1177 (define-public r-svglite
1178 (package
1179 (name "r-svglite")
1180 (version "1.2.2")
1181 (source
1182 (origin
1183 (method url-fetch)
1184 (uri (cran-uri "svglite" version))
1185 (sha256
1186 (base32
1187 "1gwv51wqp6pgm2f9gavsiq65njs77fr49n8y6y9ax60k3a4vvg14"))))
1188 (build-system r-build-system)
1189 (propagated-inputs
1190 `(("r-bh" ,r-bh)
1191 ("r-gdtools" ,r-gdtools)
1192 ("r-rcpp" ,r-rcpp)))
1193 (home-page "https://github.com/hadley/svglite")
1194 (synopsis "SVG graphics device")
1195 (description
1196 "@code{svglite} is a graphics device that produces clean
1197 @dfn{SVG} (Scalable Vector Graphics) output, suitable for use on the web, or
1198 hand editing. Compared to the built-in @code{svg()}, @code{svglite} is
1199 considerably faster, produces smaller files, and leaves text as is.")
1200 (license license:gpl2+)))
1201
1202 (define-public r-assertthat
1203 (package
1204 (name "r-assertthat")
1205 (version "0.2.1")
1206 (source (origin
1207 (method url-fetch)
1208 (uri (cran-uri "assertthat" version))
1209 (sha256
1210 (base32
1211 "17wy5bdfzg73sg2clisg1k3zyn1adkj59x56m5nwia2k8z67zkw5"))))
1212 (build-system r-build-system)
1213 (home-page "https://github.com/hadley/assertthat")
1214 (synopsis "Easy pre and post assertions")
1215 (description
1216 "Assertthat is an extension to stopifnot() that makes it easy to declare
1217 the pre and post conditions that your code should satisfy, while also
1218 producing friendly error messages so that your users know what they've done
1219 wrong.")
1220 (license license:gpl3+)))
1221
1222 (define-public r-lazyeval
1223 (package
1224 (name "r-lazyeval")
1225 (version "0.2.2")
1226 (source (origin
1227 (method url-fetch)
1228 (uri (cran-uri "lazyeval" version))
1229 (sha256
1230 (base32
1231 "1m10i059csrcqkcn59a8wspn784alxsq3symzhn24mhhl894346n"))))
1232 (build-system r-build-system)
1233 (home-page "https://github.com/hadley/lazyeval")
1234 (synopsis "Lazy (non-standard) evaluation in R")
1235 (description
1236 "This package provides the tools necessary to do non-standard
1237 evaluation (NSE) in R.")
1238 (license license:gpl3+)))
1239
1240 (define-public r-dbi
1241 (package
1242 (name "r-dbi")
1243 (version "1.1.0")
1244 (source (origin
1245 (method url-fetch)
1246 (uri (cran-uri "DBI" version))
1247 (sha256
1248 (base32
1249 "1r03j9rdcxb9bhxk40dkmy10ikz4yzsxhy3f9k9ix3x577xbfvd9"))))
1250 (build-system r-build-system)
1251 (home-page "https://github.com/rstats-db/DBI")
1252 (synopsis "R database interface")
1253 (description
1254 "The DBI package provides a database interface (DBI) definition for
1255 communication between R and relational database management systems. All
1256 classes in this package are virtual and need to be extended by the various
1257 R/DBMS implementations.")
1258 (license license:lgpl2.0+)))
1259
1260 (define-public r-bh
1261 (package
1262 (name "r-bh")
1263 (version "1.72.0-3")
1264 (source (origin
1265 (method url-fetch)
1266 (uri (cran-uri "BH" version))
1267 (sha256
1268 (base32
1269 "1ay8vb6i730lipg8b8g3893vqglhw2kqpc29lwdrxdkb66iw33l8"))))
1270 (build-system r-build-system)
1271 (home-page "https://github.com/eddelbuettel/bh")
1272 (synopsis "R package providing subset of Boost headers")
1273 (description
1274 "This package aims to provide the most useful subset of Boost libraries
1275 for template use among CRAN packages.")
1276 (license license:boost1.0)))
1277
1278 (define-public r-evaluate
1279 (package
1280 (name "r-evaluate")
1281 (version "0.14")
1282 (source (origin
1283 (method url-fetch)
1284 (uri (cran-uri "evaluate" version))
1285 (sha256
1286 (base32
1287 "0a2y7j534gbgixkwj9r1z76l2vssw4g1hznzbpclc076wkdqpj58"))))
1288 (build-system r-build-system)
1289 (home-page "https://github.com/hadley/evaluate")
1290 (synopsis "Parsing and evaluation tools for R")
1291 (description
1292 "This package provides tools that allow you to recreate the parsing,
1293 evaluation and display of R code, with enough information that you can
1294 accurately recreate what happens at the command line. The tools can easily be
1295 adapted for other output formats, such as HTML or LaTeX.")
1296 (license license:gpl3+)))
1297
1298 (define-public r-formatr
1299 (package
1300 (name "r-formatr")
1301 (version "1.7")
1302 (source (origin
1303 (method url-fetch)
1304 (uri (cran-uri "formatR" version))
1305 (sha256
1306 (base32
1307 "1nsxbrx31k3y6yql30qkrvdfyznlia2qfvwv95mfiy7m7wdn4rm3"))))
1308 (build-system r-build-system)
1309 (home-page "http://yihui.name/formatR")
1310 (synopsis "Format R code automatically")
1311 (description
1312 "This package provides a function to format R source code. Spaces and
1313 indent will be added to the code automatically, and comments will be preserved
1314 under certain conditions, so that R code will be more human-readable and tidy.
1315 There is also a Shiny app as a user interface in this package.")
1316 (license license:gpl3+)))
1317
1318 (define-public r-highr
1319 (package
1320 (name "r-highr")
1321 (version "0.8")
1322 (source (origin
1323 (method url-fetch)
1324 (uri (cran-uri "highr" version))
1325 (sha256
1326 (base32
1327 "0my6idnhmmgs4q1vs40y2lh56yij2p59mpwvm53wjs2zk6x1zl2b"))))
1328 (build-system r-build-system)
1329 (home-page "https://github.com/yihui/highr")
1330 (synopsis "Syntax highlighting for R source code")
1331 (description
1332 "This package provides syntax highlighting for R source code. Currently
1333 it supports LaTeX and HTML output. Source code of other languages is
1334 supported via Andre Simon's highlight package.")
1335 (license license:gpl3+)))
1336
1337 (define-public r-mime
1338 (package
1339 (name "r-mime")
1340 (version "0.8")
1341 (source (origin
1342 (method url-fetch)
1343 (uri (cran-uri "mime" version))
1344 (sha256
1345 (base32
1346 "18w98prfbivvygiyamsf9yg090kzbnvw2fn9b27823gmis4d08ny"))))
1347 (build-system r-build-system)
1348 (home-page "https://github.com/yihui/mime")
1349 (synopsis "R package to map filenames to MIME types")
1350 (description
1351 "This package guesses the MIME type from a filename extension using the
1352 data derived from /etc/mime.types in UNIX-type systems.")
1353 (license license:gpl2)))
1354
1355 (define-public r-markdown
1356 (package
1357 (name "r-markdown")
1358 (version "1.1")
1359 (source (origin
1360 (method url-fetch)
1361 (uri (cran-uri "markdown" version))
1362 (sha256
1363 (base32
1364 "06zwbrp14bri3470anadd7dvgmw06xf8df6v2pk64wx3f9sd934d"))))
1365 (build-system r-build-system)
1366 ;; Skip check phase because the tests require the r-knitr package to be
1367 ;; installed. This prevents installation failures. Knitr normally
1368 ;; shouldn't be available since r-markdown is a dependency of the r-knitr
1369 ;; package.
1370 (arguments `(#:tests? #f))
1371 (propagated-inputs
1372 `(("r-mime" ,r-mime)
1373 ("r-xfun" ,r-xfun)))
1374 (home-page "https://github.com/rstudio/markdown")
1375 (synopsis "Markdown rendering for R")
1376 (description
1377 "This package provides R bindings to the Sundown Markdown rendering
1378 library (https://github.com/vmg/sundown). Markdown is a plain-text formatting
1379 syntax that can be converted to XHTML or other formats.")
1380 (license license:gpl2)))
1381
1382 (define-public r-yaml
1383 (package
1384 (name "r-yaml")
1385 (version "2.2.0")
1386 (source (origin
1387 (method url-fetch)
1388 (uri (cran-uri "yaml" version))
1389 (sha256
1390 (base32
1391 "0in562nd0i23cg91a8kdbqgim656fgscykwi0icsnq53xj3srg2m"))))
1392 (build-system r-build-system)
1393 (home-page "https://cran.r-project.org/web/packages/yaml/")
1394 (synopsis "Methods to convert R data to YAML and back")
1395 (description
1396 "This package implements the libyaml YAML 1.1 parser and
1397 emitter (http://pyyaml.org/wiki/LibYAML) for R.")
1398 (license license:bsd-3)))
1399
1400 (define-public r-knitr
1401 (package
1402 (name "r-knitr")
1403 (version "1.27")
1404 (source (origin
1405 (method url-fetch)
1406 (uri (cran-uri "knitr" version))
1407 (sha256
1408 (base32
1409 "02nysgnx6xv0kd351s1d59yx4g0drsd9lmcgxs0rsw5f1jiycgdg"))))
1410 (build-system r-build-system)
1411 (propagated-inputs
1412 `(("r-evaluate" ,r-evaluate)
1413 ("r-highr" ,r-highr)
1414 ("r-markdown" ,r-markdown)
1415 ("r-stringr" ,r-stringr)
1416 ("r-xfun" ,r-xfun)
1417 ("r-yaml" ,r-yaml)))
1418 (home-page "http://yihui.name/knitr/")
1419 (synopsis "General-purpose package for dynamic report generation in R")
1420 (description
1421 "This package provides a general-purpose tool for dynamic report
1422 generation in R using Literate Programming techniques.")
1423 ;; The code is released under any version of the GPL. As it is used by
1424 ;; r-markdown which is available under GPLv2 only, we have chosen GPLv2+
1425 ;; here.
1426 (license license:gpl2+)))
1427
1428 (define-public r-knitrbootstrap
1429 (package
1430 (name "r-knitrbootstrap")
1431 (version "1.0.2")
1432 (source
1433 (origin
1434 (method url-fetch)
1435 (uri (cran-uri "knitrBootstrap" version))
1436 (sha256
1437 (base32
1438 "1aj60j7f0gcs120fdrnfbnb7vk7lfn1phil0mghg6a5zldz4cqs3"))))
1439 (properties `((upstream-name . "knitrBootstrap")))
1440 (build-system r-build-system)
1441 (propagated-inputs
1442 `(("r-knitr" ,r-knitr)
1443 ("r-rmarkdown" ,r-rmarkdown)
1444 ("r-markdown" ,r-markdown)))
1445 (home-page "https://github.com/jimhester/knitrBootstrap")
1446 (synopsis "Knitr bootstrap framework")
1447 (description
1448 "This package provides a framework to create Bootstrap 3 HTML reports
1449 from knitr Rmarkdown.")
1450 (license license:expat)))
1451
1452 (define-public r-microbenchmark
1453 (package
1454 (name "r-microbenchmark")
1455 (version "1.4-7")
1456 (source (origin
1457 (method url-fetch)
1458 (uri (cran-uri "microbenchmark" version))
1459 (sha256
1460 (base32
1461 "1xl4m4yl4h2zcjiz8wsa7f3sh55qg2xr3sgpvz18rlix6b3173r6"))))
1462 (build-system r-build-system)
1463 (home-page "https://cran.r-project.org/web/packages/microbenchmark/")
1464 (synopsis "Accurate timing functions for R")
1465 (description
1466 "This package provides infrastructure to accurately measure and compare
1467 the execution time of R expressions.")
1468 (license license:bsd-2)))
1469
1470 (define-public r-pryr
1471 (package
1472 (name "r-pryr")
1473 (version "0.1.4")
1474 (source (origin
1475 (method url-fetch)
1476 (uri (cran-uri "pryr" version))
1477 (sha256
1478 (base32
1479 "06vj5xl9x37kbd3l5bw7sbgfdnp37spvrjrn976rxi04clqk966k"))))
1480 (build-system r-build-system)
1481 (propagated-inputs
1482 `(("r-stringr" ,r-stringr)
1483 ("r-codetools" ,r-codetools)))
1484 (native-inputs
1485 `(("r-rcpp" ,r-rcpp)))
1486 (home-page "https://github.com/hadley/pryr")
1487 (synopsis "Tools for computing on the R language")
1488 (description
1489 "This package provides useful tools to pry back the covers of R and
1490 understand the language at a deeper level.")
1491 (license license:gpl2)))
1492
1493 (define-public r-memoise
1494 (package
1495 (name "r-memoise")
1496 (version "1.1.0")
1497 (source (origin
1498 (method url-fetch)
1499 (uri (cran-uri "memoise" version))
1500 (sha256
1501 (base32
1502 "034qfc2xlh30x1q2vya239w34a3ir3y2fwnx2agbgbi6592zjxmj"))))
1503 (build-system r-build-system)
1504 (propagated-inputs
1505 `(("r-digest" ,r-digest)))
1506 (home-page "https://github.com/hadley/memoise")
1507 (synopsis "Memoise functions for R")
1508 (description
1509 "This R package allows to cache the results of a function so that when
1510 you call it again with the same arguments it returns the pre-computed value.")
1511 (license license:expat)))
1512
1513 (define-public r-crayon
1514 (package
1515 (name "r-crayon")
1516 (version "1.3.4")
1517 (source (origin
1518 (method url-fetch)
1519 (uri (cran-uri "crayon" version))
1520 (sha256
1521 (base32
1522 "0s7s6vc3ww8pzanpjisym4jjvwcc5pi2qg8srx7jqlz9j3wrnvpw"))))
1523 (build-system r-build-system)
1524 (propagated-inputs
1525 `(("r-memoise" ,r-memoise)))
1526 (home-page "https://github.com/gaborcsardi/crayon")
1527 (synopsis "Colored terminal output for R")
1528 (description
1529 "Colored terminal output on terminals that support ANSI color and
1530 highlight codes. It also works in Emacs ESS. ANSI color support is
1531 automatically detected. Colors and highlighting can be combined and nested.
1532 New styles can also be created easily. This package was inspired by the
1533 \"chalk\" JavaScript project.")
1534 (license license:expat)))
1535
1536 (define-public r-praise
1537 (package
1538 (name "r-praise")
1539 (version "1.0.0")
1540 (source
1541 (origin
1542 (method url-fetch)
1543 (uri (cran-uri "praise" version))
1544 (sha256
1545 (base32
1546 "1gfyypnvmih97p2r0php9qa39grzqpsdbq5g0fdsbpq5zms5w0sw"))))
1547 (build-system r-build-system)
1548 (home-page "https://github.com/gaborcsardi/praise")
1549 (synopsis "Functions to praise users")
1550 (description
1551 "This package provides template functions to assist in building friendly
1552 R packages that praise their users.")
1553 (license license:expat)))
1554
1555 (define-public r-testthat
1556 (package
1557 (name "r-testthat")
1558 (version "2.3.1")
1559 (source (origin
1560 (method url-fetch)
1561 (uri (cran-uri "testthat" version))
1562 (sha256
1563 (base32
1564 "0m8xchdpgn9iwj6gb2qw46zr85v9zf1gkbr9nnahmy5sp1s9bbky"))))
1565 (build-system r-build-system)
1566 (propagated-inputs
1567 `(("r-cli" ,r-cli)
1568 ("r-crayon" ,r-crayon)
1569 ("r-digest" ,r-digest)
1570 ("r-ellipsis" ,r-ellipsis)
1571 ("r-evaluate" ,r-evaluate)
1572 ("r-magrittr" ,r-magrittr)
1573 ("r-pkgload" ,r-pkgload)
1574 ("r-praise" ,r-praise)
1575 ("r-r6" ,r-r6)
1576 ("r-rlang" ,r-rlang)
1577 ("r-withr" ,r-withr)))
1578 (home-page "https://github.com/hadley/testthat")
1579 (synopsis "Unit testing for R")
1580 (description
1581 "This package provides a unit testing system for R designed to be fun,
1582 flexible and easy to set up.")
1583 (license license:expat)))
1584
1585 (define-public r-r6
1586 (package
1587 (name "r-r6")
1588 (version "2.4.1")
1589 (source (origin
1590 (method url-fetch)
1591 (uri (cran-uri "R6" version))
1592 (sha256
1593 (base32
1594 "0gma5z41mx02ka9h96xdyf3p6i1rx0izczrzj26c4mbnh9jgvc16"))))
1595 (build-system r-build-system)
1596 (home-page "https://github.com/wch/R6/")
1597 (synopsis "Classes with reference semantics in R")
1598 (description
1599 "The R6 package allows the creation of classes with reference semantics,
1600 similar to R's built-in reference classes. Compared to reference classes, R6
1601 classes are simpler and lighter-weight, and they are not built on S4 classes
1602 so they do not require the methods package. These classes allow public and
1603 private members, and they support inheritance, even when the classes are
1604 defined in different packages.")
1605 (license license:expat)))
1606
1607 (define-public r-rlang
1608 (package
1609 (name "r-rlang")
1610 (version "0.4.3")
1611 (source (origin
1612 (method url-fetch)
1613 (uri (cran-uri "rlang" version))
1614 (sha256
1615 (base32
1616 "0qsqfikbsj55x5brghnkzzp7pz0japr4xnzm993f668mlls3f6i4"))))
1617 (build-system r-build-system)
1618 (home-page "http://rlang.tidyverse.org")
1619 (synopsis "Functions for base types, core R and Tidyverse features")
1620 (description "This package provides a toolbox for working with base types,
1621 core R features like the condition system, and core @code{Tidyverse} features
1622 like tidy evaluation.")
1623 (license license:gpl3)))
1624
1625 (define-public r-tibble
1626 (package
1627 (name "r-tibble")
1628 (version "2.1.3")
1629 (source
1630 (origin
1631 (method url-fetch)
1632 (uri (cran-uri "tibble" version))
1633 (sha256
1634 (base32
1635 "06jfayiip8j8ibdhw3fvxn4n8aqbqhwanrszpzlsf92xdfgfm34s"))))
1636 (build-system r-build-system)
1637 (propagated-inputs
1638 `(("r-cli" ,r-cli)
1639 ("r-crayon" ,r-crayon)
1640 ("r-fansi" ,r-fansi)
1641 ("r-pkgconfig" ,r-pkgconfig)
1642 ("r-pillar" ,r-pillar)
1643 ("r-rlang" ,r-rlang)))
1644 (home-page "https://github.com/hadley/tibble")
1645 (synopsis "Simple data frames")
1646 (description
1647 "This package provides a @code{tbl_df} class that offers better checking
1648 and printing capabilities than traditional data frames.")
1649 (license license:expat)))
1650
1651 (define-public r-dplyr
1652 (package
1653 (name "r-dplyr")
1654 (version "0.8.3")
1655 (source (origin
1656 (method url-fetch)
1657 (uri (cran-uri "dplyr" version))
1658 (sha256
1659 (base32
1660 "032c89wa04g9rih9shyvwl3il0bsrv3xk489x6867sk9bb3amd38"))))
1661 (build-system r-build-system)
1662 (propagated-inputs
1663 `(("r-assertthat" ,r-assertthat)
1664 ("r-bh" ,r-bh)
1665 ("r-glue" ,r-glue)
1666 ("r-magrittr" ,r-magrittr)
1667 ("r-pkgconfig" ,r-pkgconfig)
1668 ("r-plogr" ,r-plogr)
1669 ("r-r6" ,r-r6)
1670 ("r-rcpp" ,r-rcpp)
1671 ("r-rlang" ,r-rlang)
1672 ("r-tibble" ,r-tibble)
1673 ("r-tidyselect" ,r-tidyselect)))
1674 (home-page "https://github.com/hadley/dplyr")
1675 (synopsis "Tools for working with data frames in R")
1676 (description
1677 "dplyr is the next iteration of plyr. It is focussed on tools for
1678 working with data frames. It has three main goals: 1) identify the most
1679 important data manipulation tools needed for data analysis and make them easy
1680 to use in R; 2) provide fast performance for in-memory data by writing key
1681 pieces of code in C++; 3) use the same code interface to work with data no
1682 matter where it is stored, whether in a data frame, a data table or
1683 database.")
1684 (license license:expat)))
1685
1686 (define-public r-dbplyr
1687 (package
1688 (name "r-dbplyr")
1689 (version "1.4.2")
1690 (source
1691 (origin
1692 (method url-fetch)
1693 (uri (cran-uri "dbplyr" version))
1694 (sha256
1695 (base32
1696 "1q2dflr88s5a1amzfld3087q422vf70052qn84zyd8895kdg10xp"))))
1697 (build-system r-build-system)
1698 (propagated-inputs
1699 `(("r-assertthat" ,r-assertthat)
1700 ("r-dbi" ,r-dbi)
1701 ("r-dplyr" ,r-dplyr)
1702 ("r-glue" ,r-glue)
1703 ("r-purrr" ,r-purrr)
1704 ("r-r6" ,r-r6)
1705 ("r-rlang" ,r-rlang)
1706 ("r-tibble" ,r-tibble)
1707 ("r-tidyselect" ,r-tidyselect)))
1708 (home-page "https://github.com/tidyverse/dbplyr")
1709 (synopsis "Dplyr back end for databases")
1710 (description
1711 "This package provides a dplyr back end for databases that allows you to
1712 work with remote database tables as if they are in-memory data frames. Basic
1713 features works with any database that has a @code{DBI} back end; more advanced
1714 features require SQL translation to be provided by the package author.")
1715 (license license:expat)))
1716
1717 (define-public r-acepack
1718 (package
1719 (name "r-acepack")
1720 (version "1.4.1")
1721 (source
1722 (origin
1723 (method url-fetch)
1724 (uri (cran-uri "acepack" version))
1725 (sha256
1726 (base32
1727 "1f98rpfjmhd92rdc3j004plyfpjailz6j0ycysbac0kgj83haxc2"))))
1728 (build-system r-build-system)
1729 (inputs
1730 `(("gfortran" ,gfortran)))
1731 (home-page "https://cran.r-project.org/web/packages/acepack")
1732 (synopsis "Functions for regression transformations")
1733 (description
1734 "This package provides ACE and AVAS methods for choosing regression
1735 transformations.")
1736 (license license:expat)))
1737
1738 (define-public r-formula
1739 (package
1740 (name "r-formula")
1741 (version "1.2-3")
1742 (source
1743 (origin
1744 (method url-fetch)
1745 (uri (cran-uri "Formula" version))
1746 (sha256
1747 (base32
1748 "0wiqh8rr9d5ciy80wj8f5fnmiiw0ywanvvnhkwd622dx42dk848l"))))
1749 (properties `((upstream-name . "Formula")))
1750 (build-system r-build-system)
1751 (home-page "https://cran.r-project.org/web/packages/Formula")
1752 (synopsis "Extended model formulas")
1753 (description
1754 "This package provides a new class @code{Formula}, which extends the base
1755 class @code{formula}. It supports extended formulas with multiple parts of
1756 regressors on the right-hand side and/or multiple responses on the left-hand
1757 side.")
1758 (license (list license:gpl2+ license:gpl3+))))
1759
1760 (define-public r-locfit
1761 (package
1762 (name "r-locfit")
1763 (version "1.5-9.1")
1764 (source
1765 (origin
1766 (method url-fetch)
1767 (uri (cran-uri "locfit" version))
1768 (sha256
1769 (base32
1770 "0lafrmq1q7x026m92h01hc9cjjiximqqi3v1g2hw7ai9vf7i897m"))))
1771 (build-system r-build-system)
1772 (propagated-inputs
1773 `(("r-lattice" ,r-lattice)))
1774 (home-page "https://cran.r-project.org/web/packages/locfit")
1775 (synopsis "Local regression, likelihood and density estimation")
1776 (description
1777 "This package provides functions used for local regression, likelihood
1778 and density estimation.")
1779 (license (list license:gpl2+ license:gpl3+))))
1780
1781 (define-public r-chron
1782 (package
1783 (name "r-chron")
1784 (version "2.3-54")
1785 (source (origin
1786 (method url-fetch)
1787 (uri (cran-uri "chron" version))
1788 (sha256
1789 (base32
1790 "0vc7dxqwx0jqzwszax6di3091npsxnhnbvr7sy7rlip0jqzarwqd"))))
1791 (build-system r-build-system)
1792 (home-page "https://cran.r-project.org/web/packages/chron")
1793 (synopsis "Chronological R objects which can handle dates and times")
1794 (description
1795 "This package provides chronological R objects which can handle dates and
1796 times.")
1797 (license license:gpl2)))
1798
1799 (define-public r-data-table
1800 (package
1801 (name "r-data-table")
1802 (version "1.12.8")
1803 (source (origin
1804 (method url-fetch)
1805 (uri (cran-uri "data.table" version))
1806 (sha256
1807 (base32
1808 "1p7rf4v3ysflpgcmy9krkwmcy7z22wb08xm443649waz6lx5z9yk"))))
1809 (build-system r-build-system)
1810 (inputs
1811 `(("zlib" ,zlib)))
1812 (native-inputs
1813 `(("pkg-config" ,pkg-config)))
1814 (home-page "https://github.com/Rdatatable/data.table/wiki")
1815 (synopsis "Enhanced version of data.frame R object")
1816 (description
1817 "The R package @code{data.table} is an extension of @code{data.frame}
1818 providing functions for fast aggregation of large data (e.g. 100GB in RAM),
1819 fast ordered joins, fast add/modify/delete of columns by group, column listing
1820 and fast file reading.")
1821 (license license:gpl3+)))
1822
1823 (define-public r-xtable
1824 (package
1825 (name "r-xtable")
1826 (version "1.8-4")
1827 (source
1828 (origin
1829 (method url-fetch)
1830 (uri (cran-uri "xtable" version))
1831 (sha256
1832 (base32
1833 "077xfm0gphvhsay75amd9v90zk57kjgrrlgih04fyrbqqblc1gjs"))))
1834 (build-system r-build-system)
1835 (native-inputs
1836 `(("r-knitr" ,r-knitr))) ; for vignettes
1837 (home-page "http://xtable.r-forge.r-project.org/")
1838 (synopsis "Export R tables to LaTeX or HTML")
1839 (description
1840 "This package provides tools to export R data as LaTeX and HTML tables.")
1841 (license license:gpl2+)))
1842
1843 (define-public python-patsy
1844 (package
1845 (name "python-patsy")
1846 (version "0.5.1")
1847 (source (origin
1848 (method url-fetch)
1849 (uri (pypi-uri "patsy" version))
1850 (sha256
1851 (base32
1852 "149rbrdzwns0ay88caf1zsm1r53v1q5np1mrb36na50y432cw5gi"))))
1853 (build-system python-build-system)
1854 (arguments
1855 `(#:phases
1856 (modify-phases %standard-phases
1857 (replace 'check
1858 (lambda _ (invoke "nosetests" "-v"))))))
1859 (propagated-inputs
1860 `(("python-numpy" ,python-numpy)
1861 ("python-scipy" ,python-scipy)
1862 ("python-six" ,python-six)))
1863 (native-inputs
1864 `(("python-nose" ,python-nose)))
1865 (home-page "https://github.com/pydata/patsy")
1866 (synopsis "Describe statistical models and build design matrices")
1867 (description
1868 "Patsy is a Python package for describing statistical models and for
1869 building design matrices.")
1870 ;; The majority of the code is distributed under BSD-2. The module
1871 ;; patsy.compat contains code derived from the Python standard library,
1872 ;; and is covered by the PSFL.
1873 (license (list license:bsd-2 license:psfl))))
1874
1875 (define-public python2-patsy
1876 (package-with-python2 python-patsy))
1877
1878 (define-public python-statsmodels
1879 (package
1880 (name "python-statsmodels")
1881 (version "0.9.0")
1882 (source
1883 (origin
1884 (method url-fetch)
1885 (uri (pypi-uri "statsmodels" version))
1886 (sha256
1887 (base32
1888 "0fxs8a7sp4d7jvqlm36yi45i2d28kjfvraf9q8i9jr1chhxgjqb4"))))
1889 (build-system python-build-system)
1890 (arguments
1891 `(;; The test suite is very large and rather brittle. Tests often fail
1892 ;; because of minor changes in dependencies that upstream hasn't fixed
1893 ;; in a new release.
1894 #:tests? #f
1895 #:phases
1896 (modify-phases %standard-phases
1897 (add-after 'unpack 'set-matplotlib-backend-to-agg
1898 (lambda _
1899 ;; Set the matplotlib backend to Agg to avoid problems using the
1900 ;; GTK backend without a display.
1901 (substitute* (append (find-files "statsmodels/graphics/tests" "\\.py")
1902 '("statsmodels/tsa/vector_ar/tests/test_var.py"
1903 "statsmodels/duration/tests/test_survfunc.py"))
1904 (("import matplotlib\\.pyplot as plt" line)
1905 (string-append "import matplotlib;matplotlib.use('Agg');"
1906 line)))
1907 #t)))))
1908 (propagated-inputs
1909 `(("python-numpy" ,python-numpy)
1910 ("python-scipy" ,python-scipy)
1911 ("python-pandas" ,python-pandas)
1912 ("python-patsy" ,python-patsy)
1913 ("python-matplotlib" ,python-matplotlib)))
1914 (native-inputs
1915 `(("python-cython" ,python-cython)
1916 ("python-nose" ,python-nose)
1917 ("python-sphinx" ,python-sphinx)))
1918 (home-page "http://statsmodels.sourceforge.net/")
1919 (synopsis "Statistical modeling and econometrics in Python")
1920 (description
1921 "Statsmodels is a Python package that provides a complement to scipy for
1922 statistical computations including descriptive statistics and estimation and
1923 inference for statistical models.")
1924 (license license:bsd-3)))
1925
1926 (define-public python2-statsmodels
1927 (let ((stats (package-with-python2 python-statsmodels)))
1928 (package (inherit stats)
1929 (propagated-inputs
1930 `(("python2-pytz" ,python2-pytz)
1931 ("python2-numpy" ,python2-numpy)
1932 ("python2-scipy" ,python2-scipy)
1933 ("python2-pandas" ,python2-pandas)
1934 ("python2-patsy" ,python2-patsy)
1935 ("python2-matplotlib" ,python2-matplotlib))))))
1936
1937 (define-public r-coda
1938 (package
1939 (name "r-coda")
1940 (version "0.19-3")
1941 (source (origin
1942 (method url-fetch)
1943 (uri (cran-uri "coda" version))
1944 (sha256
1945 (base32
1946 "1mn50bshky968gn4nf6vnkaa768fnvm1xmhkms7szwdw9341zpyk"))))
1947 (build-system r-build-system)
1948 (propagated-inputs
1949 `(("r-lattice" ,r-lattice)))
1950 (home-page "https://cran.r-project.org/web/packages/coda")
1951 (synopsis "This is a package for Output Analysis and Diagnostics for MCMC")
1952 (description "This package provides functions for summarizing and plotting
1953 the output from Markov Chain Monte Carlo (MCMC) simulations, as well as
1954 diagnostic tests of convergence to the equilibrium distribution of the Markov
1955 chain.")
1956 (license license:gpl2+)))
1957
1958 (define-public r-ade4
1959 (package
1960 (name "r-ade4")
1961 (version "1.7-13")
1962 (source
1963 (origin
1964 (method url-fetch)
1965 (uri (cran-uri "ade4" version))
1966 (sha256
1967 (base32
1968 "16z9jk4qj35ghsk4lwmq241dgc770y8a70dlmp9q4gz6d8ssgl7m"))))
1969 (build-system r-build-system)
1970 (propagated-inputs
1971 `(("r-mass" ,r-mass)))
1972 (home-page "http://pbil.univ-lyon1.fr/ADE-4")
1973 (synopsis "Multivariate data analysis and graphical display")
1974 (description
1975 "The ade4 package contains data analysis functions to analyze ecological
1976 and environmental data in the framework of Euclidean exploratory methods.")
1977 (license license:gpl2+)))
1978
1979 (define-public r-xml2
1980 (package
1981 (name "r-xml2")
1982 (version "1.2.2")
1983 (source
1984 (origin
1985 (method url-fetch)
1986 (uri (cran-uri "xml2" version))
1987 (sha256
1988 (base32
1989 "1x3q3a0xv8j0nx3hs4d3pfjm5g9nvaxmfrapba9f4nrkqi3z2l1h"))))
1990 (build-system r-build-system)
1991 (inputs
1992 `(("libxml2" ,libxml2)
1993 ("zlib" ,zlib)))
1994 (native-inputs
1995 `(("pkg-config" ,pkg-config)))
1996 (propagated-inputs
1997 `(("r-rcpp" ,r-rcpp)))
1998 (home-page "https://github.com/hadley/xml2")
1999 (synopsis "Parse XML with R")
2000 (description
2001 "This package provides a simple, consistent interface to working with XML
2002 files in R. It is built on top of the libxml2 C library.")
2003 (license license:gpl2+)))
2004
2005 (define-public r-multitaper
2006 (package
2007 (name "r-multitaper")
2008 (version "1.0-14")
2009 (source
2010 (origin
2011 (method url-fetch)
2012 (uri (cran-uri "multitaper" version))
2013 (sha256
2014 (base32
2015 "04wd9bbhyx7697pfy0fpj02v1csr48hkpqj62h9p8a6w84ji4k68"))))
2016 (build-system r-build-system)
2017 (native-inputs
2018 `(("gfortran" ,gfortran)))
2019 (home-page "https://github.com/wesleyburr/multitaper/")
2020 (synopsis "Multitaper spectral analysis tools")
2021 (description
2022 "This package implements multitaper spectral estimation
2023 techniques using prolate spheroidal sequences (Slepians) and sine
2024 tapers for time series analysis. It includes an adaptive weighted
2025 multitaper spectral estimate, a coherence estimate, Thomson's Harmonic
2026 F-test, and complex demodulation. The Slepians sequences are
2027 generated efficiently using a tridiagonal matrix solution, and
2028 jackknifed confidence intervals are available for most estimates.")
2029 (license license:gpl2+)))
2030
2031 (define-public r-rversions
2032 (package
2033 (name "r-rversions")
2034 (version "2.0.1")
2035 (source (origin
2036 (method url-fetch)
2037 (uri (cran-uri "rversions" version))
2038 (sha256
2039 (base32
2040 "1ic6sxnyya24d5xsxjg3fba73fhya9fhs0kaf66yha6nwxj1zv2i"))))
2041 (build-system r-build-system)
2042 (propagated-inputs
2043 `(("r-curl" ,r-curl)
2044 ("r-xml2" ,r-xml2)))
2045 (home-page "https://github.com/metacran/rversions")
2046 (synopsis "Query R versions, including 'r-release' and 'r-oldrel'")
2047 (description
2048 "This package provides functions to query the main R repository to find
2049 the versions that @code{r-release} and @code{r-oldrel} refer to, and also all
2050 previous R versions and their release dates.")
2051 (license license:expat)))
2052
2053 (define-public r-whisker
2054 (package
2055 (name "r-whisker")
2056 (version "0.4")
2057 (source (origin
2058 (method url-fetch)
2059 (uri (cran-uri "whisker" version))
2060 (sha256
2061 (base32
2062 "1a7vz0dk95xfjvi38wbpw8vmf5qn3g8p490msz2rw0piwidmk1ks"))))
2063 (build-system r-build-system)
2064 (home-page "https://github.com/edwindj/whisker")
2065 (synopsis "Logicless mustache templating for R")
2066 (description
2067 "This package provides logicless templating, with a syntax that is not
2068 limited to R.")
2069 (license license:gpl3+)))
2070
2071 (define-public r-backports
2072 (package
2073 (name "r-backports")
2074 (version "1.1.5")
2075 (source
2076 (origin
2077 (method url-fetch)
2078 (uri (cran-uri "backports" version))
2079 (sha256
2080 (base32
2081 "0k19w68b2aihyj5mflw3732gkkzs78sssqdns960pdw3yfnkiv33"))))
2082 (build-system r-build-system)
2083 (home-page "https://cran.r-project.org/web/packages/backports")
2084 (synopsis "Reimplementations of functions introduced since R 3.0.0")
2085 (description
2086 "Provides implementations of functions which have been introduced in R
2087 since version 3.0.0. The backports are conditionally exported which results
2088 in R resolving the function names to the version shipped with R (if available)
2089 and uses the implemented backports as fallback. This way package developers
2090 can make use of the new functions without worrying about the minimum required
2091 R version.")
2092 (license license:gpl2+)))
2093
2094 (define-public r-checkmate
2095 (package
2096 (name "r-checkmate")
2097 (version "1.9.4")
2098 (source
2099 (origin
2100 (method url-fetch)
2101 (uri (cran-uri "checkmate" version))
2102 (sha256
2103 (base32
2104 "08ddpgs4mv5d5y4j054pm8drmxkn7yvhfpbghwxlizjpnxa5g8ps"))))
2105 (build-system r-build-system)
2106 (propagated-inputs
2107 `(("r-backports" ,r-backports)))
2108 (home-page "https://github.com/mllg/checkmate")
2109 (synopsis "Fast and versatile argument checks")
2110 (description
2111 "This package provides tests and assertions to perform frequent argument
2112 checks. A substantial part of the package was written in C to minimize any
2113 worries about execution time overhead.")
2114 (license license:bsd-3)))
2115
2116 (define-public r-bbmisc
2117 (package
2118 (name "r-bbmisc")
2119 (version "1.11")
2120 (source
2121 (origin
2122 (method url-fetch)
2123 (uri (cran-uri "BBmisc" version))
2124 (sha256
2125 (base32
2126 "1lh1n4bvxzivb5rbz69mvd8xdgr3gr2bnqd68a39sd1530l8r90y"))))
2127 (properties `((upstream-name . "BBmisc")))
2128 (build-system r-build-system)
2129 (propagated-inputs
2130 `(("r-checkmate" ,r-checkmate)))
2131 (home-page "https://github.com/berndbischl/BBmisc")
2132 (synopsis "Miscellaneous functions for R package development")
2133 (description
2134 "This package provides miscellaneous helper functions for the development
2135 of R packages.")
2136 (license license:bsd-3)))
2137
2138 (define-public r-fail
2139 (package
2140 (name "r-fail")
2141 (version "1.3")
2142 (source
2143 (origin
2144 (method url-fetch)
2145 (uri (cran-uri "fail" version))
2146 (sha256
2147 (base32
2148 "0vfm6kmpmgsamda5p0sl771kbnsscan31l2chzssyw93kwmams7d"))))
2149 (build-system r-build-system)
2150 (propagated-inputs
2151 `(("r-bbmisc" ,r-bbmisc)
2152 ("r-checkmate" ,r-checkmate)))
2153 (home-page "https://github.com/mllg/fail")
2154 (synopsis "File abstraction interface layer (FAIL)")
2155 (description
2156 "This package provides a more comfortable interface to work with R data
2157 or source files in a key-value fashion.")
2158 (license license:bsd-3)))
2159
2160 (define-public r-batchjobs
2161 (package
2162 (name "r-batchjobs")
2163 (version "1.8")
2164 (source
2165 (origin
2166 (method url-fetch)
2167 (uri (cran-uri "BatchJobs" version))
2168 (sha256
2169 (base32
2170 "1zz4sspj596pijxlz321g0jy2rg9ki83j6fihbwisjwr66p2vk1m"))))
2171 (properties `((upstream-name . "BatchJobs")))
2172 (build-system r-build-system)
2173 (propagated-inputs
2174 `(("r-backports" ,r-backports)
2175 ("r-bbmisc" ,r-bbmisc)
2176 ("r-brew" ,r-brew)
2177 ("r-checkmate" ,r-checkmate)
2178 ("r-data-table" ,r-data-table)
2179 ("r-dbi" ,r-dbi)
2180 ("r-digest" ,r-digest)
2181 ("r-rsqlite" ,r-rsqlite)
2182 ("r-sendmailr" ,r-sendmailr)
2183 ("r-stringi" ,r-stringi)))
2184 (home-page "https://github.com/tudo-r/BatchJobs")
2185 (synopsis "Batch computing with R")
2186 (description
2187 "This package provides @code{Map}, @code{Reduce} and @code{Filter}
2188 variants to generate jobs on batch computing systems like PBS/Torque, LSF,
2189 SLURM and Sun Grid Engine. Multicore and SSH systems are also supported.")
2190 (license license:bsd-2)))
2191
2192 (define-public r-brew
2193 (package
2194 (name "r-brew")
2195 (version "1.0-6")
2196 (source (origin
2197 (method url-fetch)
2198 (uri (cran-uri "brew" version))
2199 (sha256
2200 (base32
2201 "1vghazbcha8gvkwwcdagjvzx6yl8zm7kgr0i9wxr4jng06d1l3fp"))))
2202 (build-system r-build-system)
2203 (home-page "https://cran.r-project.org/web/packages/brew")
2204 (synopsis "Templating framework for report generation")
2205 (description
2206 "The brew package implements a templating framework for mixing text and R
2207 code for report generation. The template syntax is similar to PHP, Ruby's erb
2208 module, Java Server Pages, and Python's psp module.")
2209 (license license:gpl2+)))
2210
2211 (define-public r-desc
2212 (package
2213 (name "r-desc")
2214 (version "1.2.0")
2215 (source
2216 (origin
2217 (method url-fetch)
2218 (uri (cran-uri "desc" version))
2219 (sha256
2220 (base32
2221 "1s6s13fk6sxwcj8wzkwxl9vr33153xx11p5wi9avqx3rzkabavz6"))))
2222 (build-system r-build-system)
2223 (propagated-inputs
2224 `(("r-assertthat" ,r-assertthat)
2225 ("r-crayon" ,r-crayon)
2226 ("r-r6" ,r-r6)
2227 ("r-rprojroot" ,r-rprojroot)))
2228 (home-page "https://github.com/r-pkgs/desc")
2229 (synopsis "Manipulate DESCRIPTION Files")
2230 (description
2231 "This package provides tools to read, write, create, and manipulate
2232 DESCRIPTION files. It is intended for packages that create or manipulate
2233 other packages.")
2234 (license license:expat)))
2235
2236 (define-public r-commonmark
2237 (package
2238 (name "r-commonmark")
2239 (version "1.7")
2240 (source
2241 (origin
2242 (method url-fetch)
2243 (uri (cran-uri "commonmark" version))
2244 (sha256
2245 (base32
2246 "024iz1qp2kv6iz6y69ir0jk3qhjps86rhkzlcmhqsxx97rx7cjni"))))
2247 (build-system r-build-system)
2248 (home-page "https://cran.r-project.org/web/packages/commonmark")
2249 (synopsis "CommonMark and Github Markdown Rendering in R")
2250 (description
2251 "The CommonMark specification defines a rationalized version of markdown
2252 syntax. This package uses the @code{cmark} reference implementation for
2253 converting markdown text into various formats including HTML, LaTeX and groff
2254 man. In addition, it exposes the markdown parse tree in XML format. The latest
2255 version of this package also adds support for Github extensions including
2256 tables, autolinks and strikethrough text.")
2257 (license license:bsd-2)))
2258
2259 (define-public r-roxygen2
2260 (package
2261 (name "r-roxygen2")
2262 (version "7.0.2")
2263 (source (origin
2264 (method url-fetch)
2265 (uri (cran-uri "roxygen2" version))
2266 (sha256
2267 (base32
2268 "162xag27hwwyadfwm5zpyy15nxwhw2vbhwapx3jmi9cfyryr68sq"))))
2269 (build-system r-build-system)
2270 (propagated-inputs
2271 `(("r-brew" ,r-brew)
2272 ("r-commonmark" ,r-commonmark)
2273 ("r-desc" ,r-desc)
2274 ("r-digest" ,r-digest)
2275 ("r-pkgload" ,r-pkgload)
2276 ("r-purrr" ,r-purrr)
2277 ("r-r6" ,r-r6)
2278 ("r-rcpp" ,r-rcpp)
2279 ("r-rlang" ,r-rlang)
2280 ("r-stringi" ,r-stringi)
2281 ("r-stringr" ,r-stringr)
2282 ("r-xml2" ,r-xml2)))
2283 (native-inputs
2284 `(("r-knitr" ,r-knitr))) ; for vignettes
2285 (home-page "https://github.com/klutometis/roxygen")
2286 (synopsis "In-source documentation system for R")
2287 (description
2288 "Roxygen2 is a Doxygen-like in-source documentation system for Rd,
2289 collation, and NAMESPACE files.")
2290 (license license:gpl2+)))
2291
2292 (define-public r-openssl
2293 (package
2294 (name "r-openssl")
2295 (version "1.4.1")
2296 (source
2297 (origin
2298 (method url-fetch)
2299 (uri (cran-uri "openssl" version))
2300 (sha256
2301 (base32
2302 "1ihz2qi33lhngl19xdanq0pbmfaacy63794mg8ll7z2lab3yryzp"))))
2303 (build-system r-build-system)
2304 (inputs
2305 `(("libressl" ,libressl)))
2306 (native-inputs
2307 `(("pkg-config" ,pkg-config)))
2308 (propagated-inputs
2309 `(("r-askpass" ,r-askpass)))
2310 (home-page "https://github.com/jeroenooms/openssl")
2311 (synopsis "Toolkit for encryption, signatures and certificates")
2312 (description
2313 "This package provides R bindings to OpenSSL libssl and libcrypto, plus
2314 custom SSH pubkey parsers. It supports RSA, DSA and NIST curves P-256, P-384
2315 and P-521. Cryptographic signatures can either be created and verified
2316 manually or via x509 certificates. AES block cipher is used in CBC mode for
2317 symmetric encryption; RSA for asymmetric (public key) encryption. High-level
2318 envelope functions combine RSA and AES for encrypting arbitrary sized data.
2319 Other utilities include key generators, hash functions (md5, sha1, sha256,
2320 etc), base64 encoder, a secure random number generator, and @code{bignum} math
2321 methods for manually performing crypto calculations on large multibyte
2322 integers.")
2323 (license license:expat)))
2324
2325 (define-public r-httr
2326 (package
2327 (name "r-httr")
2328 (version "1.4.1")
2329 (source (origin
2330 (method url-fetch)
2331 (uri (cran-uri "httr" version))
2332 (sha256
2333 (base32
2334 "0mp1il13q6n49n2hv1p2p8x6avjan6dr5az19ql4hb78pc3pwp37"))))
2335 (build-system r-build-system)
2336 (propagated-inputs
2337 `(("r-curl" ,r-curl)
2338 ("r-jsonlite" ,r-jsonlite)
2339 ("r-openssl" ,r-openssl)
2340 ("r-mime" ,r-mime)
2341 ("r-r6" ,r-r6)))
2342 (home-page "https://github.com/hadley/httr")
2343 (synopsis "Tools for working with URLs and HTTP")
2344 (description
2345 "The aim of httr is to provide a wrapper for RCurl customised to the
2346 demands of modern web APIs. It provides useful tools for working with HTTP
2347 organised by HTTP verbs (@code{GET()}, @code{POST()}, etc). Configuration
2348 functions make it easy to control additional request components.")
2349 (license license:expat)))
2350
2351 (define-public r-git2r
2352 (package
2353 (name "r-git2r")
2354 (version "0.26.1")
2355 (source (origin
2356 (method url-fetch)
2357 (uri (cran-uri "git2r" version))
2358 (sha256
2359 (base32
2360 "0dbl845sahv2i641ncaf06w06djravwc5wknp9syzx0ad8l0kmhk"))))
2361 (build-system r-build-system)
2362 (inputs
2363 `(("libgit2" ,libgit2)
2364 ("zlib" ,zlib)))
2365 (native-inputs
2366 `(("pkg-config" ,pkg-config)))
2367 (home-page "https://github.com/ropensci/git2r")
2368 (synopsis "Access Git repositories with R")
2369 (description
2370 "This package provides an R interface to the libgit2 library, which is a
2371 pure C implementation of the Git core methods.")
2372 ;; GPLv2 only with linking exception.
2373 (license license:gpl2)))
2374
2375 (define-public r-rstudioapi
2376 (package
2377 (name "r-rstudioapi")
2378 (version "0.10")
2379 (source (origin
2380 (method url-fetch)
2381 (uri (cran-uri "rstudioapi" version))
2382 (sha256
2383 (base32
2384 "15mbw607ncdf53mgga76n3va5zzdcjqz14nb0jcn9axwccqamic0"))))
2385 (build-system r-build-system)
2386 (home-page "https://cran.r-project.org/web/packages/rstudioapi")
2387 (synopsis "Safely access the RStudio API")
2388 (description
2389 "This package provides functions to access the RStudio API and provide
2390 informative error messages when it's not available.")
2391 (license license:expat)))
2392
2393 (define-public r-devtools
2394 (package
2395 (name "r-devtools")
2396 (version "2.2.1")
2397 (source (origin
2398 (method url-fetch)
2399 (uri (cran-uri "devtools" version))
2400 (sha256
2401 (base32
2402 "0i2f549hxkn0j1x1avkhwy68c9r48v9284j7x9cak2q6dfsqz61f"))))
2403 (build-system r-build-system)
2404 (propagated-inputs
2405 `(("r-callr" ,r-callr)
2406 ("r-cli" ,r-cli)
2407 ("r-covr" ,r-covr)
2408 ("r-crayon" ,r-crayon)
2409 ("r-desc" ,r-desc)
2410 ("r-digest" ,r-digest)
2411 ("r-dt" ,r-dt)
2412 ("r-ellipsis" ,r-ellipsis)
2413 ("r-glue" ,r-glue)
2414 ("r-git2r" ,r-git2r)
2415 ("r-httr" ,r-httr)
2416 ("r-jsonlite" ,r-jsonlite)
2417 ("r-memoise" ,r-memoise)
2418 ("r-pkgbuild" ,r-pkgbuild)
2419 ("r-pkgload" ,r-pkgload)
2420 ("r-rcmdcheck" ,r-rcmdcheck)
2421 ("r-remotes" ,r-remotes)
2422 ("r-rlang" ,r-rlang)
2423 ("r-roxygen2" ,r-roxygen2)
2424 ("r-rstudioapi" ,r-rstudioapi)
2425 ("r-rversions" ,r-rversions)
2426 ("r-sessioninfo" ,r-sessioninfo)
2427 ("r-testthat" ,r-testthat)
2428 ("r-usethis" ,r-usethis)
2429 ("r-withr" ,r-withr)))
2430 (home-page "https://github.com/hadley/devtools")
2431 (synopsis "Tools to make developing R packages easier")
2432 (description "The devtools package is a collection of package development
2433 tools to simplify the devolpment of R packages.")
2434 (license license:gpl2+)))
2435
2436 (define-public r-withr
2437 (package
2438 (name "r-withr")
2439 (version "2.1.2")
2440 (source (origin
2441 (method url-fetch)
2442 (uri (cran-uri "withr" version))
2443 (sha256
2444 (base32
2445 "11j6zykklxnvp4xqsr6a2xib665i38m3khdspp887nwagmvnydj1"))))
2446 (build-system r-build-system)
2447 (home-page "https://github.com/jimhester/withr")
2448 (synopsis "Run code with temporarily modified global state")
2449 (description
2450 "This package provides a set of functions to run R code in an environment
2451 in which global state has been temporarily modified. Many of these functions
2452 were originally a part of the r-devtools package.")
2453 (license license:gpl2+)))
2454
2455 (define-public r-hms
2456 (package
2457 (name "r-hms")
2458 (version "0.5.3")
2459 (source
2460 (origin
2461 (method url-fetch)
2462 (uri (cran-uri "hms" version))
2463 (sha256
2464 (base32
2465 "1baki0qw5ijgiflvsdvqj3apg4yanf12vx14kwbqdzk5rz46fasf"))))
2466 (build-system r-build-system)
2467 (propagated-inputs
2468 `(("r-rlang" ,r-rlang)
2469 ("r-pkgconfig" ,r-pkgconfig)
2470 ("r-vctrs" ,r-vctrs)))
2471 (home-page "https://github.com/rstats-db/hms")
2472 (synopsis "Pretty time of day")
2473 (description
2474 "This package implements an S3 class for storing and formatting
2475 time-of-day values, based on the @code{difftime} class.")
2476 (license license:gpl3+)))
2477
2478 (define-public r-readr
2479 (package
2480 (name "r-readr")
2481 (version "1.3.1")
2482 (source (origin
2483 (method url-fetch)
2484 (uri (cran-uri "readr" version))
2485 (sha256
2486 (base32
2487 "1wz496rw0ah433p755n3xac8gh7yzid4xgdjzd1a7wmpkgilvy9k"))))
2488 (build-system r-build-system)
2489 (propagated-inputs
2490 `(("r-clipr" ,r-clipr)
2491 ("r-crayon" ,r-crayon)
2492 ("r-rcpp" ,r-rcpp)
2493 ("r-hms" ,r-hms)
2494 ("r-tibble" ,r-tibble)
2495 ("r-r6" ,r-r6)
2496 ("r-bh" ,r-bh)))
2497 (home-page "https://github.com/hadley/readr")
2498 (synopsis "Read tabular data")
2499 (description
2500 "This package provides functions to read flat or tabular text files from
2501 disk (or a connection).")
2502 (license license:gpl2+)))
2503
2504 (define-public r-plotrix
2505 (package
2506 (name "r-plotrix")
2507 (version "3.7-7")
2508 (source (origin
2509 (method url-fetch)
2510 (uri (cran-uri "plotrix" version))
2511 (sha256
2512 (base32
2513 "1x92mmyfry127zzr6cmcj6kjsc4zhxrrdlr0jcxn3bb0hpdfps54"))))
2514 (build-system r-build-system)
2515 (home-page "https://cran.r-project.org/web/packages/plotrix")
2516 (synopsis "Various plotting functions")
2517 (description
2518 "This package provides lots of plotting, various labeling, axis and color
2519 scaling functions for R.")
2520 (license license:gpl2+)))
2521
2522 (define-public r-gridbase
2523 (package
2524 (name "r-gridbase")
2525 (version "0.4-7")
2526 (source (origin
2527 (method url-fetch)
2528 (uri (cran-uri "gridBase" version))
2529 (sha256
2530 (base32
2531 "09jzw4rzwf2y5lcz7b16mb68pn0fqigv34ff7lr6w3yi9k91i1xy"))))
2532 (build-system r-build-system)
2533 (home-page "https://cran.r-project.org/web/packages/gridBase")
2534 (synopsis "Integration of base and grid graphics")
2535 (description
2536 "This package provides an integration of base and grid graphics for R.")
2537 (license license:gpl2+)))
2538
2539 (define-public r-latticeextra
2540 (package
2541 (name "r-latticeextra")
2542 (version "0.6-29")
2543 (source
2544 (origin
2545 (method url-fetch)
2546 (uri (cran-uri "latticeExtra" version))
2547 (sha256
2548 (base32
2549 "04fzwcqs594rk5qp98yilh3kdh3sw4xf8wld5rp94ggpaqfw7bbc"))))
2550 (properties `((upstream-name . "latticeExtra")))
2551 (build-system r-build-system)
2552 (propagated-inputs
2553 `(("r-jpeg" ,r-jpeg)
2554 ("r-lattice" ,r-lattice)
2555 ("r-png" ,r-png)
2556 ("r-rcolorbrewer" ,r-rcolorbrewer)))
2557 (home-page "http://latticeextra.r-forge.r-project.org/")
2558 (synopsis "Extra graphical utilities based on lattice")
2559 (description
2560 "Building on the infrastructure provided by the lattice package, this
2561 package provides several new high-level graphics functions and methods, as
2562 well as additional utilities such as panel and axis annotation functions.")
2563 (license license:gpl2+)))
2564
2565 (define-public r-rcpparmadillo
2566 (package
2567 (name "r-rcpparmadillo")
2568 (version "0.9.800.4.0")
2569 (source (origin
2570 (method url-fetch)
2571 (uri (cran-uri "RcppArmadillo" version))
2572 (sha256
2573 (base32
2574 "1csh54v4d0ccwmk4bqj4rca1d5rqpafvb4459x3q6k9sys0charx"))))
2575 (properties `((upstream-name . "RcppArmadillo")))
2576 (build-system r-build-system)
2577 ;; All needed for vignettes
2578 (native-inputs
2579 `(("r-knitr" ,r-knitr)
2580 ("r-rmarkdown" ,r-rmarkdown)
2581 ("ghc-pandoc" ,ghc-pandoc)
2582 ("ghc-pandoc-citeproc" ,ghc-pandoc-citeproc)))
2583 (propagated-inputs
2584 `(("r-rcpp" ,r-rcpp)))
2585 (home-page "https://github.com/RcppCore/RcppArmadillo")
2586 (synopsis "Rcpp integration for the Armadillo linear algebra library")
2587 (description
2588 "Armadillo is a templated C++ linear algebra library that aims towards a
2589 good balance between speed and ease of use. Integer, floating point and
2590 complex numbers are supported, as well as a subset of trigonometric and
2591 statistics functions. Various matrix decompositions are provided through
2592 optional integration with LAPACK and ATLAS libraries. This package includes
2593 the header files from the templated Armadillo library.")
2594 ;; Armadillo is licensed under the MPL 2.0, while RcppArmadillo (the Rcpp
2595 ;; bindings to Armadillo) is licensed under the GNU GPL version 2 or
2596 ;; later, as is the rest of 'Rcpp'.
2597 (license license:gpl2+)))
2598
2599 (define-public r-bitops
2600 (package
2601 (name "r-bitops")
2602 (version "1.0-6")
2603 (source (origin
2604 (method url-fetch)
2605 (uri (cran-uri "bitops" version))
2606 (sha256
2607 (base32
2608 "176nr5wpnkavn5z0yy9f7d47l37ndnn2w3gv854xav8nnybi6wwv"))))
2609 (build-system r-build-system)
2610 (home-page "https://cran.r-project.org/web/packages/bitops")
2611 (synopsis "Bitwise operations")
2612 (description
2613 "This package provides functions for bitwise operations on integer
2614 vectors.")
2615 (license license:gpl2+)))
2616
2617 (define-public r-catools
2618 (package
2619 (name "r-catools")
2620 (version "1.18.0")
2621 (source (origin
2622 (method url-fetch)
2623 (uri (cran-uri "caTools" version))
2624 (sha256
2625 (base32
2626 "0y1kgyiy322yhb0phzwvf2zgjz9awp13lhzhk9v1ddg88656jhq3"))))
2627 (properties `((upstream-name . "caTools")))
2628 (build-system r-build-system)
2629 (propagated-inputs
2630 `(("r-bitops" ,r-bitops)))
2631 (home-page "https://cran.r-project.org/web/packages/caTools")
2632 (synopsis "Various tools including functions for moving window statistics")
2633 (description
2634 "This package contains several basic utility functions including:
2635 moving (rolling, running) window statistic functions, read/write for GIF and
2636 ENVI binary files, fast calculation of AUC, LogitBoost classifier, base64
2637 encoder/decoder, round-off-error-free sum and cumsum, etc.")
2638 (license license:gpl3+)))
2639
2640 (define-public r-rprojroot
2641 (package
2642 (name "r-rprojroot")
2643 (version "1.3-2")
2644 (source
2645 (origin
2646 (method url-fetch)
2647 (uri (cran-uri "rprojroot" version))
2648 (sha256
2649 (base32
2650 "12r3fdxmi2pmwn6ic3rhg0b20ll5z420m0d8fziv1n21961namnz"))))
2651 (build-system r-build-system)
2652 (propagated-inputs
2653 `(("r-backports" ,r-backports)))
2654 (home-page "https://github.com/krlmlr/rprojroot")
2655 (synopsis "Finding files in project subdirectories")
2656 (description
2657 "This package helps accessing files relative to a project root. It
2658 provides helpers for robust, reliable and flexible paths to files below a
2659 project root. The root of a project is defined as a directory that matches a
2660 certain criterion, e.g., it contains a certain regular file.")
2661 (license license:gpl3)))
2662
2663 (define-public r-rmarkdown
2664 (package
2665 (name "r-rmarkdown")
2666 (version "2.1")
2667 (source
2668 (origin
2669 (method url-fetch)
2670 (uri (cran-uri "rmarkdown" version))
2671 (sha256
2672 (base32 "0pa5xs0vzwn9vsgysjqbks9v5lbqphxh5agciskllibc40hhwigg"))))
2673 (properties `((upstream-name . "rmarkdown")))
2674 (build-system r-build-system)
2675 (propagated-inputs
2676 `(("r-base64enc" ,r-base64enc)
2677 ("r-evaluate" ,r-evaluate)
2678 ("r-htmltools" ,r-htmltools)
2679 ("r-jsonlite" ,r-jsonlite)
2680 ("r-knitr" ,r-knitr)
2681 ("r-mime" ,r-mime)
2682 ("r-stringr" ,r-stringr)
2683 ("r-tinytex" ,r-tinytex)
2684 ("r-xfun" ,r-xfun)
2685 ("r-yaml" ,r-yaml)
2686 ("ghc-pandoc" ,ghc-pandoc)))
2687 (home-page "https://rmarkdown.rstudio.com")
2688 (synopsis "Convert R Markdown documents into a variety of formats")
2689 (description
2690 "This package provides tools to convert R Markdown documents into a
2691 variety of formats.")
2692 (license license:gpl3+)))
2693
2694 (define-public r-gtable
2695 (package
2696 (name "r-gtable")
2697 (version "0.3.0")
2698 (source (origin
2699 (method url-fetch)
2700 (uri (cran-uri "gtable" version))
2701 (sha256
2702 (base32
2703 "1lyncxf2dqdjgw1071cn9c8zwzkz6sldnd5cgmicf70bc726qf7x"))))
2704 (properties `((upstream-name . "gtable")))
2705 (build-system r-build-system)
2706 (home-page "https://cran.r-project.org/web/packages/gtable")
2707 (synopsis "R library to arrange grobs in tables")
2708 (description
2709 "Gtable is a collection of tools to make it easier to work with
2710 \"tables\" of grobs.")
2711 (license license:gpl2+)))
2712
2713 (define-public r-gridextra
2714 (package
2715 (name "r-gridextra")
2716 (version "2.3")
2717 (source (origin
2718 (method url-fetch)
2719 (uri (cran-uri "gridExtra" version))
2720 (sha256
2721 (base32
2722 "0fwfk3cdwxxim7nd55pn7m31bcaqj48y06j7an2k1v1pybk0rdl1"))))
2723 (properties `((upstream-name . "gridExtra")))
2724 (build-system r-build-system)
2725 (propagated-inputs
2726 `(("r-gtable" ,r-gtable)))
2727 (native-inputs
2728 `(("r-knitr" ,r-knitr))) ;for building vignettes
2729 (home-page "https://github.com/baptiste/gridextra")
2730 (synopsis "Miscellaneous functions for \"Grid\" graphics")
2731 (description
2732 "This package provides a number of user-level functions to work with
2733 @code{grid} graphics, notably to arrange multiple grid-based plots on a page,
2734 and draw tables.")
2735 (license license:gpl2+)))
2736
2737 (define-public r-pkgconfig
2738 (package
2739 (name "r-pkgconfig")
2740 (version "2.0.3")
2741 (source (origin
2742 (method url-fetch)
2743 (uri (cran-uri "pkgconfig" version))
2744 (sha256
2745 (base32
2746 "0l1qph8zyi2sic3k2qcd7vlfl7rzfh1q7z7zvjkl5f7y1x2fy3rk"))))
2747 (build-system r-build-system)
2748 (home-page "https://github.com/gaborcsardi/pkgconfig")
2749 (synopsis "Private configuration for R packages")
2750 (description "This package provides the functionality to set configuration
2751 options on a per-package basis. Options set by a given package only apply to
2752 that package, other packages are unaffected.")
2753 (license license:expat)))
2754
2755 (define-public r-blob
2756 (package
2757 (name "r-blob")
2758 (version "1.2.1")
2759 (source (origin
2760 (method url-fetch)
2761 (uri (cran-uri "blob" version))
2762 (sha256
2763 (base32
2764 "1slb5mvxfyi92i8ifx2qa31hp57inilwhq1g9lzvgha6jrxbqm7g"))))
2765 (build-system r-build-system)
2766 (propagated-inputs
2767 `(("r-rlang" ,r-rlang)
2768 ("r-vctrs" ,r-vctrs)))
2769 (home-page "https://github.com/hadley/blob")
2770 (synopsis "Simple S3 Class for representing vectors of binary data")
2771 (description "Raw vectors in R are useful for storing a single binary
2772 object. What if you want to put a vector of them in a data frame? The blob
2773 package provides the blob object, a list of raw vectors, suitable for use as
2774 a column in data frame.")
2775 (license license:gpl3+)))
2776
2777 (define-public r-rsqlite
2778 (package
2779 (name "r-rsqlite")
2780 (version "2.2.0")
2781 (source (origin
2782 (method url-fetch)
2783 (uri (cran-uri "RSQLite" version))
2784 (sha256
2785 (base32
2786 "1m38sj8rwbf3p2lhqabcp7c7djk7s9ng37cz39yxk706v9pi4380"))))
2787 (properties `((upstream-name . "RSQLite")))
2788 (build-system r-build-system)
2789 (propagated-inputs
2790 `(("r-dbi" ,r-dbi)
2791 ("r-bh" ,r-bh)
2792 ("r-memoise" ,r-memoise)
2793 ("r-plogr" ,r-plogr)
2794 ("r-rcpp" ,r-rcpp)
2795 ("r-bit64" ,r-bit64)
2796 ("r-blob" ,r-blob)
2797 ("r-pkgconfig" ,r-pkgconfig)))
2798 (home-page "https://github.com/rstats-db/RSQLite")
2799 (synopsis "SQLite interface for R")
2800 (description
2801 "This package embeds the SQLite database engine in R and provides an
2802 interface compliant with the DBI package. The source for the SQLite
2803 engine (version 3.8.8.2) is included.")
2804 (license license:lgpl2.0+)))
2805
2806 (define-public r-rcurl
2807 (package
2808 (name "r-rcurl")
2809 (version "1.95-0.1.2")
2810 (source (origin
2811 (method url-fetch)
2812 (uri (string-append "https://www.bioconductor.org/packages/"
2813 "release/extra/src/"
2814 "contrib/RCurl_" version ".tar.gz"))
2815 (sha256
2816 (base32
2817 "0l7qi45jxlf898n0jazabnam1yyczvqfdknd00bdirhhiplpd1sc"))))
2818 (properties `((upstream-name . "RCurl")))
2819 (build-system r-build-system)
2820 (arguments
2821 `(#:phases
2822 (modify-phases %standard-phases
2823 (add-after 'unpack 'respect-CURL_CA_BUNDLE
2824 (lambda _
2825 (substitute* "R/options.S"
2826 (("\\.els = rev\\(merge\\(list\\(\\.\\.\\.\\), \\.opts\\)\\)" m)
2827 (string-append "\
2828 certs = Sys.getenv(\"CURL_CA_BUNDLE\")
2829 if (certs != \"\") { .opts = merge.list(.opts, list(cainfo=certs)) }
2830 " m)))
2831 #t)))))
2832 (inputs
2833 `(("libcurl" ,curl)))
2834 (propagated-inputs
2835 `(("r-bitops" ,r-bitops)))
2836 (home-page "http://www.omegahat.org/RCurl")
2837 (synopsis "General network client interface for R")
2838 (description
2839 "The package allows one to compose general HTTP requests and provides
2840 convenient functions to fetch URIs, GET and POST forms, etc. and process the
2841 results returned by the Web server. This provides a great deal of control
2842 over the HTTP/FTP/... connection and the form of the request while providing a
2843 higher-level interface than is available just using R socket connections.
2844 Additionally, the underlying implementation is robust and extensive,
2845 supporting FTP/FTPS/TFTP (uploads and downloads), SSL/HTTPS, telnet, dict,
2846 ldap, and also supports cookies, redirects, authentication, etc.")
2847 (license license:bsd-3)))
2848
2849 (define-public r-xml
2850 (package
2851 (name "r-xml")
2852 (version "3.99-0.3")
2853 (source (origin
2854 (method url-fetch)
2855 (uri (cran-uri "XML" version))
2856 (sha256
2857 (base32
2858 "0lzpqwajs5xaqdna50vl24qkp9xvh00zypjjzy6kgdzk11isgdw1"))))
2859 (properties
2860 `((upstream-name . "XML")))
2861 (build-system r-build-system)
2862 (inputs
2863 `(("libxml2" ,libxml2)
2864 ("zlib" ,zlib)))
2865 (native-inputs
2866 `(("pkg-config" ,pkg-config)))
2867 (home-page "http://www.omegahat.org/RSXML")
2868 (synopsis "Tools for parsing and generating XML within R")
2869 (description
2870 "Many approaches for both reading and creating XML (and HTML)
2871 documents (including DTDs), both local and accessible via HTTP or FTP. Also
2872 offers access to an XPath \"interpreter\".")
2873 (license license:bsd-2)))
2874
2875 (define-public r-xnomial
2876 (package
2877 (name "r-xnomial")
2878 (version "1.0.4")
2879 (source
2880 (origin (method url-fetch)
2881 (uri (cran-uri "XNomial" version))
2882 (sha256
2883 (base32
2884 "1mwx302576rmsjllbq2clfxilm3hkyp5bw0wmwqbn0kgv5wpy8z6"))))
2885 (properties (quasiquote ((upstream-name . "XNomial"))))
2886 (build-system r-build-system)
2887 (home-page "https://cran.r-project.org/web/packages/XNomial")
2888 (synopsis "Goodness-of-Fit test for multinomial data")
2889 (description
2890 "This package provides an exact Goodness-of-Fit test for
2891 multinomial data with fixed probabilities. It can be used to
2892 determine whether a set of counts fits a given expected ratio. To see
2893 whether a set of observed counts fits an expectation, one can examine
2894 all possible outcomes with @code{xmulti()} or a random sample of them
2895 with @code{xmonte()} and find the probability of an observation
2896 deviating from the expectation by at least as much as the observed.
2897 As a measure of deviation from the expected, one can use the
2898 log-likelihood ratio, the multinomial probability, or the classic
2899 chi-square statistic. A histogram of the test statistic can also be
2900 plotted and compared with the asymptotic curve.")
2901 (license (list license:gpl2+ license:gpl3+))))
2902
2903 (define-public r-lambda-r
2904 (package
2905 (name "r-lambda-r")
2906 (version "1.2.4")
2907 (source (origin
2908 (method url-fetch)
2909 (uri (cran-uri "lambda.r" version))
2910 (sha256
2911 (base32
2912 "1mh1g0gsd58gng0hb29vww2yqb2jfs07kba5kxnnqck5j3izwlnj"))))
2913 (properties `((upstream-name . "lambda.r")))
2914 (build-system r-build-system)
2915 (propagated-inputs
2916 `(("r-formatr" ,r-formatr)))
2917 (home-page "https://cran.r-project.org/web/packages/lambda.r")
2918 (synopsis "Functional programming extension for R")
2919 (description
2920 "This package provides a language extension to efficiently write
2921 functional programs in R. Syntax extensions include multi-part function
2922 definitions, pattern matching, guard statements, built-in (optional) type
2923 safety.")
2924 (license license:lgpl3+)))
2925
2926 (define-public r-futile-options
2927 (package
2928 (name "r-futile-options")
2929 (version "1.0.1")
2930 (source (origin
2931 (method url-fetch)
2932 (uri (cran-uri "futile.options" version))
2933 (sha256
2934 (base32
2935 "0w15agpi88y3qkv6fl72zy2pzyplzgvnj41a4ixhg64mw1sck73s"))))
2936 (properties
2937 `((upstream-name . "futile.options")))
2938 (build-system r-build-system)
2939 (home-page "https://cran.r-project.org/web/packages/futile.options")
2940 (synopsis "Options management framework")
2941 (description
2942 "The futile.options subsystem provides an easy user-defined options
2943 management system that is properly scoped. This means that options created
2944 via @code{futile.options} are fully self-contained and will not collide with
2945 options defined in other packages.")
2946 (license license:lgpl3+)))
2947
2948 (define-public r-futile-logger
2949 (package
2950 (name "r-futile-logger")
2951 (version "1.4.3")
2952 (source (origin
2953 (method url-fetch)
2954 (uri (cran-uri "futile.logger" version))
2955 (sha256
2956 (base32
2957 "1r3nayk0z9n1svbf8640vw90dal5q07nkn0gv4bnva3pbzb352sy"))))
2958 (properties `((upstream-name . "futile.logger")))
2959 (build-system r-build-system)
2960 (propagated-inputs
2961 `(("r-futile-options" ,r-futile-options)
2962 ("r-lambda-r" ,r-lambda-r)))
2963 (home-page "https://cran.r-project.org/web/packages/futile.logger")
2964 (synopsis "Logging utility for R")
2965 (description
2966 "This package provides a simple yet powerful logging utility. Based
2967 loosely on log4j, futile.logger takes advantage of R idioms to make logging a
2968 convenient and easy to use replacement for @code{cat} and @code{print}
2969 statements.")
2970 (license license:lgpl3+)))
2971
2972 (define-public r-segmented
2973 (package
2974 (name "r-segmented")
2975 (version "1.1-0")
2976 (source
2977 (origin
2978 (method url-fetch)
2979 (uri (cran-uri "segmented" version))
2980 (sha256
2981 (base32
2982 "06cxdrqgnpk5fvbam5i7qa4n71wry0yvlj0jpwbxf267mvpx10fh"))))
2983 (build-system r-build-system)
2984 (home-page "https://cran.r-project.org/web/packages/segmented")
2985 (synopsis "Regression models with breakpoints estimation")
2986 (description
2987 "Given a regression model, segmented updates the model by adding one or
2988 more segmented (i.e., piecewise-linear) relationships. Several variables with
2989 multiple breakpoints are allowed.")
2990 (license (list license:gpl2+ license:gpl3+))))
2991
2992 (define-public r-snow
2993 (package
2994 (name "r-snow")
2995 (version "0.4-3")
2996 (source (origin
2997 (method url-fetch)
2998 (uri (cran-uri "snow" version))
2999 (sha256
3000 (base32
3001 "1n3n8pva9s34fvlw32yng0x416lmbv7q1fsd0ywa4kikmxym64l5"))))
3002 (build-system r-build-system)
3003 (home-page "https://cran.r-project.org/web/packages/snow")
3004 (synopsis "Support for simple parallel computing in R")
3005 (description
3006 "The snow package provides support for simple parallel computing on a
3007 network of workstations using R. A master R process calls @code{makeCluster}
3008 to start a cluster of worker processes; the master process then uses functions
3009 such as @code{clusterCall} and @code{clusterApply} to execute R code on the
3010 worker processes and collect and return the results on the master.")
3011 (license (list license:gpl2+ license:gpl3+))))
3012
3013 (define-public r-sparsem
3014 (package
3015 (name "r-sparsem")
3016 (version "1.78")
3017 (source (origin
3018 (method url-fetch)
3019 (uri (cran-uri "SparseM" version))
3020 (sha256
3021 (base32
3022 "0cmlm0lps3daalvp5jzjnjfys388hgkyc8yw0g5r2351h749xdyn"))))
3023 (properties
3024 `((upstream-name . "SparseM")))
3025 (native-inputs
3026 `(("gfortran" ,gfortran)))
3027 (build-system r-build-system)
3028 (home-page "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html")
3029 (synopsis "Sparse linear algebra")
3030 (description
3031 "This package provides some basic linear algebra functionality for sparse
3032 matrices. It includes Cholesky decomposition and backsolving as well as
3033 standard R subsetting and Kronecker products.")
3034 (license license:gpl2+)))
3035
3036 (define-public r-iterators
3037 (package
3038 (name "r-iterators")
3039 (version "1.0.12")
3040 (source
3041 (origin
3042 (method url-fetch)
3043 (uri (cran-uri "iterators" version))
3044 (sha256
3045 (base32
3046 "0jwzxaa3jm1xzgfv5pn0xqkk7rhm0xwvgn85w7xaw8xx1vb33gwn"))))
3047 (build-system r-build-system)
3048 (home-page "https://cran.r-project.org/web/packages/iterators")
3049 (synopsis "Iterator construct for R")
3050 (description
3051 "This package provides support for iterators, which allow a programmer to
3052 traverse through all the elements of a vector, list, or other collection of
3053 data.")
3054 (license license:asl2.0)))
3055
3056 (define-public r-foreach
3057 (package
3058 (name "r-foreach")
3059 (version "1.4.7")
3060 (source
3061 (origin
3062 (method url-fetch)
3063 (uri (cran-uri "foreach" version))
3064 (sha256
3065 (base32
3066 "0q7iyniw5iri4hl57bhil3r69s5wnaijzn0q0x4h3z42245jqqwm"))))
3067 (build-system r-build-system)
3068 (propagated-inputs
3069 `(("r-codetools" ,r-codetools)
3070 ("r-iterators" ,r-iterators)))
3071 (home-page "https://cran.r-project.org/web/packages/foreach")
3072 (synopsis "Foreach looping construct for R")
3073 (description
3074 "This package provides support for the @code{foreach} looping construct.
3075 @code{foreach} is an idiom that allows for iterating over elements in a
3076 collection, without the use of an explicit loop counter. This package in
3077 particular is intended to be used for its return value, rather than for its
3078 side effects. In that sense, it is similar to the standard @code{lapply}
3079 function, but doesn't require the evaluation of a function. Using
3080 @code{foreach} without side effects also facilitates executing the loop in
3081 parallel.")
3082 (license license:asl2.0)))
3083
3084 (define-public r-doparallel
3085 (package
3086 (name "r-doparallel")
3087 (version "1.0.15")
3088 (source
3089 (origin
3090 (method url-fetch)
3091 (uri (cran-uri "doParallel" version))
3092 (sha256
3093 (base32
3094 "0vnqbha3gig3awbfvsfx3ni5jir398md1n7xmsb8jihnjsk7xbbi"))))
3095 (properties `((upstream-name . "doParallel")))
3096 (build-system r-build-system)
3097 (propagated-inputs
3098 `(("r-foreach" ,r-foreach)
3099 ("r-iterators" ,r-iterators)))
3100 (home-page "https://cran.r-project.org/web/packages/doParallel")
3101 (synopsis "Foreach parallel adaptor for the 'parallel' package")
3102 (description
3103 "This package provides a parallel backend for the @code{%dopar%} function
3104 using the parallel package.")
3105 (license license:gpl2+)))
3106
3107 (define-public r-domc
3108 (package
3109 (name "r-domc")
3110 (version "1.3.6")
3111 (source
3112 (origin
3113 (method url-fetch)
3114 (uri (cran-uri "doMC" version))
3115 (sha256
3116 (base32
3117 "1cn9gxavhvjswip8pwvkpi7q6wpzdllcsdjabga8akf55nggqxr9"))))
3118 (properties `((upstream-name . "doMC")))
3119 (build-system r-build-system)
3120 (propagated-inputs
3121 `(("r-foreach" ,r-foreach)
3122 ("r-iterators" ,r-iterators)))
3123 (home-page "https://cran.r-project.org/web/packages/doMC")
3124 (synopsis "Foreach parallel adaptor for the 'parallel' package")
3125 (description
3126 "This package provides a parallel backend for the @code{%dopar%} function
3127 using the multicore functionality of the parallel package.")
3128 (license license:gpl2+)))
3129
3130 (define-public r-dt
3131 (package
3132 (name "r-dt")
3133 (version "0.11")
3134 (source (origin
3135 (method url-fetch)
3136 (uri (cran-uri "DT" version))
3137 (sha256
3138 (base32
3139 "09k9s07aah1apc308sj1abvr27mky6fkpl9j6lxl2x55n4immvkg"))))
3140 (properties
3141 `((upstream-name . "DT")))
3142 (build-system r-build-system)
3143 (propagated-inputs
3144 `(("r-crosstalk" ,r-crosstalk)
3145 ("r-htmltools" ,r-htmltools)
3146 ("r-htmlwidgets" ,r-htmlwidgets)
3147 ("r-jsonlite" ,r-jsonlite)
3148 ("r-magrittr" ,r-magrittr)
3149 ("r-promises" ,r-promises)))
3150 (home-page "http://rstudio.github.io/DT")
3151 (synopsis "R wrapper of the DataTables JavaScript library")
3152 (description
3153 "This package allows for data objects in R to be rendered as HTML tables
3154 using the JavaScript library @code{DataTables} (typically via R Markdown or
3155 Shiny). The @code{DataTables} library has been included in this R package.")
3156 ;; The DT package as a whole is distributed under GPLv3. The DT package
3157 ;; inludes other software components under different licenses:
3158 ;;
3159 ;; * Expat: jQuery, jquery.highlight.js, DataTables
3160 ;; * ASL2.0: selectize.js
3161 ;; * WTFPL: noUiSlider
3162 (license (list license:gpl3
3163 license:expat
3164 license:asl2.0
3165 (license:non-copyleft "http://www.wtfpl.net/txt/copying/")))))
3166
3167 (define-public r-base64enc
3168 (package
3169 (name "r-base64enc")
3170 (version "0.1-3")
3171 (source (origin
3172 (method url-fetch)
3173 (uri (cran-uri "base64enc" version))
3174 (sha256
3175 (base32
3176 "13b89fhg1nx7zds82a0biz847ixphg9byf5zl2cw9kab6s56v1bd"))))
3177 (build-system r-build-system)
3178 (home-page "http://www.rforge.net/base64enc")
3179 (synopsis "Tools for Base64 encoding")
3180 (description
3181 "This package provides tools for handling Base64 encoding. It is more
3182 flexible than the orphaned \"base64\" package.")
3183 (license license:gpl2+)))
3184
3185 (define-public r-irlba
3186 (package
3187 (name "r-irlba")
3188 (version "2.3.3")
3189 (source
3190 (origin
3191 (method url-fetch)
3192 (uri (cran-uri "irlba" version))
3193 (sha256
3194 (base32
3195 "1h7mzrqdjc41814cf6c93sbyl7nxwvsf3x8apl9rhmydgdlk7qkf"))))
3196 (build-system r-build-system)
3197 (propagated-inputs
3198 `(("r-matrix" ,r-matrix)))
3199 (home-page "https://cran.r-project.org/web/packages/irlba")
3200 (synopsis "Methods for eigendecomposition of large matrices")
3201 (description
3202 "This package provides fast and memory efficient methods for truncated
3203 singular and eigenvalue decompositions, as well as for principal component
3204 analysis of large sparse or dense matrices.")
3205 (license (list license:gpl2+ license:gpl3+))))
3206
3207 (define-public r-glmnet
3208 (package
3209 (name "r-glmnet")
3210 (version "3.0-2")
3211 (source
3212 (origin
3213 (method url-fetch)
3214 (uri (cran-uri "glmnet" version))
3215 (sha256
3216 (base32 "0b3nnfzp8dxcdkvxr0yvy6d58yk3xg4kz1wqa42bxqppbakmd2gl"))))
3217 (build-system r-build-system)
3218 (native-inputs
3219 `(("gfortran" ,gfortran)))
3220 (propagated-inputs
3221 `(("r-foreach" ,r-foreach)
3222 ("r-matrix" ,r-matrix)
3223 ("r-shape" ,r-shape)))
3224 (home-page "http://www.jstatsoft.org/v33/i01")
3225 (synopsis "Lasso and elastic-net regularized generalized linear models")
3226 (description
3227 "The glmnet package provides efficient procedures for fitting the entire
3228 lasso or elastic-net regularization path for linear and Poisson regression, as
3229 well as logistic, multinomial, Cox, multiple-response Gaussian and grouped
3230 multinomial models. The algorithm uses cyclical coordinate descent in a
3231 path-wise fashion.")
3232 (license license:gpl2+)))
3233
3234 (define-public r-pkgmaker
3235 (package
3236 (name "r-pkgmaker")
3237 (version "0.31")
3238 (source
3239 (origin
3240 (method url-fetch)
3241 (uri (cran-uri "pkgmaker" version))
3242 (sha256
3243 (base32
3244 "0cc6v6kpwxwwh7k7zyw13wqdp0f9qzzr1a7vv02lskgii54aa4nb"))))
3245 (build-system r-build-system)
3246 (propagated-inputs
3247 `(("r-assertthat" ,r-assertthat)
3248 ("r-bibtex" ,r-bibtex)
3249 ("r-codetools" ,r-codetools)
3250 ("r-digest" ,r-digest)
3251 ("r-magrittr" ,r-magrittr)
3252 ("r-registry" ,r-registry)
3253 ("r-stringi" ,r-stringi)
3254 ("r-stringr" ,r-stringr)
3255 ("r-withr" ,r-withr)
3256 ("r-xtable" ,r-xtable)))
3257 (home-page "https://renozao.github.io/pkgmaker")
3258 (synopsis "Package development utilities")
3259 (description
3260 "This package provides some low-level utilities to use for R package
3261 development. It currently provides managers for multiple package specific
3262 options and registries, vignette, unit test and bibtex related utilities.")
3263 (license license:gpl2+)))
3264
3265 (define-public r-registry
3266 (package
3267 (name "r-registry")
3268 (version "0.5-1")
3269 (source
3270 (origin
3271 (method url-fetch)
3272 (uri (cran-uri "registry" version))
3273 (sha256
3274 (base32
3275 "1k3j6dx350awamr0dwwgkhfs46vsnj4nf08iw5byq0x7n3nkdsnz"))))
3276 (build-system r-build-system)
3277 (home-page "https://cran.r-project.org/web/packages/registry")
3278 (synopsis "Infrastructure for R package registries")
3279 (description
3280 "This package provides a generic infrastructure for creating and using R
3281 package registries.")
3282 (license license:gpl2+)))
3283
3284 (define-public r-rngtools
3285 (package
3286 (name "r-rngtools")
3287 (version "1.5")
3288 (source
3289 (origin
3290 (method url-fetch)
3291 (uri (cran-uri "rngtools" version))
3292 (sha256
3293 (base32
3294 "0xgmg3qb6insc157as47mcm9sdjdpy9jirh7w06bxb7pfcxqfx42"))))
3295 (build-system r-build-system)
3296 (propagated-inputs
3297 `(("r-digest" ,r-digest)))
3298 (home-page "https://renozao.github.io/rngtools")
3299 (synopsis "Utility functions for working with random number generators")
3300 (description
3301 "This package contains a set of functions for working with Random Number
3302 Generators (RNGs). In particular, it defines a generic S4 framework for
3303 getting/setting the current RNG, or RNG data that are embedded into objects
3304 for reproducibility. Notably, convenient default methods greatly facilitate
3305 the way current RNG settings can be changed.")
3306 (license license:gpl3+)))
3307
3308 (define-public r-rtsne
3309 (package
3310 (name "r-rtsne")
3311 (version "0.15")
3312 (source
3313 (origin
3314 (method url-fetch)
3315 (uri (cran-uri "Rtsne" version))
3316 (sha256
3317 (base32
3318 "0v17vxizrs1msay24xl2bckfajr2c82wpqj07lyssbrq197nwdsn"))))
3319 (properties `((upstream-name . "Rtsne")))
3320 (build-system r-build-system)
3321 (propagated-inputs
3322 `(("r-rcpp" ,r-rcpp)))
3323 (home-page "https://github.com/jkrijthe/Rtsne")
3324 (synopsis "T-distributed stochastic neighbor embedding")
3325 (description
3326 "This package provides an R wrapper around the fast T-distributed
3327 Stochastic Neighbor Embedding using a Barnes-Hut implementation.")
3328 ;; The declared license for this package is BSD-3, but it also includes
3329 ;; code licensed under BSD-4.
3330 (license (list license:bsd-3 license:bsd-4))))
3331
3332 (define-public r-e1071
3333 (package
3334 (name "r-e1071")
3335 (version "1.7-3")
3336 (source
3337 (origin
3338 (method url-fetch)
3339 (uri (cran-uri "e1071" version))
3340 (sha256
3341 (base32
3342 "0pf2pjb590z0jikgv1037xcp7dq06mg3dzmyffjw6gk7dd9blbdv"))))
3343 (build-system r-build-system)
3344 (propagated-inputs
3345 `(("r-class" ,r-class)))
3346 (home-page "https://cran.r-project.org/web/packages/e1071")
3347 (synopsis "Miscellaneous functions for probability theory")
3348 (description
3349 "This package provides functions for latent class analysis, short time
3350 Fourier transform, fuzzy clustering, support vector machines, shortest path
3351 computation, bagged clustering, naive Bayes classifier, and more.")
3352 (license license:gpl2+)))
3353
3354 (define-public r-bigmemory-sri
3355 (package
3356 (name "r-bigmemory-sri")
3357 (version "0.1.3")
3358 (source
3359 (origin
3360 (method url-fetch)
3361 (uri (cran-uri "bigmemory.sri" version))
3362 (sha256
3363 (base32 "0mg14ilwdkd64q2ri9jdwnk7mp55dqim7xfifrs65sdsv1934h2m"))))
3364 (properties
3365 `((upstream-name . "bigmemory.sri")))
3366 (build-system r-build-system)
3367 (home-page "https://cran.r-project.org/web/packages/bigmemory.sri")
3368 (synopsis "Shared resource interface for the bigmemory package")
3369 (description "This package provides a shared resource interface for the
3370 bigmemory and synchronicity packages.")
3371 ;; Users can choose either LGPLv3 or ASL2.0.
3372 (license (list license:lgpl3 license:asl2.0))))
3373
3374 (define-public r-synchronicity
3375 (package
3376 (name "r-synchronicity")
3377 (version "1.3.5")
3378 (source
3379 (origin
3380 (method url-fetch)
3381 (uri (cran-uri "synchronicity" version))
3382 (sha256
3383 (base32
3384 "1kgsk64aifjm3mfj102y3va7x1abypq2zi0cqbnjhl8fqyzp69hx"))))
3385 (build-system r-build-system)
3386 (propagated-inputs
3387 `(("r-bh" ,r-bh)
3388 ("r-bigmemory-sri" ,r-bigmemory-sri)
3389 ("r-rcpp" ,r-rcpp)
3390 ("r-uuid" ,r-uuid)))
3391 (home-page "http://www.bigmemory.org")
3392 (synopsis "Boost mutex functionality in R")
3393 (description "This package provides support for synchronization
3394 via mutexes and may eventually support interprocess communication and
3395 message passing.")
3396 ;; Users can choose either LGPLv3 or ASL2.0.
3397 (license (list license:lgpl3 license:asl2.0))))
3398
3399 (define-public r-bigmemory
3400 (package
3401 (name "r-bigmemory")
3402 (version "4.5.36")
3403 (source
3404 (origin
3405 (method url-fetch)
3406 (uri (cran-uri "bigmemory" version))
3407 (sha256
3408 (base32
3409 "03pg8mxdc7q0249visjmc8bc3xmwxsfg3i2n6higicj4cfz7zihq"))))
3410 (build-system r-build-system)
3411 (propagated-inputs
3412 `(("r-bh" ,r-bh)
3413 ("r-rcpp" ,r-rcpp)
3414 ("r-bigmemory-sri" ,r-bigmemory-sri)))
3415 (home-page "http://www.bigmemory.org")
3416 (synopsis "Manage large matrices with shared memory or memory-mapped files")
3417 (description "This package provides methods to create, store, access, and
3418 manipulate large matrices. Matrices are allocated to shared memory and may use
3419 memory-mapped files.")
3420 ;; Users can choose either LGPLv3 or ASL2.0.
3421 (license (list license:lgpl3 license:asl2.0))))
3422
3423 (define-public r-nmf
3424 (package
3425 (name "r-nmf")
3426 (version "0.21.0")
3427 (source
3428 (origin
3429 (method url-fetch)
3430 (uri (cran-uri "NMF" version))
3431 (sha256
3432 (base32
3433 "1qq25n3k5sgh3srlshb3ic6q92s12c1ilqf5cd5anvq6cqfchc1v"))))
3434 (properties `((upstream-name . "NMF")))
3435 (build-system r-build-system)
3436 (propagated-inputs
3437 `(("r-cluster" ,r-cluster)
3438 ("r-bigmemory" ,r-bigmemory) ; suggested
3439 ("r-synchronicity" ,r-synchronicity) ; suggested
3440 ("r-colorspace" ,r-colorspace)
3441 ("r-digest" ,r-digest)
3442 ("r-doparallel" ,r-doparallel)
3443 ("r-foreach" ,r-foreach)
3444 ("r-ggplot2" ,r-ggplot2)
3445 ("r-gridbase" ,r-gridbase)
3446 ("r-pkgmaker" ,r-pkgmaker)
3447 ("r-rcolorbrewer" ,r-rcolorbrewer)
3448 ("r-registry" ,r-registry)
3449 ("r-reshape2" ,r-reshape2)
3450 ("r-rngtools" ,r-rngtools)
3451 ("r-stringr" ,r-stringr)))
3452 (home-page "http://renozao.github.io/NMF")
3453 (synopsis "Algorithms and framework for nonnegative matrix factorization")
3454 (description
3455 "This package provides a framework to perform Non-negative Matrix
3456 Factorization (NMF). The package implements a set of already published
3457 algorithms and seeding methods, and provides a framework to test, develop and
3458 plug new or custom algorithms. Most of the built-in algorithms have been
3459 optimized in C++, and the main interface function provides an easy way of
3460 performing parallel computations on multicore machines.")
3461 (license license:gpl2+)))
3462
3463 (define-public r-r-methodss3
3464 (package
3465 (name "r-r-methodss3")
3466 (version "1.7.1")
3467 (source (origin
3468 (method url-fetch)
3469 (uri (cran-uri "R.methodsS3" version))
3470 (sha256
3471 (base32
3472 "11z6v2i7jl647wxi9p5z66yvfnnqv6s7fxqmz7w2gkb6j8wl1f24"))))
3473 (properties `((upstream-name . "R.methodsS3")))
3474 (build-system r-build-system)
3475 (home-page "https://cran.r-project.org/web/packages/R.methodsS3")
3476 (synopsis "S3 methods simplified")
3477 (description
3478 "This package provides methods that simplify the setup of S3 generic
3479 functions and S3 methods. Major effort has been made in making definition of
3480 methods as simple as possible with a minimum of maintenance for package
3481 developers. For example, generic functions are created automatically, if
3482 missing, and naming conflict are automatically solved, if possible. The
3483 method @code{setMethodS3()} is a good start for those who in the future may
3484 want to migrate to S4.")
3485 (license license:lgpl2.1+)))
3486
3487 (define-public r-r-oo
3488 (package
3489 (name "r-r-oo")
3490 (version "1.23.0")
3491 (source (origin
3492 (method url-fetch)
3493 (uri (cran-uri "R.oo" version))
3494 (sha256
3495 (base32
3496 "189fb7mmyzwg6nn8rza8iip7fbyws7i2vkmzy672x9mhvgilq4pm"))))
3497 (properties `((upstream-name . "R.oo")))
3498 (build-system r-build-system)
3499 (propagated-inputs
3500 `(("r-r-methodss3" ,r-r-methodss3)))
3501 (home-page "https://github.com/HenrikBengtsson/R.oo")
3502 (synopsis "R object-oriented programming with or without references")
3503 (description
3504 "This package provides methods and classes for object-oriented
3505 programming in R with or without references. Large effort has been made on
3506 making definition of methods as simple as possible with a minimum of
3507 maintenance for package developers.")
3508 (license license:lgpl2.1+)))
3509
3510 (define-public r-r-utils
3511 (package
3512 (name "r-r-utils")
3513 (version "2.9.2")
3514 (source (origin
3515 (method url-fetch)
3516 (uri (cran-uri "R.utils" version))
3517 (sha256
3518 (base32
3519 "1krj1ny7y43lpm2q8c7swxfdc3ngy2j8knzv71f8bfsgh673nsxc"))))
3520 (properties `((upstream-name . "R.utils")))
3521 (build-system r-build-system)
3522 (propagated-inputs
3523 `(("r-r-methodss3" ,r-r-methodss3)
3524 ("r-r-oo" ,r-r-oo)))
3525 (home-page "https://github.com/HenrikBengtsson/R.utils")
3526 (synopsis "Various programming utilities")
3527 (description
3528 "This package provides utility functions useful when programming and
3529 developing R packages.")
3530 (license license:lgpl2.1+)))
3531
3532 (define-public r-r-cache
3533 (package
3534 (name "r-r-cache")
3535 (version "0.14.0")
3536 (source (origin
3537 (method url-fetch)
3538 (uri (cran-uri "R.cache" version))
3539 (sha256
3540 (base32
3541 "1n8n5ihkryrbxv630dwhz4r048nyv676qd3i9f5z5fa04hvlxbqq"))))
3542 (properties `((upstream-name . "R.cache")))
3543 (build-system r-build-system)
3544 (propagated-inputs
3545 `(("r-digest" ,r-digest)
3546 ("r-r-methodss3" ,r-r-methodss3)
3547 ("r-r-oo" ,r-r-oo)
3548 ("r-r-utils" ,r-r-utils)))
3549 (home-page "https://github.com/HenrikBengtsson/R.cache")
3550 (synopsis "Light-weight caching of objects and results")
3551 (description
3552 "This package provides methods for caching or memoization of objects and
3553 results. With this package, any R object can be cached in a key-value storage
3554 where the key can be an arbitrary set of R objects. The cache memory is
3555 persistent (on the file system).")
3556 (license license:lgpl2.1+)))
3557
3558 (define-public r-r-rsp
3559 (package
3560 (name "r-r-rsp")
3561 (version "0.43.2")
3562 (source (origin
3563 (method url-fetch)
3564 (uri (cran-uri "R.rsp" version))
3565 (sha256
3566 (base32
3567 "128zqyvbq9hm9gy86jzhj609lkfw57vr24mdxgh46ncmx66ag4gj"))))
3568 (properties `((upstream-name . "R.rsp")))
3569 (build-system r-build-system)
3570 (propagated-inputs
3571 `(("r-digest" ,r-digest)
3572 ("r-r-cache" ,r-r-cache)
3573 ("r-r-methodss3" ,r-r-methodss3)
3574 ("r-r-oo" ,r-r-oo)
3575 ("r-r-utils" ,r-r-utils)))
3576 (home-page "https://github.com/HenrikBengtsson/R.rsp")
3577 (synopsis "Dynamic generation of scientific reports")
3578 (description
3579 "The RSP markup language provides a powerful markup for controlling the
3580 content and output of LaTeX, HTML, Markdown, AsciiDoc, Sweave and knitr
3581 documents (and more), e.g. @code{Today's date is <%=Sys.Date()%>}. Contrary
3582 to many other literate programming languages, with RSP it is straightforward
3583 to loop over mixtures of code and text sections, e.g. in month-by-month
3584 summaries. RSP has also several preprocessing directives for incorporating
3585 static and dynamic contents of external files (local or online) among other
3586 things. RSP is ideal for self-contained scientific reports and R package
3587 vignettes.")
3588 (license license:lgpl2.1+)))
3589
3590 (define-public r-mvtnorm
3591 (package
3592 (name "r-mvtnorm")
3593 (version "1.0-12")
3594 (source (origin
3595 (method url-fetch)
3596 (uri (cran-uri "mvtnorm" version))
3597 (sha256
3598 (base32
3599 "03rfmii9j8x8fjv7hp8qd28z0svl4w0x54k2f4jpwv4qa7079i24"))))
3600 (build-system r-build-system)
3601 (native-inputs
3602 `(("gfortran" ,gfortran)))
3603 (home-page "http://mvtnorm.R-forge.R-project.org")
3604 (synopsis "Package for multivariate normal and t-distributions")
3605 (description "This package can compute multivariate normal and
3606 t-probabilities, quantiles, random deviates and densities.")
3607 (license license:gpl2)))
3608
3609 (define-public r-matrixstats
3610 (package
3611 (name "r-matrixstats")
3612 (version "0.55.0")
3613 (source (origin
3614 (method url-fetch)
3615 (uri (cran-uri "matrixStats" version))
3616 (sha256
3617 (base32
3618 "06fvx0rlaz80k0lkqq2n7v0309xpz7h7ss0m9kgyikp4xs8bvmhn"))))
3619 (properties `((upstream-name . "matrixStats")))
3620 (build-system r-build-system)
3621 (native-inputs
3622 `(("r-r-rsp" ,r-r-rsp))) ;used to build vignettes
3623 (home-page "https://github.com/HenrikBengtsson/matrixStats")
3624 (synopsis "Methods applying to vectors and matrix rows and columns")
3625 (description
3626 "This package provides methods operating on rows and columns of matrices,
3627 e.g. @code{rowMedians()}, @code{rowRanks()}, and @code{rowSds()}. There are
3628 also some vector-based methods, e.g. @code{binMeans()}, @code{madDiff()} and
3629 @code{weightedMedians()}. All methods have been optimized for speed and
3630 memory usage.")
3631 (license license:artistic2.0)))
3632
3633 (define-public r-viridis
3634 (package
3635 (name "r-viridis")
3636 (version "0.5.1")
3637 (source (origin
3638 (method url-fetch)
3639 (uri (cran-uri "viridis" version))
3640 (sha256
3641 (base32
3642 "060rf1jn29dq53y3nhb0hykvcap6rqsk04rq544ypiiqb18ngwnx"))))
3643 (build-system r-build-system)
3644 (propagated-inputs
3645 `(("r-ggplot2" ,r-ggplot2)
3646 ("r-gridextra" ,r-gridextra)
3647 ("r-viridislite" ,r-viridislite)))
3648 (home-page "https://github.com/sjmgarnier/viridis")
3649 (synopsis "Matplotlib default color map")
3650 (description
3651 "This package is a port of the new @url{matplotlib,
3652 http://matplotlib.org/} color maps (@code{viridis}--the default--,
3653 @code{magma}, @code{plasma}, and @code{inferno}) to R. These color maps are
3654 designed in such a way that they will analytically be perfectly
3655 perceptually-uniform, both in regular form and also when converted to
3656 black-and-white. They are also designed to be perceived by readers with the
3657 most common form of color blindness.")
3658 (license license:x11)))
3659
3660 (define-public r-viridislite
3661 (package
3662 (name "r-viridislite")
3663 (version "0.3.0")
3664 (source
3665 (origin
3666 (method url-fetch)
3667 (uri (cran-uri "viridisLite" version))
3668 (sha256
3669 (base32
3670 "1by2l05f0yabwvv64lhnv7bbhx0w683s3wr9j2xda920ghpa23kq"))))
3671 (properties `((upstream-name . "viridisLite")))
3672 (build-system r-build-system)
3673 (home-page "https://github.com/sjmgarnier/viridisLite")
3674 (synopsis "Default color maps from matplotlib")
3675 (description
3676 "This package is a port of the new @code{matplotlib} color maps
3677 (@code{viridis}, @code{magma}, @code{plasma} and @code{inferno}) to R.
3678 matplotlib is a popular plotting library for Python. These color maps are
3679 designed in such a way that they will analytically be perfectly
3680 perceptually-uniform, both in regular form and also when converted to
3681 black-and-white. They are also designed to be perceived by readers with the
3682 most common form of color blindness. This is the @code{lite} version of the
3683 more complete @code{viridis} package.")
3684 (license license:expat)))
3685
3686 (define-public r-tidyselect
3687 (package
3688 (name "r-tidyselect")
3689 (version "0.2.5")
3690 (source
3691 (origin
3692 (method url-fetch)
3693 (uri (cran-uri "tidyselect" version))
3694 (sha256
3695 (base32
3696 "0x3cp36byhfjajikr1lwffjm85ayw3bcs7d7kb0cydgs61ifiqjw"))))
3697 (build-system r-build-system)
3698 (propagated-inputs
3699 `(("r-glue" ,r-glue)
3700 ("r-purrr" ,r-purrr)
3701 ("r-rcpp" ,r-rcpp)
3702 ("r-rlang" ,r-rlang)))
3703 (home-page "https://cran.r-project.org/web/packages/tidyselect")
3704 (synopsis "Select from a set of strings")
3705 (description
3706 "This package provides a backend for the selecting functions of the
3707 tidyverse. It makes it easy to implement select-like functions in your own
3708 packages in a way that is consistent with other tidyverse interfaces for
3709 selection.")
3710 (license license:gpl3)))
3711
3712 (define-public r-tidyr
3713 (package
3714 (name "r-tidyr")
3715 (version "1.0.2")
3716 (source
3717 (origin
3718 (method url-fetch)
3719 (uri (cran-uri "tidyr" version))
3720 (sha256
3721 (base32
3722 "0safj8bcf8libwr0jx4059bmarngvhfddrcv8k5iw39m9lpxs0r4"))))
3723 (build-system r-build-system)
3724 (propagated-inputs
3725 `(("r-dplyr" ,r-dplyr)
3726 ("r-ellipsis" ,r-ellipsis)
3727 ("r-magrittr" ,r-magrittr)
3728 ("r-glue" ,r-glue)
3729 ("r-lifecycle" ,r-lifecycle)
3730 ("r-purrr" ,r-purrr)
3731 ("r-rlang" ,r-rlang)
3732 ("r-tidyselect" ,r-tidyselect)
3733 ("r-rcpp" ,r-rcpp)
3734 ("r-stringi" ,r-stringi)
3735 ("r-tibble" ,r-tibble)
3736 ("r-vctrs" ,r-vctrs)))
3737 (home-page "https://github.com/hadley/tidyr")
3738 (synopsis "Tidy data with `spread()` and `gather()` functions")
3739 (description
3740 "tidyr is a reframing of the reshape2 package designed to accompany the
3741 tidy data framework, and to work hand-in-hand with magrittr and dplyr to build
3742 a solid pipeline for data analysis. It is designed specifically for tidying
3743 data, not the general reshaping that reshape2 does, or the general aggregation
3744 that reshape did. In particular, built-in methods only work for data frames,
3745 and tidyr provides no margins or aggregation.")
3746 (license license:expat)))
3747
3748 (define-public r-hexbin
3749 (package
3750 (name "r-hexbin")
3751 (version "1.28.0")
3752 (source
3753 (origin
3754 (method url-fetch)
3755 (uri (cran-uri "hexbin" version))
3756 (sha256
3757 (base32
3758 "0b58jb1kz39wzrnkv077cfzns889xly7psvhxnm3xmnx6yvd986d"))))
3759 (build-system r-build-system)
3760 (propagated-inputs
3761 `(("r-lattice" ,r-lattice)))
3762 (native-inputs
3763 `(("gfortran" ,gfortran)))
3764 (home-page "https://github.com/edzer/hexbin")
3765 (synopsis "Hexagonal binning routines")
3766 (description
3767 "This package provides binning and plotting functions for hexagonal bins.
3768 It uses and relies on grid graphics and formal (S4) classes and methods.")
3769 (license license:gpl2+)))
3770
3771 (define-public r-purrr
3772 (package
3773 (name "r-purrr")
3774 (version "0.3.3")
3775 (source
3776 (origin
3777 (method url-fetch)
3778 (uri (cran-uri "purrr" version))
3779 (sha256
3780 (base32
3781 "17lyys7dxjrwsfkq7a7hw65iy3qn3pp1sn70srdy64jf8adahc8g"))))
3782 (build-system r-build-system)
3783 (propagated-inputs
3784 `(("r-magrittr" ,r-magrittr)
3785 ("r-rlang" ,r-rlang)))
3786 (home-page "https://github.com/hadley/purrr")
3787 (synopsis "Functional programming tools")
3788 (description
3789 "This package completes R's functional programming tools with missing
3790 features present in other programming languages.")
3791 (license license:gpl3+)))
3792
3793 (define-public r-plotly
3794 (package
3795 (name "r-plotly")
3796 (version "4.9.1")
3797 (source (origin
3798 (method url-fetch)
3799 (uri (cran-uri "plotly" version))
3800 (sha256
3801 (base32
3802 "0gadam4qw81q9gpjp7sqrpd7ikmcdsc78d8vjn39g0xzs5j8r845"))))
3803 (build-system r-build-system)
3804 (propagated-inputs
3805 `(("r-base64enc" ,r-base64enc)
3806 ("r-crosstalk" ,r-crosstalk)
3807 ("r-digest" ,r-digest)
3808 ("r-data-table" ,r-data-table)
3809 ("r-dplyr" ,r-dplyr)
3810 ("r-ggplot2" ,r-ggplot2)
3811 ("r-hexbin" ,r-hexbin)
3812 ("r-htmltools" ,r-htmltools)
3813 ("r-htmlwidgets" ,r-htmlwidgets)
3814 ("r-httr" ,r-httr)
3815 ("r-jsonlite" ,r-jsonlite)
3816 ("r-lazyeval" ,r-lazyeval)
3817 ("r-magrittr" ,r-magrittr)
3818 ("r-promises" ,r-promises)
3819 ("r-purrr" ,r-purrr)
3820 ("r-rcolorbrewer" ,r-rcolorbrewer)
3821 ("r-rlang" ,r-rlang)
3822 ("r-scales" ,r-scales)
3823 ("r-tibble" ,r-tibble)
3824 ("r-tidyr" ,r-tidyr)
3825 ("r-viridislite" ,r-viridislite)))
3826 (home-page "https://plot.ly/r")
3827 (synopsis "Create interactive web graphics")
3828 (description
3829 "This package enables the translation of ggplot2 graphs to an interactive
3830 web-based version and/or the creation of custom web-based visualizations
3831 directly from R. Once uploaded to a plotly account, plotly graphs (and the
3832 data behind them) can be viewed and modified in a web browser.")
3833 (license license:x11)))
3834
3835 (define-public r-biased-urn
3836 (package
3837 (name "r-biased-urn")
3838 (version "1.07")
3839 (source
3840 (origin
3841 (method url-fetch)
3842 (uri (cran-uri "BiasedUrn" version))
3843 (sha256
3844 (base32
3845 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
3846 (properties `((upstream-name . "BiasedUrn")))
3847 (build-system r-build-system)
3848 (home-page "http://www.agner.org/random/")
3849 (synopsis "Biased urn model distributions")
3850 (description
3851 "This package provides statistical models of biased sampling in the form
3852 of univariate and multivariate noncentral hypergeometric distributions,
3853 including Wallenius' noncentral hypergeometric distribution and Fisher's
3854 noncentral hypergeometric distribution (also called extended hypergeometric
3855 distribution).")
3856 (license license:gpl3+)))
3857
3858 (define-public r-rematch
3859 (package
3860 (name "r-rematch")
3861 (version "1.0.1")
3862 (source
3863 (origin
3864 (method url-fetch)
3865 (uri (cran-uri "rematch" version))
3866 (sha256
3867 (base32
3868 "0y3mshvpvz9csmq8hk8jbabx4nxlv5sckvfzvm6920ndg34xw2d4"))))
3869 (build-system r-build-system)
3870 (home-page "https://github.com/MangoTheCat/rematch")
3871 (synopsis "Match regular expressions with a nicer API")
3872 (description
3873 "This package provides a small wrapper on @code{regexpr} to extract the
3874 matches and captured groups from the match of a regular expression to a
3875 character vector.")
3876 (license license:expat)))
3877
3878 (define-public r-cellranger
3879 (package
3880 (name "r-cellranger")
3881 (version "1.1.0")
3882 (source
3883 (origin
3884 (method url-fetch)
3885 (uri (cran-uri "cellranger" version))
3886 (sha256
3887 (base32
3888 "16fgi3annn34c3cxi0pxf62mmmmxi21hp0zzlv7bkfsjqy4g4f2x"))))
3889 (build-system r-build-system)
3890 (propagated-inputs
3891 `(("r-rematch" ,r-rematch)
3892 ("r-tibble" ,r-tibble)))
3893 (home-page "https://github.com/rsheets/cellranger")
3894 (synopsis "Translate spreadsheet cell ranges to rows and columns")
3895 (description
3896 "This package provides helper functions to work with spreadsheets and the
3897 @code{A1:D10} style of cell range specification.")
3898 (license license:expat)))
3899
3900 (define-public r-googlesheets
3901 (package
3902 (name "r-googlesheets")
3903 (version "0.3.0")
3904 (source
3905 (origin
3906 (method url-fetch)
3907 (uri (cran-uri "googlesheets" version))
3908 (sha256
3909 (base32
3910 "11q07nxys72wkxx9mawmjyf20gvwvrb7h3gpa73h6lgh2vgrwnv8"))))
3911 (build-system r-build-system)
3912 (propagated-inputs
3913 `(("r-cellranger" ,r-cellranger)
3914 ("r-dplyr" ,r-dplyr)
3915 ("r-httr" ,r-httr)
3916 ("r-jsonlite" ,r-jsonlite)
3917 ("r-purrr" ,r-purrr)
3918 ("r-readr" ,r-readr)
3919 ("r-stringr" ,r-stringr)
3920 ("r-tibble" ,r-tibble)
3921 ("r-tidyr" ,r-tidyr)
3922 ("r-xml2" ,r-xml2)))
3923 (home-page "https://github.com/jennybc/googlesheets")
3924 (synopsis "Manage Google spreadsheets from R")
3925 (description "This package provides tools to interact with Google Sheets
3926 from within R.")
3927 (license license:expat)))
3928
3929 (define-public r-spams
3930 (package
3931 (name "r-spams")
3932 (version "2.6-2017-03-22")
3933 (source
3934 (origin
3935 (method url-fetch)
3936 ;; Use the ‘Latest version’ link for a stable URI across releases.
3937 (uri (string-append "https://gforge.inria.fr/frs/download.php/"
3938 "latestfile/4531/spams-R-v" version ".tar.gz"))
3939 (sha256
3940 (base32
3941 "13z2293jixf1r9g8dyy856xrhvpjr2ln2n9smn6644126r9hmhkx"))))
3942 (build-system r-build-system)
3943 (arguments
3944 `(#:phases
3945 (modify-phases %standard-phases
3946 (add-after 'unpack 'chdir
3947 (lambda _ (chdir "spams") #t))
3948 ;; Don't tune for the building machine.
3949 (add-after 'chdir 'no-mtune
3950 (lambda _
3951 (substitute* "src/Makevars"
3952 (("-mtune=native") ""))
3953 #t)))))
3954 (propagated-inputs
3955 `(("r-lattice" ,r-lattice)
3956 ("r-matrix" ,r-matrix)))
3957 (home-page "http://spams-devel.gforge.inria.fr")
3958 (synopsis "Toolbox for solving sparse estimation problems")
3959 (description "SPAMS (SPArse Modeling Software) is an optimization toolbox
3960 for solving various sparse estimation problems. It includes tools for the
3961 following problems:
3962
3963 @enumerate
3964 @item Dictionary learning and matrix factorization (NMF, sparse @dfn{principle
3965 component analysis} (PCA), ...)
3966 @item Solving sparse decomposition problems with LARS, coordinate descent,
3967 OMP, SOMP, proximal methods
3968 @item Solving structured sparse decomposition problems (l1/l2, l1/linf, sparse
3969 group lasso, tree-structured regularization, structured sparsity with
3970 overlapping groups,...).
3971 @end enumerate\n")
3972 (license license:gpl3+)))
3973
3974 (define-public r-base64
3975 (package
3976 (name "r-base64")
3977 (version "2.0")
3978 (source
3979 (origin
3980 (method url-fetch)
3981 (uri (cran-uri "base64" version))
3982 (sha256
3983 (base32
3984 "1labh0ycdm2xcjssj8bhnyjvbk44mcdsi0rb2p8rfqa428mrq9cf"))))
3985 (build-system r-build-system)
3986 (propagated-inputs
3987 `(("r-openssl" ,r-openssl)))
3988 (home-page "https://cran.r-project.org/web/packages/base64")
3989 (synopsis "Base64 encoder and decoder")
3990 (description
3991 "This package is a compatibility wrapper to replace the orphaned package
3992 by Romain Francois. New applications should use the openssl or base64enc
3993 package instead.")
3994 (license license:expat)))
3995
3996 (define-public r-hmisc
3997 (package
3998 (name "r-hmisc")
3999 (version "4.3-0")
4000 (source
4001 (origin
4002 (method url-fetch)
4003 (uri (cran-uri "Hmisc" version))
4004 (sha256
4005 (base32 "0rb1m6138lqzb46nss9ggvhghipd10vdnwsy6iq2wzynrynzkwkz"))))
4006 (properties `((upstream-name . "Hmisc")))
4007 (build-system r-build-system)
4008 (native-inputs
4009 `(("gfortran" ,gfortran)))
4010 (propagated-inputs
4011 `(("r-acepack" ,r-acepack)
4012 ("r-base64enc" ,r-base64enc)
4013 ("r-cluster" ,r-cluster)
4014 ("r-data-table" ,r-data-table)
4015 ("r-foreign" ,r-foreign)
4016 ("r-formula" ,r-formula)
4017 ("r-ggplot2" ,r-ggplot2)
4018 ("r-gridextra" ,r-gridextra)
4019 ("r-gtable" ,r-gtable)
4020 ("r-lattice" ,r-lattice)
4021 ("r-latticeextra" ,r-latticeextra)
4022 ("r-htmltable" ,r-htmltable)
4023 ("r-htmltools" ,r-htmltools)
4024 ("r-nnet" ,r-nnet)
4025 ("r-rpart" ,r-rpart)
4026 ("r-survival" ,r-survival)
4027 ("r-viridis" ,r-viridis)))
4028 (home-page "http://biostat.mc.vanderbilt.edu/Hmisc")
4029 (synopsis "Miscellaneous data analysis and graphics functions")
4030 (description
4031 "This package contains many functions useful for data analysis,
4032 high-level graphics, utility operations, functions for computing sample size
4033 and power, importing and annotating datasets, imputing missing values,
4034 advanced table making, variable clustering, character string manipulation,
4035 conversion of R objects to LaTeX code, and recoding variables.")
4036 (license license:gpl2+)))
4037
4038 (define-public r-runit
4039 (package
4040 (name "r-runit")
4041 (version "0.4.32")
4042 (source
4043 (origin
4044 (method url-fetch)
4045 (uri (cran-uri "RUnit" version))
4046 (sha256
4047 (base32
4048 "1wc1gwb7yw7phf8b0gkig6c23klya3ax11c6i4s0f049k42r78r3"))))
4049 (properties `((upstream-name . "RUnit")))
4050 (build-system r-build-system)
4051 (home-page "https://cran.r-project.org/web/packages/RUnit")
4052 (synopsis "R unit test framework")
4053 (description
4054 "This package provides R functions implementing a standard unit testing
4055 framework, with additional code inspection and report generation tools.")
4056 (license license:gpl2+)))
4057
4058 (define-public r-dynamictreecut
4059 (package
4060 (name "r-dynamictreecut")
4061 (version "1.63-1")
4062 (source
4063 (origin
4064 (method url-fetch)
4065 (uri (cran-uri "dynamicTreeCut" version))
4066 (sha256
4067 (base32
4068 "1fadbql7g5r2vvlkr89nlrjxwp4yx4xrdqmv077qvmnx9vv0f4w3"))))
4069 (properties `((upstream-name . "dynamicTreeCut")))
4070 (build-system r-build-system)
4071 (home-page
4072 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/BranchCutting/")
4073 (synopsis "Detect clusters in hierarchical clustering dendrograms")
4074 (description
4075 "This package contains methods for the detection of clusters in
4076 hierarchical clustering dendrograms.")
4077 (license license:gpl2+)))
4078
4079 (define-public r-preprocesscore
4080 (package
4081 (name "r-preprocesscore")
4082 (version "1.48.0")
4083 (source
4084 (origin
4085 (method url-fetch)
4086 (uri (bioconductor-uri "preprocessCore" version))
4087 (sha256
4088 (base32
4089 "0zrb9hx60vppkg0priczdb301nhq5f0dj8lkc8rcc4xrqqr915qm"))))
4090 (properties
4091 `((upstream-name . "preprocessCore")))
4092 (build-system r-build-system)
4093 (home-page "https://github.com/bmbolstad/preprocessCore")
4094 (synopsis "Collection of pre-processing functions")
4095 (description
4096 "This package provides a library of core pre-processing and normalization
4097 routines.")
4098 (license license:lgpl2.0+)))
4099
4100 (define-public r-fastcluster
4101 (package
4102 (name "r-fastcluster")
4103 (version "1.1.25")
4104 (source
4105 (origin
4106 (method url-fetch)
4107 (uri (cran-uri "fastcluster" version))
4108 (sha256
4109 (base32
4110 "01a2xnhhvv1swd4g8p4lzyn7ww7kg49jlnzc7kfz60jqjzpisrpk"))))
4111 (build-system r-build-system)
4112 (home-page "http://danifold.net/fastcluster.html")
4113 (synopsis "Fast hierarchical clustering routines")
4114 (description
4115 "This package implements fast hierarchical, agglomerative clustering
4116 routines. Part of the functionality is designed as drop-in replacement for
4117 existing routines: @code{linkage()} in the SciPy package
4118 @code{scipy.cluster.hierarchy}, @code{hclust()} in R's @code{stats} package,
4119 and the @code{flashClust} package. It provides the same functionality with
4120 the benefit of a much faster implementation. Moreover, there are
4121 memory-saving routines for clustering of vector data, which go beyond what the
4122 existing packages provide.")
4123 (license license:bsd-2)))
4124
4125 (define-public r-sfsmisc
4126 (package
4127 (name "r-sfsmisc")
4128 (version "1.1-4")
4129 (source
4130 (origin
4131 (method url-fetch)
4132 (uri (cran-uri "sfsmisc" version))
4133 (sha256
4134 (base32
4135 "0zaw617zarmwir8l60riky0z6r1j3mwfnm1f32vqcbljb74akdj4"))))
4136 (build-system r-build-system)
4137 (home-page "https://cran.r-project.org/web/packages/sfsmisc")
4138 (synopsis "Utilities from \"Seminar fuer Statistik\" ETH Zurich")
4139 (description
4140 "This package provides useful utilities from Seminar fuer Statistik ETH
4141 Zurich, including many that are related to graphics.")
4142 (license license:gpl2+)))
4143
4144 (define-public r-gtools
4145 (package
4146 (name "r-gtools")
4147 (version "3.8.1")
4148 (source
4149 (origin
4150 (method url-fetch)
4151 (uri (cran-uri "gtools" version))
4152 (sha256
4153 (base32
4154 "0f5syk1qq6cjq6hwymvkiyhzwa389z94722v881ipbfqkd2q8505"))))
4155 (build-system r-build-system)
4156 (arguments
4157 `(#:phases
4158 (modify-phases %standard-phases
4159 (add-after 'unpack 'make-deterministic
4160 (lambda _
4161 (substitute* "R/checkReverseDependencies.R"
4162 (("tempdir\\(\\)") "\"/tmp\""))
4163 #t)))))
4164 (home-page "https://cran.r-project.org/web/packages/gtools")
4165 (synopsis "Various R programming tools")
4166 (description
4167 "This package contains a collection of various functions to assist in R
4168 programming, such as tools to assist in developing, updating, and maintaining
4169 R and R packages, calculating the logit and inverse logit transformations,
4170 tests for whether a value is missing, empty or contains only @code{NA} and
4171 @code{NULL} values, and many more.")
4172 (license license:gpl2)))
4173
4174 (define-public r-gdata
4175 (package
4176 (name "r-gdata")
4177 (version "2.18.0")
4178 (source
4179 (origin
4180 (method url-fetch)
4181 (uri (cran-uri "gdata" version))
4182 (sha256
4183 (base32
4184 "0zwdj7lscgxr8r62ii8hbdh4mb7sa9w4f5nv32zzrxdvymcpya2b"))))
4185 (build-system r-build-system)
4186 (inputs
4187 `(("perl" ,perl)))
4188 (propagated-inputs
4189 `(("r-gtools" ,r-gtools)))
4190 (home-page "https://cran.r-project.org/web/packages/gdata")
4191 (synopsis "Various R programming tools for data manipulation")
4192 (description
4193 "This package provides various R programming tools for data manipulation,
4194 including:
4195
4196 @itemize
4197 @item medical unit conversions
4198 @item combining objects
4199 @item character vector operations
4200 @item factor manipulation
4201 @item obtaining information about R objects
4202 @item manipulating MS-Excel formatted files
4203 @item generating fixed-width format files
4204 @item extricating components of date and time objects
4205 @item operations on columns of data frames
4206 @item matrix operations
4207 @item operations on vectors and data frames
4208 @item value of last evaluated expression
4209 @item wrapper for @code{sample} that ensures consistent behavior for
4210 both scalar and vector arguments
4211 @end itemize\n")
4212 (license license:gpl2+)))
4213
4214 (define-public r-gplots
4215 (package
4216 (name "r-gplots")
4217 (version "3.0.1.2")
4218 (source
4219 (origin
4220 (method url-fetch)
4221 (uri (cran-uri "gplots" version))
4222 (sha256
4223 (base32
4224 "0vrm7wqrmqsmfrc070r9chpzb0vv60pay2lyar9qxfry6bsrvx86"))))
4225 (build-system r-build-system)
4226 (propagated-inputs
4227 `(("r-catools" ,r-catools)
4228 ("r-gdata" ,r-gdata)
4229 ("r-gtools" ,r-gtools)
4230 ("r-kernsmooth" ,r-kernsmooth)))
4231 (home-page "https://cran.r-project.org/web/packages/gplots")
4232 (synopsis "Various R programming tools for plotting data")
4233 (description
4234 "This package provides various R programming tools for plotting data,
4235 including:
4236
4237 @itemize
4238 @item calculating and plotting locally smoothed summary function
4239 @item enhanced versions of standard plots
4240 @item manipulating colors
4241 @item calculating and plotting two-dimensional data summaries
4242 @item enhanced regression diagnostic plots
4243 @item formula-enabled interface to @code{stats::lowess} function
4244 @item displaying textual data in plots
4245 @item balloon plots
4246 @item plotting \"Venn\" diagrams
4247 @item displaying Open-Office style plots
4248 @item plotting multiple data on same region, with separate axes
4249 @item plotting means and confidence intervals
4250 @item spacing points in an x-y plot so they don't overlap
4251 @end itemize\n")
4252 (license license:gpl2+)))
4253
4254 (define-public r-rocr
4255 (package
4256 (name "r-rocr")
4257 (version "1.0-7")
4258 (source
4259 (origin
4260 (method url-fetch)
4261 (uri (cran-uri "ROCR" version))
4262 (sha256
4263 (base32
4264 "1jay8cm7lgq56i967vm5c2hgaxqkphfpip0gn941li3yhh7p3vz7"))))
4265 (properties `((upstream-name . "ROCR")))
4266 (build-system r-build-system)
4267 (propagated-inputs
4268 `(("r-gplots" ,r-gplots)))
4269 (home-page "http://rocr.bioinf.mpi-sb.mpg.de/")
4270 (synopsis "Visualizing the performance of scoring classifiers")
4271 (description
4272 "ROCR is a flexible tool for creating cutoff-parameterized 2D performance
4273 curves by freely combining two from over 25 performance measures (new
4274 performance measures can be added using a standard interface). Curves from
4275 different cross-validation or bootstrapping runs can be averaged by different
4276 methods, and standard deviations, standard errors or box plots can be used to
4277 visualize the variability across the runs. The parameterization can be
4278 visualized by printing cutoff values at the corresponding curve positions, or
4279 by coloring the curve according to cutoff. All components of a performance
4280 plot can be quickly adjusted using a flexible parameter dispatching
4281 mechanism.")
4282 (license license:gpl2+)))
4283
4284 (define-public r-zoo
4285 (package
4286 (name "r-zoo")
4287 (version "1.8-7")
4288 (source (origin
4289 (method url-fetch)
4290 (uri (cran-uri "zoo" version))
4291 (sha256
4292 (base32
4293 "1w4542zs53bm261g95086a60576v334g1jrhnbgdqni4izf2s1wy"))))
4294 (build-system r-build-system)
4295 (propagated-inputs
4296 `(("r-lattice" ,r-lattice)))
4297 (home-page "http://zoo.R-Forge.R-project.org/")
4298 (synopsis "S3 infrastructure for regular and irregular time series")
4299 (description "This package contains an S3 class with methods for totally
4300 ordered indexed observations. It is particularly aimed at irregular time
4301 series of numeric vectors/matrices and factors.")
4302 (license license:gpl2+)))
4303
4304 (define-public r-ztable
4305 (package
4306 (name "r-ztable")
4307 (version "0.2.0")
4308 (source (origin
4309 (method url-fetch)
4310 (uri (cran-uri "ztable" version))
4311 (sha256
4312 (base32
4313 "0g7khk5ifsdh9p31wlwh2l5mn1hzxzpv6qcn1wh34vsfjdmijjwy"))))
4314 (build-system r-build-system)
4315 (propagated-inputs
4316 `(("r-flextable" ,r-flextable)
4317 ("r-magrittr" ,r-magrittr)
4318 ("r-moonbook" ,r-moonbook)
4319 ("r-officer" ,r-officer)
4320 ("r-rcolorbrewer" ,r-rcolorbrewer)
4321 ("r-scales" ,r-scales)
4322 ("r-stringr" ,r-stringr)))
4323 (home-page "https://cran.r-project.org/web/packages/ztable")
4324 (synopsis "Zebra-striped tables in LaTeX and HTML formats for R")
4325 (description
4326 "This package provides functions to make zebra-striped tables (tables
4327 with alternating row colors) in LaTeX and HTML formats easily from
4328 @code{data.frame}, @code{matrix}, @code{lm}, @code{aov}, @code{anova},
4329 @code{glm}, @code{coxph}, @code{nls}, @code{fitdistr}, @code{mytable} and
4330 @code{cbind.mytable} objects.")
4331 (license license:gpl2+)))
4332
4333 (define-public r-vipor
4334 (package
4335 (name "r-vipor")
4336 (version "0.4.5")
4337 (source (origin
4338 (method url-fetch)
4339 (uri (cran-uri "vipor" version))
4340 (sha256
4341 (base32
4342 "112gc0d7f8iavgf56pnzfxb7hy75yhd0zlyjzshdcfbnqcd2a6bx"))))
4343 (build-system r-build-system)
4344 (home-page "https://cran.r-project.org/web/packages/vipor")
4345 (synopsis "Plot categorical data using noise and density estimates")
4346 (description
4347 "This package provides tools to generate a violin point plot, a
4348 combination of a violin/histogram plot and a scatter plot by offsetting points
4349 within a category based on their density using quasirandom noise.")
4350 (license license:gpl2+)))
4351
4352 (define-public r-beeswarm
4353 (package
4354 (name "r-beeswarm")
4355 (version "0.2.3")
4356 (source (origin
4357 (method url-fetch)
4358 (uri (cran-uri "beeswarm" version))
4359 (sha256
4360 (base32
4361 "0hy89bwv7jixlg91li1fywa77916am2whqp1m1fx1khd45g44581"))))
4362 (build-system r-build-system)
4363 (home-page "http://www.cbs.dtu.dk/~eklund/beeswarm/")
4364 (synopsis "Implementation of bee swarm plots")
4365 (description
4366 "This package provides an implementation of bee swarm plots. The bee
4367 swarm plot is a one-dimensional scatter plot like stripchart, but with
4368 closely-packed, non-overlapping points.")
4369 (license license:artistic2.0)))
4370
4371 (define-public r-sourcetools
4372 (package
4373 (name "r-sourcetools")
4374 (version "0.1.7")
4375 (source
4376 (origin
4377 (method url-fetch)
4378 (uri (cran-uri "sourcetools" version))
4379 (sha256
4380 (base32
4381 "1jnjir0q2dj724f1mjm6p5h77yzyx6xcqy9r2g7gmcxkxw349627"))))
4382 (build-system r-build-system)
4383 (home-page "https://cran.r-project.org/web/packages/sourcetools")
4384 (synopsis "Tools for reading, tokenizing and parsing R code")
4385 (description
4386 "The sourcetools package provides both an R and C++ interface for the
4387 tokenization of R code, and helpers for interacting with the tokenized
4388 representation of R code.")
4389 (license license:expat)))
4390
4391 (define-public r-ggbeeswarm
4392 (package
4393 (name "r-ggbeeswarm")
4394 (version "0.6.0")
4395 (source (origin
4396 (method url-fetch)
4397 (uri (cran-uri "ggbeeswarm" version))
4398 (sha256
4399 (base32
4400 "0crk29p5vi1r3a988kms4y7r0iqwgwzsikgvh18r9wbzyr98bb5v"))))
4401 (build-system r-build-system)
4402 (propagated-inputs
4403 `(("r-beeswarm" ,r-beeswarm)
4404 ("r-ggplot2" ,r-ggplot2)
4405 ("r-vipor" ,r-vipor)))
4406 (home-page "https://github.com/eclarke/ggbeeswarm")
4407 (synopsis "Categorical scatter (violin point) plots")
4408 (description
4409 "This package provides two methods of plotting categorical scatter plots
4410 such that the arrangement of points within a category reflects the density of
4411 data at that region, and avoids over-plotting.")
4412 (license license:gpl2+)))
4413
4414 (define-public r-ggthemes
4415 (package
4416 (name "r-ggthemes")
4417 (version "4.2.0")
4418 (source (origin
4419 (method url-fetch)
4420 (uri (cran-uri "ggthemes" version))
4421 (sha256
4422 (base32
4423 "0rrkzfggc1nlda1w1lbqdycx6nawxbkac1szhvkwrqlzh6agxcsv"))))
4424 (build-system r-build-system)
4425 (propagated-inputs
4426 `(("r-ggplot2" ,r-ggplot2)
4427 ("r-purrr" ,r-purrr)
4428 ("r-scales" ,r-scales)
4429 ("r-stringr" ,r-stringr)
4430 ("r-tibble" ,r-tibble)))
4431 (home-page "https://cran.rstudio.com/web/packages/ggthemes")
4432 (synopsis "Extra themes, scales and geoms for @code{ggplot2}")
4433 (description "This package provides extra themes and scales for
4434 @code{ggplot2} that replicate the look of plots by Edward Tufte and
4435 Stephen Few in Fivethirtyeight, The Economist, Stata, Excel, and The
4436 Wall Street Journal, among others. This package also provides
4437 @code{geoms} for Tufte's box plot and range frame.")
4438 (license license:gpl2)))
4439
4440 (define-public r-statmod
4441 (package
4442 (name "r-statmod")
4443 (version "1.4.33")
4444 (source (origin
4445 (method url-fetch)
4446 (uri (cran-uri "statmod" version))
4447 (sha256
4448 (base32
4449 "1fbi5m4c0lingm2vvi0g6jf8f2mg1h01xwyz5rnymrq7gs0ibiks"))))
4450 (build-system r-build-system)
4451 (home-page "https://cran.r-project.org/web/packages/statmod")
4452 (native-inputs
4453 `(("gfortran" ,gfortran)))
4454 (synopsis "Statistical modeling")
4455 (description
4456 "This package provides a collection of algorithms and functions to aid
4457 statistical modeling. It includes growth curve comparisons, limiting dilution
4458 analysis (aka ELDA), mixed linear models, heteroscedastic regression,
4459 inverse-Gaussian probability calculations, Gauss quadrature and a secure
4460 convergence algorithm for nonlinear models. It also includes advanced
4461 generalized linear model functions that implement secure convergence,
4462 dispersion modeling and Tweedie power-law families.")
4463 ;; Statmod is distributed under either license
4464 (license (list license:gpl2 license:gpl3))))
4465
4466 (define-public r-rann
4467 (package
4468 (name "r-rann")
4469 (version "2.6.1")
4470 (source (origin
4471 (method url-fetch)
4472 (uri (cran-uri "RANN" version))
4473 (sha256
4474 (base32
4475 "10kid40w9w7vkz2hpcfkdpxr4afxzms5dzvfwr0sl5xynzgw76dj"))))
4476 (properties
4477 `((upstream-name . "RANN")))
4478 (build-system r-build-system)
4479 (home-page "https://github.com/jefferis/RANN")
4480 (synopsis "Fast nearest neighbour search")
4481 (description
4482 "This package finds the k nearest neighbours for every point in a given
4483 dataset in O(N log N) time using Arya and Mount's ANN library. Provides
4484 approximate, exact searches, fixed radius searches, bd and kb trees.")
4485 (license license:gpl3+)))
4486
4487 (define-public r-fivethirtyeight
4488 (package
4489 (name "r-fivethirtyeight")
4490 (version "0.1.0")
4491 (source
4492 (origin
4493 (method url-fetch)
4494 (uri (string-append "https://mran.microsoft.com/src/contrib/"
4495 "fivethirtyeight_" version ".tar.gz"))
4496 (sha256
4497 (base32
4498 "0fcc8rq745nsghp27dk0lgih90y4zx8hrzcvsn6ih786yv7qxhvl"))))
4499 (build-system r-build-system)
4500 (propagated-inputs
4501 `(("r-knitr" ,r-knitr)
4502 ("r-rmarkdown" ,r-rmarkdown)
4503 ("r-dplyr" ,r-dplyr)
4504 ("r-readr" ,r-readr)
4505 ("r-ggplot2" ,r-ggplot2)
4506 ("r-magrittr" ,r-magrittr)
4507 ("r-stringr" ,r-stringr)))
4508 (home-page "https://mran.microsoft.com/package/fivethirtyeight/")
4509 (synopsis "Data and code behind the stories at FiveThirtyEight")
4510 (description "This R package provides access to the code and data sets
4511 published by the statistics blog FiveThirtyEight.")
4512 (license license:expat)))
4513
4514 (define-public r-compquadform
4515 (package
4516 (name "r-compquadform")
4517 (version "1.4.3")
4518 (source
4519 (origin
4520 (method url-fetch)
4521 (uri (cran-uri "CompQuadForm" version))
4522 (sha256
4523 (base32
4524 "1i30hrqdk64q17vsn918c3q79brchgx2wzh1gbsgbn0dh1ncabq4"))))
4525 (properties `((upstream-name . "CompQuadForm")))
4526 (build-system r-build-system)
4527 (home-page "https://cran.r-project.org/web/packages/CompQuadForm")
4528 (synopsis "Distribution function of quadratic forms in normal variables")
4529 (description
4530 "This package provides functions to compute the distribution function of
4531 quadratic forms in normal variables using Imhof's method, Davies's algorithm,
4532 Farebrother's algorithm or Liu et al.'s algorithm.")
4533 (license license:gpl2+)))
4534
4535 (define-public r-cowplot
4536 (package
4537 (name "r-cowplot")
4538 (version "1.0.0")
4539 (source
4540 (origin
4541 (method url-fetch)
4542 (uri (cran-uri "cowplot" version))
4543 (sha256
4544 (base32
4545 "19cqdhgfyr1wj0fz0c5ly8f0aiy9sfgzq6lzb78hkx0hdp2agybh"))))
4546 (build-system r-build-system)
4547 (propagated-inputs
4548 `(("r-ggplot2" ,r-ggplot2)
4549 ("r-gtable" ,r-gtable)
4550 ("r-rlang" ,r-rlang)
4551 ("r-scales" ,r-scales)))
4552 (home-page "https://github.com/wilkelab/cowplot")
4553 (synopsis "Streamlined plot theme and plot annotations for ggplot2")
4554 (description
4555 "This package provides some helpful extensions and modifications to the
4556 ggplot2 package to combine multiple ggplot2 plots into one and label them with
4557 letters, as is often required for scientific publications.")
4558 (license license:gpl2)))
4559
4560 (define-public r-mixtools
4561 (package
4562 (name "r-mixtools")
4563 (version "1.1.0")
4564 (source
4565 (origin
4566 (method url-fetch)
4567 (uri (cran-uri "mixtools" version))
4568 (sha256
4569 (base32
4570 "13wdm0xs5bakhpa8ypg6lvhjaqkxyabwz4glxdwn0jwdvkcdhgsl"))))
4571 (build-system r-build-system)
4572 (propagated-inputs
4573 `(("r-mass" ,r-mass)
4574 ("r-segmented" ,r-segmented)
4575 ("r-survival" ,r-survival)))
4576 (home-page "https://cran.r-project.org/web/packages/mixtools")
4577 (synopsis "Tools for analyzing finite mixture models")
4578 (description
4579 "This package provides a collection of R functions for analyzing finite
4580 mixture models.")
4581 (license license:gpl2+)))
4582
4583 (define-public r-lars
4584 (package
4585 (name "r-lars")
4586 (version "1.2")
4587 (source
4588 (origin
4589 (method url-fetch)
4590 (uri (cran-uri "lars" version))
4591 (sha256
4592 (base32
4593 "0blj44wqrx6lmym1m9v6wkz8zxzbjax2zl6swgdczci0ixb5nx34"))))
4594 (build-system r-build-system)
4595 (inputs
4596 `(("gfortran" ,gfortran)))
4597 (home-page "http://www-stat.stanford.edu/~hastie/Papers/#LARS")
4598 (synopsis "Least angle regression software")
4599 (description
4600 "Least Angle Regression (\"LAR\") is a model selection algorithm; a
4601 useful and less greedy version of traditional forward selection methods. A
4602 simple modification of the LAR algorithm implements Tibshirani's Lasso; the
4603 Lasso modification of LARS calculates the entire Lasso path of coefficients
4604 for a given problem at the cost of a single least squares fit. Another LARS
4605 modification efficiently implements epsilon Forward Stagewise linear
4606 regression.")
4607 (license license:gpl2)))
4608
4609 (define-public r-fastica
4610 (package
4611 (name "r-fastica")
4612 (version "1.2-2")
4613 (source
4614 (origin
4615 (method url-fetch)
4616 (uri (cran-uri "fastICA" version))
4617 (sha256
4618 (base32
4619 "1zpijqcipm0aa3rxj0mys06lskqy4dbppjpxr1aby0j16y9ka8ij"))))
4620 (properties `((upstream-name . "fastICA")))
4621 (build-system r-build-system)
4622 (home-page "https://cran.r-project.org/web/packages/fastICA")
4623 (synopsis "FastICA algorithms to perform ICA and projection pursuit")
4624 (description
4625 "This package provides an implementation of the FastICA algorithm to
4626 perform @dfn{independent component analysis} (ICA) and projection pursuit.")
4627 ;; Any GPL version.
4628 (license license:gpl3+)))
4629
4630 (define-public r-randomforest
4631 (package
4632 (name "r-randomforest")
4633 (version "4.6-14")
4634 (source
4635 (origin
4636 (method url-fetch)
4637 (uri (cran-uri "randomForest" version))
4638 (sha256
4639 (base32
4640 "0kbmm0l42fc2d1rdq0l7k09d34kd87q4lx651ffsic4y84h8kf7l"))))
4641 (properties `((upstream-name . "randomForest")))
4642 (build-system r-build-system)
4643 (home-page "https://www.stat.berkeley.edu/~breiman/RandomForests/")
4644 (native-inputs
4645 `(("gfortran" ,gfortran)))
4646 (synopsis "Breiman and Cutler's random forests for classification and regression")
4647 (description
4648 "This package provides the Breiman and Cutler's random forests algorithm, based on a
4649 forest of trees using random inputs, for classification and regression.")
4650 (license license:gpl2+)))
4651
4652 (define-public r-diptest
4653 (package
4654 (name "r-diptest")
4655 (version "0.75-7")
4656 (source
4657 (origin
4658 (method url-fetch)
4659 (uri (cran-uri "diptest" version))
4660 (sha256
4661 (base32
4662 "06xnc5gv1284ll0addxnxb6ljz6fn8dbyrp5vchyz6551h800aa6"))))
4663 (build-system r-build-system)
4664 (home-page "https://cran.r-project.org/web/packages/diptest")
4665 (synopsis "Hartigan's dip test statistic for unimodality")
4666 (description
4667 "This package computes Hartigan's dip test statistic for unimodality,
4668 multimodality and provides a test with simulation based p-values, where the
4669 original public code has been corrected.")
4670 (license license:gpl2+)))
4671
4672 (define-public r-modeltools
4673 (package
4674 (name "r-modeltools")
4675 (version "0.2-22")
4676 (source
4677 (origin
4678 (method url-fetch)
4679 (uri (cran-uri "modeltools" version))
4680 (sha256
4681 (base32
4682 "1s9lmkac3rl0nknf4wizfhg7ryq7c8yvvyc4z619238br27hhsi5"))))
4683 (build-system r-build-system)
4684 (home-page "https://cran.r-project.org/web/packages/modeltools")
4685 (synopsis "Tools and classes for statistical models")
4686 (description
4687 "This package provides a collection of tools to deal with statistical
4688 models. The functionality is experimental and the user interface is likely
4689 to change in the future.")
4690 (license license:gpl2)))
4691
4692 (define-public r-flexmix
4693 (package
4694 (name "r-flexmix")
4695 (version "2.3-15")
4696 (source
4697 (origin
4698 (method url-fetch)
4699 (uri (cran-uri "flexmix" version))
4700 (sha256
4701 (base32
4702 "0hrz2axp2c9548b1r0bmrl57219nn030qndb83a8garkzq5lqi5s"))))
4703 (build-system r-build-system)
4704 (propagated-inputs
4705 `(("r-lattice" ,r-lattice)
4706 ("r-modeltools" ,r-modeltools)
4707 ("r-nnet" ,r-nnet)))
4708 (home-page "https://cran.r-project.org/web/packages/flexmix")
4709 (synopsis "Flexible mixture modeling")
4710 (description
4711 "This package implements a general framework for finite mixtures of
4712 regression models using the EM algorithm. FlexMix provides the E-step and
4713 all data handling, while the M-step can be supplied by the user to easily
4714 define new models. Existing drivers implement mixtures of standard linear
4715 models, generalized linear models and model-based clustering.")
4716 (license license:gpl2+)))
4717
4718 (define-public r-mclust
4719 (package
4720 (name "r-mclust")
4721 (version "5.4.5")
4722 (source
4723 (origin
4724 (method url-fetch)
4725 (uri (cran-uri "mclust" version))
4726 (sha256
4727 (base32
4728 "0whandnda1fnjn5k3hgxdbp3b0xr7nlzy1j37saqb536h8q9dwkm"))))
4729 (build-system r-build-system)
4730 (native-inputs
4731 `(("gfortran" ,gfortran)))
4732 (home-page "http://www.stat.washington.edu/mclust/")
4733 (synopsis "Gaussian mixture modelling for model-based clustering etc.")
4734 (description
4735 "This package provides Gaussian finite mixture models fitted via EM
4736 algorithm for model-based clustering, classification, and density estimation,
4737 including Bayesian regularization, dimension reduction for visualisation,
4738 and resampling-based inference.")
4739 (license license:gpl2+)))
4740
4741 (define-public r-prabclus
4742 (package
4743 (name "r-prabclus")
4744 (version "2.3-2")
4745 (source
4746 (origin
4747 (method url-fetch)
4748 (uri (cran-uri "prabclus" version))
4749 (sha256
4750 (base32
4751 "0hg4d7y1w18jpgvw10z8833bbbcnlkwiasx0wh6iwa2pnnybq8gl"))))
4752 (build-system r-build-system)
4753 (propagated-inputs
4754 `(("r-mass" ,r-mass)
4755 ("r-mclust" ,r-mclust)))
4756 (home-page "https://cran.r-project.org/web/packages/prabclus")
4757 (synopsis "Parametric bootstrap tests for spatial neighborhood clustering")
4758 (description
4759 "This package provides distance-based parametric bootstrap tests for
4760 clustering with spatial neighborhood information. It implements some distance
4761 measures, clustering of presence-absence, abundance and multilocus genetical
4762 data for species delimitation, nearest neighbor based noise detection.")
4763 (license license:gpl2+)))
4764
4765 (define-public r-deoptimr
4766 (package
4767 (name "r-deoptimr")
4768 (version "1.0-8")
4769 (source
4770 (origin
4771 (method url-fetch)
4772 (uri (cran-uri "DEoptimR" version))
4773 (sha256
4774 (base32
4775 "1vz546hyjyhly70z62h5n3mn62b8llhhmim8ffp9y6jnnb0i2sc4"))))
4776 (properties `((upstream-name . "DEoptimR")))
4777 (build-system r-build-system)
4778 (home-page "https://cran.r-project.org/web/packages/DEoptimR")
4779 (synopsis "Differential evolution optimization in pure R")
4780 (description
4781 "This package provides a differential evolution (DE) stochastic
4782 algorithms for global optimization of problems with and without constraints.
4783 The aim is to curate a collection of its state-of-the-art variants that (1) do
4784 not sacrifice simplicity of design, (2) are essentially tuning-free, and (3)
4785 can be efficiently implemented directly in the R language.")
4786 (license license:gpl2+)))
4787
4788 (define-public r-robustbase
4789 (package
4790 (name "r-robustbase")
4791 (version "0.93-5")
4792 (source
4793 (origin
4794 (method url-fetch)
4795 (uri (cran-uri "robustbase" version))
4796 (sha256
4797 (base32
4798 "0mkzbsjl5nihyj7mzks14p6kr3spp44xvygjz4ran11gspdn9rdx"))))
4799 (build-system r-build-system)
4800 (native-inputs
4801 `(("gfortran" ,gfortran)))
4802 (propagated-inputs
4803 `(("r-deoptimr" ,r-deoptimr)))
4804 (home-page "http://robustbase.r-forge.r-project.org/")
4805 (synopsis "Basic robust statistics")
4806 (description
4807 "This package allows to analyze data with robust methods such as
4808 regression methodology including model selections and multivariate statistics.")
4809 (license license:gpl2+)))
4810
4811 (define-public r-pcapp
4812 (package
4813 (name "r-pcapp")
4814 (version "1.9-73")
4815 (source
4816 (origin
4817 (method url-fetch)
4818 (uri (cran-uri "pcaPP" version))
4819 (sha256
4820 (base32
4821 "1z2kdf9gfp965xbcd4rg6vf20d1bl443na0qjkpq7gmzpaq6cifa"))))
4822 (properties `((upstream-name . "pcaPP")))
4823 (build-system r-build-system)
4824 (propagated-inputs
4825 `(("r-mvtnorm" ,r-mvtnorm)))
4826 (home-page "https://cran.r-project.org/web/packages/pcaPP")
4827 (synopsis "Robust PCA by projection pursuit")
4828 (description
4829 "This package provides functions for robust @dfn{principal component
4830 analysis} (PCA) by projection pursuit.")
4831 (license license:gpl3+)))
4832
4833 (define-public r-rrcov
4834 (package
4835 (name "r-rrcov")
4836 (version "1.4-9")
4837 (source
4838 (origin
4839 (method url-fetch)
4840 (uri (cran-uri "rrcov" version))
4841 (sha256
4842 (base32
4843 "11zvxidlb1pr2j5dzvmbjqdgsmmicsq8ppjf5wcfykfyf2fkcmz7"))))
4844 (build-system r-build-system)
4845 (propagated-inputs
4846 `(("r-cluster" ,r-cluster)
4847 ("r-lattice" ,r-lattice)
4848 ("r-mvtnorm" ,r-mvtnorm)
4849 ("r-pcapp" ,r-pcapp)
4850 ("r-robustbase" ,r-robustbase)))
4851 (native-inputs
4852 `(("gfortran" ,gfortran)))
4853 (home-page "https://cran.r-project.org/web/packages/rrcov")
4854 (synopsis "Scalable robust estimators with high breakdown Point")
4855 (description
4856 "This package provides an implementation of robust location and scatter
4857 estimation and robust multivariate analysis with high breakdown point.")
4858 (license license:gpl2+)))
4859
4860 (define-public r-fit-models
4861 (package
4862 (name "r-fit-models")
4863 (version "0.5-14")
4864 (source
4865 (origin
4866 (method url-fetch)
4867 (uri (cran-uri "fit.models" version))
4868 (sha256
4869 (base32
4870 "0vjbzmx0ambm6yzidb4vbgmhclwzwv2iz2cwl54ccdkvx4cx3fck"))))
4871 (properties `((upstream-name . "fit.models")))
4872 (build-system r-build-system)
4873 (propagated-inputs
4874 `(("r-lattice" ,r-lattice)))
4875 (home-page "https://cran.r-project.org/web/packages/fit.models")
4876 (synopsis "Compare fitted models")
4877 (description
4878 "The @code{fit.models} function and its associated methods (coefficients, print,
4879 summary, plot, etc.) were originally provided in the @code{robust} package to
4880 compare robustly and classically fitted model objects. The aim of the
4881 @code{fit.models} package is to separate this fitted model object comparison
4882 functionality from the robust package and to extend it to support fitting
4883 methods (e.g., classical, robust, Bayesian, regularized, etc.) more
4884 generally.")
4885 ;; Any version of the GPL
4886 (license (list license:gpl2+ license:gpl3+))))
4887
4888 (define-public r-robust
4889 (package
4890 (name "r-robust")
4891 (version "0.4-18.2")
4892 (source
4893 (origin
4894 (method url-fetch)
4895 (uri (cran-uri "robust" version))
4896 (sha256
4897 (base32
4898 "02x7d6dgx3skiadvx5m3c44b4bhz37ycpfhc25dhhv50y1db6l3k"))))
4899 (build-system r-build-system)
4900 (propagated-inputs
4901 `(("r-fit-models" ,r-fit-models)
4902 ("r-lattice" ,r-lattice)
4903 ("r-mass" ,r-mass)
4904 ("r-robustbase" ,r-robustbase)
4905 ("r-rrcov" ,r-rrcov)))
4906 (native-inputs
4907 `(("gfortran" ,gfortran)))
4908 (home-page "https://cran.r-project.org/web/packages/robust")
4909 (synopsis "Port of the S+ \"Robust Library\"")
4910 (description
4911 "This package is a port of the S+ \"Robust Library\". It provides
4912 methods for robust statistics, notably for robust regression and robust
4913 multivariate analysis.")
4914 (license license:gpl2)))
4915
4916 (define-public r-trimcluster
4917 (package
4918 (name "r-trimcluster")
4919 (version "0.1-2.1")
4920 (source
4921 (origin
4922 (method url-fetch)
4923 (uri (cran-uri "trimcluster" version))
4924 (sha256
4925 (base32
4926 "0013bpyq6mkvjn38qsmwnsxfiwxgwngnqxycxvgpgmiadhm8fjmn"))))
4927 (build-system r-build-system)
4928 (home-page "https://cran.r-project.org/web/packages/trimcluster")
4929 (synopsis "Cluster analysis with trimming")
4930 (description
4931 "The trimmed k-means clustering method by Cuesta-Albertos, Gordaliza and
4932 Matran (1997). This optimizes the k-means criterion under trimming a portion
4933 of the points.")
4934 ;; Any GPL version
4935 (license (list license:gpl2+ license:gpl3+))))
4936
4937 (define-public r-fpc
4938 (package
4939 (name "r-fpc")
4940 (version "2.2-3")
4941 (source
4942 (origin
4943 (method url-fetch)
4944 (uri (cran-uri "fpc" version))
4945 (sha256
4946 (base32
4947 "1dy3pla4jjgs46izqg2kxajlxr80sbr9896jbzb1qszrdx7af041"))))
4948 (build-system r-build-system)
4949 (propagated-inputs
4950 `(("r-class" ,r-class)
4951 ("r-cluster" ,r-cluster)
4952 ("r-diptest" ,r-diptest)
4953 ("r-flexmix" ,r-flexmix)
4954 ("r-kernlab" ,r-kernlab)
4955 ("r-mass" ,r-mass)
4956 ("r-mclust" ,r-mclust)
4957 ("r-prabclus" ,r-prabclus)
4958 ("r-robustbase" ,r-robustbase)))
4959 (home-page "https://cran.r-project.org/web/packages/fpc")
4960 (synopsis "Flexible procedures for clustering")
4961 (description
4962 "This package provides various methods for clustering and cluster validation.
4963 For example, it provides fixed point clustering, linear regression clustering,
4964 clustering by merging Gaussian mixture components, as well as symmetric and
4965 asymmetric discriminant projections for visualisation of the separation of
4966 groupings.")
4967 (license license:gpl2+)))
4968
4969 (define-public r-vgam
4970 (package
4971 (name "r-vgam")
4972 (version "1.1-2")
4973 (source
4974 (origin
4975 (method url-fetch)
4976 (uri (cran-uri "VGAM" version))
4977 (sha256
4978 (base32 "0kyan3a4ys2xbg9kf167cyf1gk7g963id62cjm2ij4i7y4wi61zq"))))
4979 (properties `((upstream-name . "VGAM")))
4980 (build-system r-build-system)
4981 (inputs
4982 `(("gfortran" ,gfortran)))
4983 (home-page "https://www.stat.auckland.ac.nz/~yee/VGAM")
4984 (synopsis "Vector generalized linear and additive models")
4985 (description
4986 "This package is an implementation of about 6 major classes of statistical
4987 regression models. Currently only fixed-effects models are implemented, i.e.,
4988 no random-effects models. Many (150+) models and distributions are estimated
4989 by maximum likelihood estimation (MLE) or penalized MLE, using Fisher scoring.
4990 VGLMs can be loosely thought of as multivariate generalised linear models.")
4991 (license license:gpl2+)))
4992
4993 (define-public r-pbapply
4994 (package
4995 (name "r-pbapply")
4996 (version "1.4-2")
4997 (source
4998 (origin
4999 (method url-fetch)
5000 (uri (cran-uri "pbapply" version))
5001 (sha256
5002 (base32
5003 "1xmk4p006v8gij26rs6kp5prjyf2n32nqjxiyp8a6kvgyc4z46dc"))))
5004 (build-system r-build-system)
5005 (home-page "https://github.com/psolymos/pbapply")
5006 (synopsis "Adding progress bar to apply functions")
5007 (description
5008 "This lightweight package that adds progress bar to vectorized R
5009 functions apply. The implementation can easily be added to functions where
5010 showing the progress is useful e.g. bootstrap.")
5011 (license license:gpl2)))
5012
5013 (define-public r-minqa
5014 (package
5015 (name "r-minqa")
5016 (version "1.2.4")
5017 (source
5018 (origin
5019 (method url-fetch)
5020 (uri (cran-uri "minqa" version))
5021 (sha256
5022 (base32
5023 "036drja6xz7awja9iwb76x91415p26fb0jmg7y7v0p65m6j978fg"))))
5024 (build-system r-build-system)
5025 (propagated-inputs
5026 `(("r-rcpp" ,r-rcpp)))
5027 (inputs
5028 `(("gfortran" ,gfortran)))
5029 (home-page "http://optimizer.r-forge.r-project.org")
5030 (synopsis "Derivative-free optimization algorithms by quadratic approximation")
5031 (description
5032 "This package provides a derivative-free optimization by quadratic approximation
5033 based on an interface to Fortran implementations by M. J. D. Powell.")
5034 (license license:gpl2)))
5035
5036 (define-public r-rcppeigen
5037 (package
5038 (name "r-rcppeigen")
5039 (version "0.3.3.7.0")
5040 (source
5041 (origin
5042 (method url-fetch)
5043 (uri (cran-uri "RcppEigen" version))
5044 (sha256
5045 (base32
5046 "1b78qcjim0n9klgkr82n794d6bj9r9f33g0kcsszsns2hir65sk2"))))
5047 (properties `((upstream-name . "RcppEigen")))
5048 (build-system r-build-system)
5049 (propagated-inputs
5050 `(("r-rcpp" ,r-rcpp)
5051 ("r-matrix" ,r-matrix)))
5052 (home-page "http://eigen.tuxfamily.org")
5053 (synopsis "Rcpp integration for the Eigen templated linear algebra library")
5054 (description
5055 "This package provides an integration of Eigen in R using a C++ template
5056 library for linear algebra: matrices, vectors, numerical solvers and related algorithms.
5057 It supports dense and sparse matrices on integer, floating point and complex numbers,
5058 decompositions of such matrices, and solutions of linear systems.")
5059 (license license:gpl2+)))
5060
5061 (define-public r-modelmetrics
5062 (package
5063 (name "r-modelmetrics")
5064 (version "1.2.2.1")
5065 (source
5066 (origin
5067 (method url-fetch)
5068 (uri (cran-uri "ModelMetrics" version))
5069 (sha256
5070 (base32
5071 "17yw46yr0n9hddvlhh73jdpmpdlpa581n5xjpwkr6cpr2f7xxpqc"))))
5072 (properties `((upstream-name . "ModelMetrics")))
5073 (build-system r-build-system)
5074 (propagated-inputs
5075 `(("r-rcpp" ,r-rcpp)
5076 ("r-data-table" ,r-data-table)))
5077 (home-page "https://cran.r-project.org/web/packages/ModelMetrics")
5078 (synopsis "Rapid calculation of model metrics")
5079 (description
5080 "Written in C++ using @code{Rcpp}, this package provides a collection of
5081 metrics for evaluating models.")
5082 (license license:gpl2+)))
5083
5084 (define-public r-matrixmodels
5085 (package
5086 (name "r-matrixmodels")
5087 (version "0.4-1")
5088 (source
5089 (origin
5090 (method url-fetch)
5091 (uri (cran-uri "MatrixModels" version))
5092 (sha256
5093 (base32
5094 "0cyfvhci2p1vr2x52ymkyqqs63x1qchn856dh2j94yb93r08x1zy"))))
5095 (properties `((upstream-name . "MatrixModels")))
5096 (build-system r-build-system)
5097 (propagated-inputs
5098 `(("r-matrix" ,r-matrix)))
5099 (home-page "https://cran.r-project.org/web/packages/MatrixModels")
5100 (synopsis "Modelling with sparse and dense matrices")
5101 (description
5102 "This package models with sparse and dense matrix matrices,
5103 using modular prediction and response module classes.")
5104 (license license:gpl2+)))
5105
5106 (define-public r-quantreg
5107 (package
5108 (name "r-quantreg")
5109 (version "5.54")
5110 (source
5111 (origin
5112 (method url-fetch)
5113 (uri (cran-uri "quantreg" version))
5114 (sha256
5115 (base32 "19nh79qrkb75q348nk148l8wqjwnq5jgq29wpzqym5cfv1kjqfvh"))))
5116 (build-system r-build-system)
5117 (native-inputs
5118 `(("gfortran" ,gfortran)))
5119 (propagated-inputs
5120 `(("r-matrix" ,r-matrix)
5121 ("r-matrixmodels" ,r-matrixmodels)
5122 ("r-sparsem" ,r-sparsem)))
5123 (home-page "https://www.r-project.org")
5124 (synopsis "Quantile regression")
5125 (description
5126 "This package provides an estimation and inference methods for models
5127 of conditional quantiles: linear and nonlinear parametric and non-parametric
5128 models for conditional quantiles of a univariate response and several methods
5129 for handling censored survival data. Portfolio selection methods based on
5130 expected shortfall risk are also included.")
5131 (license license:gpl2+)))
5132
5133 (define-public r-nloptr
5134 (package
5135 (name "r-nloptr")
5136 (version "1.2.1")
5137 (source
5138 (origin
5139 (method url-fetch)
5140 (uri (cran-uri "nloptr" version))
5141 (sha256
5142 (base32
5143 "15yz60kljxwnhm2m3gryjzxl3ynhkhd5jiwc179b1hz6rlzf71hz"))))
5144 (build-system r-build-system)
5145 (native-inputs
5146 `(("r-knitr" ,r-knitr) ; for building vignettes
5147 ("pkg-config" ,pkg-config)
5148 ("gfortran" ,gfortran)))
5149 (inputs
5150 `(("nlopt" ,nlopt)))
5151 (home-page "https://cran.r-project.org/web/packages/nloptr")
5152 (synopsis "R interface to NLopt")
5153 (description
5154 "This package is interface to NLopt, a library for nonlinear
5155 optimization. NLopt is a library for nonlinear optimization, providing a
5156 common interface for a number of different free optimization routines
5157 available online as well as original implementations of various other
5158 algorithms.")
5159 (license license:lgpl3)))
5160
5161 (define-public r-lme4
5162 (package
5163 (name "r-lme4")
5164 (version "1.1-21")
5165 (source
5166 (origin
5167 (method url-fetch)
5168 (uri (cran-uri "lme4" version))
5169 (sha256
5170 (base32
5171 "035j2hqkwv939xl07pm2vykvf3wlx8qj317846n9pkpqkyv58mbz"))))
5172 (build-system r-build-system)
5173 (propagated-inputs
5174 `(("r-boot" ,r-boot)
5175 ("r-lattice" ,r-lattice)
5176 ("r-mass" ,r-mass)
5177 ("r-matrix" ,r-matrix)
5178 ("r-minqa" ,r-minqa)
5179 ("r-nloptr" ,r-nloptr)
5180 ("r-nlme" ,r-nlme)
5181 ("r-rcpp" ,r-rcpp)
5182 ("r-rcppeigen" ,r-rcppeigen)))
5183 (home-page "https://cran.r-project.org/web/packages/lme4")
5184 (synopsis "Linear mixed-effects models using eigen and S4")
5185 (description
5186 "This package provides fit linear and generalized linear mixed-effects
5187 models. The models and their components are represented using S4 classes and
5188 methods. The core computational algorithms are implemented using the Eigen
5189 C++ library for numerical linear algebra and RcppEigen glue.")
5190 (license license:gpl2+)))
5191
5192 (define-public r-pbkrtest
5193 (package
5194 (name "r-pbkrtest")
5195 (version "0.4-7")
5196 (source
5197 (origin
5198 (method url-fetch)
5199 (uri (cran-uri "pbkrtest" version))
5200 (sha256
5201 (base32
5202 "1si3bhi59xc51a0pgjjglccq3h4aljyhw2k1b8574s145fnh7fsw"))))
5203 (build-system r-build-system)
5204 (propagated-inputs
5205 `(("r-lme4" ,r-lme4)
5206 ("r-mass" ,r-mass)
5207 ("r-matrix" ,r-matrix)))
5208 (home-page "http://people.math.aau.dk/~sorenh/software/pbkrtest/")
5209 (synopsis "Methods for linear mixed model comparison")
5210 (description
5211 "This package implements a parametric bootstrap test and a Kenward Roger
5212 modification of F-tests for linear mixed effects models and a parametric
5213 bootstrap test for generalized linear mixed models.")
5214 (license license:gpl2+)))
5215
5216 (define-public r-cardata
5217 (package
5218 (name "r-cardata")
5219 (version "3.0-3")
5220 (source
5221 (origin
5222 (method url-fetch)
5223 (uri (cran-uri "carData" version))
5224 (sha256
5225 (base32 "0cg2yxzn0pdjqykr60my1fzpfkqac21fll5hv3m9w5c9sayq8swq"))))
5226 (properties `((upstream-name . "carData")))
5227 (build-system r-build-system)
5228 (home-page "https://r-forge.r-project.org/projects/car/")
5229 (synopsis "Data Sets for the book Companion to Applied Regression")
5230 (description
5231 "This package provides datasets to accompany J. Fox and S. Weisberg, An R
5232 Companion to Applied Regression, Third Edition, Sage.")
5233 (license license:gpl2+)))
5234
5235 (define-public r-car
5236 (package
5237 (name "r-car")
5238 (version "3.0-6")
5239 (source
5240 (origin
5241 (method url-fetch)
5242 (uri (cran-uri "car" version))
5243 (sha256
5244 (base32 "0yv5mwaa0ymrbis9590mx0zcj3w6j4drhs6ab13zhx4zc3x1b7b6"))))
5245 (build-system r-build-system)
5246 (propagated-inputs
5247 `(("r-abind" ,r-abind)
5248 ("r-cardata" ,r-cardata)
5249 ("r-lme4" ,r-lme4)
5250 ("r-maptools" ,r-maptools)
5251 ("r-mass" ,r-mass)
5252 ("r-mgcv" ,r-mgcv)
5253 ("r-nlme" ,r-nlme)
5254 ("r-nnet" ,r-nnet)
5255 ("r-pbkrtest" ,r-pbkrtest)
5256 ("r-quantreg" ,r-quantreg)
5257 ("r-rio" ,r-rio)))
5258 (home-page "https://r-forge.r-project.org/projects/car/")
5259 (synopsis "Companion to applied regression")
5260 (description
5261 "This package provides functions and datasets from book Companion
5262 to Applied regression, Second Edition, Sage, 2011.")
5263 (license license:gpl2+)))
5264
5265 (define-public r-rcppprogress
5266 (package
5267 (name "r-rcppprogress")
5268 (version "0.4.1")
5269 (source
5270 (origin
5271 (method url-fetch)
5272 (uri (cran-uri "RcppProgress" version))
5273 (sha256
5274 (base32
5275 "0yk01hfv961zyp569682k9igvhnwqyg5j0n5fm63sxigj82l2xhi"))))
5276 (properties `((upstream-name . "RcppProgress")))
5277 (build-system r-build-system)
5278 (propagated-inputs
5279 `(("r-devtools" ,r-devtools)
5280 ("r-rcpp" ,r-rcpp)))
5281 (home-page "https://github.com/kforner/rcpp_progress")
5282 (synopsis "Interruptible progress bar for C++ in R packages")
5283 (description
5284 "This package allows to display a progress bar in the R console for long running
5285 computations taking place in C++ code, and support for interrupting those computations
5286 even in multithreaded code, typically using OpenMP.")
5287 (license license:gpl3+)))
5288
5289 (define-public r-mnormt
5290 (package
5291 (name "r-mnormt")
5292 (version "1.5-5")
5293 (source
5294 (origin
5295 (method url-fetch)
5296 (uri (cran-uri "mnormt" version))
5297 (sha256
5298 (base32
5299 "1b34xxrnf35khsx82mhvmk96sgfr2flyasaah7qkb2976pwxay7z"))))
5300 (build-system r-build-system)
5301 (native-inputs
5302 `(("gfortran" ,gfortran)))
5303 (home-page "http://azzalini.stat.unipd.it/SW/Pkg-mnormt")
5304 (synopsis "Multivariate normal and \"t\" distributions")
5305 (description
5306 "This package provides functions for computing the density and the
5307 distribution function of multivariate normal and \"t\" random variables, and
5308 for generating random vectors sampled from these distributions. Probabilities
5309 are computed via non-Monte Carlo methods.")
5310 (license license:gpl2+)))
5311
5312 (define-public r-numderiv
5313 (package
5314 (name "r-numderiv")
5315 (version "2016.8-1.1")
5316 (source
5317 (origin
5318 (method url-fetch)
5319 (uri (cran-uri "numDeriv" version))
5320 (sha256
5321 (base32
5322 "0idk02pqkziik932bd8k72d1q775g1is3m4bc861pcxfz6gx3i6q"))))
5323 (properties `((upstream-name . "numDeriv")))
5324 (build-system r-build-system)
5325 (home-page "https://cran.r-project.org/web/packages/numDeriv")
5326 (synopsis "Accurate numerical derivatives")
5327 (description
5328 "This package provides methods for calculating accurate numerical
5329 first and second order derivatives.")
5330 (license license:gpl2)))
5331
5332 (define-public r-sn
5333 (package
5334 (name "r-sn")
5335 (version "1.5-4")
5336 (source
5337 (origin
5338 (method url-fetch)
5339 (uri (cran-uri "sn" version))
5340 (sha256
5341 (base32
5342 "0x46gxkplxbnhaqbpiav1r4xlv4ib7n57kxmca7scqwj22y7wrs6"))))
5343 (build-system r-build-system)
5344 (propagated-inputs
5345 `(("r-mnormt" ,r-mnormt)
5346 ("r-numderiv" ,r-numderiv)))
5347 (home-page "http://azzalini.stat.unipd.it/SN")
5348 (synopsis "The skew-normal and skew-t distributions")
5349 (description
5350 "This package provides functionalities to build and manipulate
5351 probability distributions of the skew-normal family and some related
5352 ones, notably the skew-t family, and provides related statistical
5353 methods for data fitting and diagnostics, in the univariate and the
5354 multivariate case.")
5355 (license license:gpl2+)))
5356
5357 (define-public r-tclust
5358 (package
5359 (name "r-tclust")
5360 (version "1.4-1")
5361 (source
5362 (origin
5363 (method url-fetch)
5364 (uri (cran-uri "tclust" version))
5365 (sha256
5366 (base32
5367 "17md6l9v9dl9b72l84df01b52h2xiynbcjm437mv9mzcr09fc2sb"))))
5368 (build-system r-build-system)
5369 ;; These are all suggested packages, not build dependencies.
5370 (propagated-inputs
5371 `(("r-cluster" ,r-cluster)
5372 ("r-mclust" ,r-mclust)
5373 ("r-mvtnorm" ,r-mvtnorm)
5374 ("r-sn" ,r-sn)))
5375 (home-page "https://cran.r-project.org/web/packages/tclust")
5376 (synopsis "Robust trimmed clustering")
5377 (description
5378 "This package implements different robust clustering
5379 algorithms (@code{tclust}) based on trimming and including some graphical
5380 diagnostic tools (@code{ctlcurves} and @code{DiscrFact}).")
5381 (license license:gpl3)))
5382
5383 (define-public r-ranger
5384 (package
5385 (name "r-ranger")
5386 (version "0.12.1")
5387 (source
5388 (origin
5389 (method url-fetch)
5390 (uri (cran-uri "ranger" version))
5391 (sha256
5392 (base32
5393 "1vr5akgh388iivrxi0g4pl2npq9dc4cim3ljk4kjf637q058wc7w"))))
5394 (build-system r-build-system)
5395 (propagated-inputs
5396 `(("r-rcpp" ,r-rcpp)
5397 ("r-matrix" ,r-matrix)
5398 ("r-rcppeigen" ,r-rcppeigen)))
5399 (home-page "https://github.com/imbs-hl/ranger")
5400 (synopsis "Fast implementation of random forests")
5401 (description
5402 "This package provides a fast implementation of Random Forests,
5403 particularly suited for high dimensional data. Ensembles of classification,
5404 regression, survival and probability prediction trees are supported. Data from
5405 genome-wide association studies can be analyzed efficiently.")
5406 (license license:gpl3)))
5407
5408 (define-public r-tsne
5409 (package
5410 (name "r-tsne")
5411 (version "0.1-3")
5412 (source
5413 (origin
5414 (method url-fetch)
5415 (uri (cran-uri "tsne" version))
5416 (sha256
5417 (base32
5418 "0s8cv2pndkddq62rzlgzgfdjp1vjv5hz5i5957sllnb97vbzbzb6"))))
5419 (build-system r-build-system)
5420 (home-page "https://github.com/jdonaldson/rtsne/")
5421 (synopsis "t-Distributed Stochastic Neighbor Embedding for R")
5422 (description
5423 "This package provides a pure R implementation of the t-SNE algorithm.")
5424 (license license:gpl2+)))
5425
5426 (define-public r-cairo
5427 (package
5428 (name "r-cairo")
5429 (version "1.5-10")
5430 (source
5431 (origin
5432 (method url-fetch)
5433 (uri (cran-uri "Cairo" version))
5434 (sha256
5435 (base32
5436 "1mdmd5zmjkh1b0x928zizgzh42x8swbajffb88rvnjfdhk1z0dvq"))))
5437 (properties `((upstream-name . "Cairo")))
5438 (build-system r-build-system)
5439 (inputs
5440 `(("cairo" ,cairo)
5441 ("libxt" ,libxt)
5442 ("zlib" ,zlib)))
5443 (native-inputs
5444 `(("pkg-config" ,pkg-config)))
5445 (home-page "http://www.rforge.net/Cairo/")
5446 (synopsis "R graphics device using Cairo graphics library")
5447 (description
5448 "This package provides a Cairo graphics device that can be use to
5449 create high-quality vector (PDF, PostScript and SVG) and bitmap
5450 output (PNG,JPEG,TIFF), and high-quality rendering in displays (X11
5451 and Win32). Since it uses the same back-end for all output, copying
5452 across formats is WYSIWYG. Files are created without the dependence
5453 on X11 or other external programs. This device supports alpha
5454 channel (semi-transparent drawing) and resulting images can contain
5455 transparent and semi-transparent regions. It is ideal for use in
5456 server environments (file output) and as a replacement for other
5457 devices that don't have Cairo's capabilities such as alpha support or
5458 anti-aliasing. Backends are modular such that any subset of backends
5459 is supported.")
5460 (license license:gpl2)))
5461
5462 (define-public r-lubridate
5463 (package
5464 (name "r-lubridate")
5465 (version "1.7.4")
5466 (source
5467 (origin
5468 (method url-fetch)
5469 (uri (cran-uri "lubridate" version))
5470 (sha256
5471 (base32
5472 "14a823il77w3wmmnzr89vwrqp50y56dh5raycnaw6c8nv5xsh32i"))))
5473 (build-system r-build-system)
5474 (propagated-inputs
5475 `(("r-rcpp" ,r-rcpp)
5476 ("r-stringr" ,r-stringr)))
5477 (home-page
5478 "https://cran.r-project.org/web/packages/lubridate")
5479 (synopsis "Make dealing with dates a little easier")
5480 (description
5481 "This package provides functions to work with date-times and time-spans:
5482 fast and user friendly parsing of date-time data, extraction and updating of
5483 components of a date-time (years, months, days, hours, minutes, and seconds),
5484 algebraic manipulation on date-time and time-span objects. The @code{lubridate}
5485 package has a consistent and memorable syntax that makes working with dates
5486 easy and fun.")
5487 (license license:gpl2)))
5488
5489 (define-public r-fdrtool
5490 (package
5491 (name "r-fdrtool")
5492 (version "1.2.15")
5493 (source
5494 (origin
5495 (method url-fetch)
5496 (uri (cran-uri "fdrtool" version))
5497 (sha256
5498 (base32
5499 "1h46frlk7d9f4qx0bg6p55nrm9wwwz2sv6d1nz7061wdfsm69yb5"))))
5500 (build-system r-build-system)
5501 (home-page "http://strimmerlab.org/software/fdrtool/")
5502 (synopsis "Estimation of false discovery rates and higher criticism")
5503 (description
5504 "This package provides tools to estimate tail area-based false discovery
5505 rates as well as local false discovery rates for a variety of null
5506 models (p-values, z-scores, correlation coefficients, t-scores). The
5507 proportion of null values and the parameters of the null distribution are
5508 adaptively estimated from the data. In addition, the package contains
5509 functions for non-parametric density estimation (Grenander estimator), for
5510 monotone regression (isotonic regression and antitonic regression with
5511 weights), for computing the @dfn{greatest convex minorant} (GCM) and the
5512 @dfn{least concave majorant} (LCM), for the half-normal and correlation
5513 distributions, and for computing empirical @dfn{higher criticism} (HC) scores
5514 and the corresponding decision threshold.")
5515 (license license:gpl3+)))
5516
5517 (define-public r-forcats
5518 (package
5519 (name "r-forcats")
5520 (version "0.4.0")
5521 (source
5522 (origin
5523 (method url-fetch)
5524 (uri (cran-uri "forcats" version))
5525 (sha256
5526 (base32
5527 "1cnjh23z59fhbjmy7y95425hcq3m5wrwqvahsxwi7zm6d9bwp0vw"))))
5528 (build-system r-build-system)
5529 (propagated-inputs
5530 `(("r-ellipsis" ,r-ellipsis)
5531 ("r-magrittr" ,r-magrittr)
5532 ("r-tibble" ,r-tibble)
5533 ("r-rlang" ,r-rlang)))
5534 (home-page "http://forcats.tidyverse.org")
5535 (synopsis "Tools for working with factors")
5536 (description "This package provides helpers for reordering factor
5537 levels (including moving specified levels to front, ordering by first
5538 appearance, reversing, and randomly shuffling), and tools for modifying factor
5539 levels (including collapsing rare levels into other, \"anonymizing\", and
5540 manually \"recoding\").")
5541 (license license:gpl3)))
5542
5543 (define-public r-tgstat
5544 (let ((changeset "4f8e60c03598f49aff6f5beeab40f2b995377e9f")
5545 (revision "1"))
5546 (package
5547 (name "r-tgstat")
5548 (version (string-append "1.0.2-" revision "." (string-take changeset 7)))
5549 (source
5550 (origin
5551 (method hg-fetch)
5552 (uri (hg-reference
5553 (url "https://bitbucket.org/tanaylab/tgstat")
5554 (changeset changeset)))
5555 (file-name (string-append name "-" version "-checkout"))
5556 (sha256
5557 (base32
5558 "0ilkkyximy77zbncm91kdfqbxf0qyndg16pd3q3p6a3xc9qcmxvn"))))
5559 (build-system r-build-system)
5560 (arguments
5561 `(#:phases
5562 (modify-phases %standard-phases
5563 (add-after 'unpack 'fix-isnan
5564 (lambda _
5565 (substitute* "src/tgstat.h"
5566 (("#define isnan ::isnan")
5567 "#define isnan std::isnan"))
5568 #t)))))
5569 (propagated-inputs
5570 `(("r-rcpp" ,r-rcpp)))
5571 (home-page "https://bitbucket.org/tanaylab/tgstat/")
5572 (synopsis "Tanay's group statistical utilities")
5573 (description
5574 "The goal of tgstat is to provide fast and efficient statistical
5575 tools.")
5576 (license license:gpl2))))
5577
5578 (define-public r-tgconfig
5579 (let ((changeset "1e02c7614713bd0866c46f0c679a058f8c6d627e")
5580 (revision "1"))
5581 (package
5582 (name "r-tgconfig")
5583 (version (string-append "0.0.0.9000-" revision "." (string-take changeset 7)))
5584 (source
5585 (origin
5586 (method hg-fetch)
5587 (uri (hg-reference
5588 (url "https://bitbucket.org/tanaylab/tgconfig")
5589 (changeset changeset)))
5590 (file-name (string-append name "-" version "-checkout"))
5591 (sha256
5592 (base32
5593 "0xy6c7s7mn1yx191154bwbv1bl424bnvc80syqpl1vdl28ba46rj"))))
5594 (build-system r-build-system)
5595 (propagated-inputs
5596 `(("r-yaml" ,r-yaml)))
5597 (home-page "https://bitbucket.org/tanaylab/tgconfig/")
5598 (synopsis "Infrastructure for managing package parameters")
5599 (description
5600 "The goal of tgconfig is to provide infrastructure for managing package
5601 parameters.")
5602 (license license:gpl3))))
5603
5604 (define-public r-directlabels
5605 (package
5606 (name "r-directlabels")
5607 (version "2018.05.22")
5608 (source
5609 (origin
5610 (method url-fetch)
5611 (uri (cran-uri "directlabels" version))
5612 (sha256
5613 (base32
5614 "0xcpc56ssb9430b0xcdhayk3qaak2qcakyss2pz14y5w2027hblv"))))
5615 (build-system r-build-system)
5616 (propagated-inputs
5617 `(("r-quadprog" ,r-quadprog)))
5618 (home-page "http://directlabels.r-forge.r-project.org/")
5619 (synopsis "Direct labels for multicolor plots")
5620 (description
5621 "This package provides an extensible framework for automatically placing
5622 direct labels onto multicolor plots. Label positions are described using
5623 positioning methods that can be re-used across several different plots. There
5624 are heuristics for examining @code{trellis} and @code{ggplot} objects and
5625 inferring an appropriate positioning method.")
5626 (license license:gpl3)))
5627
5628 (define-public r-catterplots
5629 (let ((commit "ae17cd5e49ddda4ecfe0eba8a4c21df8c88e72c4")
5630 (revision "3"))
5631 (package
5632 (name "r-catterplots")
5633 (version (git-version "0" revision commit))
5634 (source (origin
5635 (method git-fetch)
5636 (uri (git-reference
5637 (url "https://github.com/Gibbsdavidl/CatterPlots.git")
5638 (commit commit)))
5639 (file-name (git-file-name name version))
5640 (sha256
5641 (base32
5642 "0qa8liylffpxgdg8xcgjar5dsvczqhn3akd4w35113hnyg1m4xyg"))))
5643 (build-system r-build-system)
5644 (propagated-inputs
5645 `(("r-png" ,r-png)))
5646 (home-page "https://github.com/Gibbsdavidl/CatterPlots")
5647 (synopsis "Scatter plots with cat shaped points")
5648 (description "Did you ever wish you could make scatter plots with cat
5649 shaped points? Now you can!")
5650 (license license:asl2.0))))
5651
5652 (define-public r-colorout
5653 (package
5654 (name "r-colorout")
5655 (version "1.2-2")
5656 (source
5657 (origin
5658 (method git-fetch)
5659 (uri (git-reference
5660 (url "https://github.com/jalvesaq/colorout.git")
5661 (commit (string-append "v" version))))
5662 (file-name (git-file-name name version))
5663 (sha256
5664 (base32 "1rsx69wjpa73c6x2hacvvvbzdzxn7wg06gizf97kasjdlb7azmp3"))))
5665 (build-system r-build-system)
5666 (home-page "https://github.com/jalvesaq/colorout")
5667 (synopsis "Colorize output in the R REPL")
5668 (description "@code{colorout} is an R package that colorizes R output when
5669 running in terminal emulator.
5670
5671 R STDOUT is parsed and numbers, negative numbers, dates in the standard
5672 format, strings, and R constants are identified and wrapped by special ANSI
5673 scape codes that are interpreted by terminal emulators as commands to colorize
5674 the output. R STDERR is also parsed to identify the expressions warning and
5675 error and their translations to many languages. If these expressions are
5676 found, the output is colorized accordingly; otherwise, it is colorized as
5677 STDERROR (blue, by default).
5678
5679 You can customize the colors according to your taste, guided by the color
5680 table made by the command @code{show256Colors()}. You can also set the colors
5681 to any arbitrary string. In this case, it is up to you to set valid values.")
5682 (license license:gpl3+)))
5683
5684 (define-public python-rpy2
5685 ;; We need to take this changeset instead of the RELEASE_3_0_4 tag, because
5686 ;; it fixes a regression when using ggplot 3.2.0.
5687 (let ((changeset "19868a8")
5688 (revision "1"))
5689 (package
5690 (name "python-rpy2")
5691 (version (git-version "3.0.4" revision changeset))
5692 (source
5693 (origin
5694 (method hg-fetch)
5695 (uri (hg-reference
5696 (url "https://bitbucket.org/rpy2/rpy2")
5697 (changeset changeset)))
5698 (file-name (git-file-name name version))
5699 (sha256
5700 (base32
5701 "1bb0wslcbj3wjvyk3jb9yyzdi6adfqh5vfgcvn22dyzxzbhcs8kk"))))
5702 (build-system python-build-system)
5703 (arguments
5704 '(#:modules ((ice-9 ftw)
5705 (srfi srfi-1)
5706 (srfi srfi-26)
5707 (guix build utils)
5708 (guix build python-build-system))
5709 #:phases
5710 (modify-phases %standard-phases
5711 (replace 'check
5712 (lambda* (#:key outputs inputs #:allow-other-keys)
5713 (let ((cwd (getcwd)))
5714 (setenv "TZ" "UTC")
5715 (setenv "PYTHONPATH"
5716 (string-append cwd "/build/"
5717 (find (cut string-prefix? "lib" <>)
5718 (scandir (string-append cwd "/build")))
5719 ":"
5720 (getenv "PYTHONPATH"))))
5721 (invoke "pytest" "-v" "rpy/tests/"))))))
5722 (propagated-inputs
5723 `(("python-cffi" ,python-cffi)
5724 ("python-six" ,python-six)
5725 ("python-jinja2" ,python-jinja2)
5726 ("python-numpy" ,python-numpy)
5727 ("python-pandas" ,python-pandas)
5728 ("python-pytz" ,python-pytz)
5729 ("python-ipython" ,python-ipython)
5730 ("python-tzlocal" ,python-tzlocal)))
5731 (inputs
5732 `(("readline" ,readline)
5733 ("icu4c" ,icu4c)
5734 ("pcre" ,pcre)
5735 ("r-minimal" ,r-minimal)
5736 ("r-survival" ,r-survival)
5737 ("r-ggplot2" ,r-ggplot2)
5738 ("r-rsqlite" ,r-rsqlite)
5739 ("r-dplyr" ,r-dplyr)
5740 ("r-dbplyr" ,r-dbplyr)
5741 ("python-numpy" ,python-numpy)))
5742 (native-inputs
5743 `(("zlib" ,zlib)
5744 ("python-pytest" ,python-pytest)))
5745 (home-page "https://rpy2.bitbucket.io/")
5746 (synopsis "Python interface to the R language")
5747 (description "rpy2 is a redesign and rewrite of rpy. It is providing a
5748 low-level interface to R from Python, a proposed high-level interface,
5749 including wrappers to graphical libraries, as well as R-like structures and
5750 functions.")
5751 ;; Any of these licenses can be picked for the R interface. The whole
5752 ;; project is released under GPLv2+ according to the license declaration
5753 ;; in "setup.py".
5754 (license (list license:mpl2.0 license:gpl2+ license:lgpl2.1+)))))
5755
5756 (define-public java-jdistlib
5757 (package
5758 (name "java-jdistlib")
5759 (version "0.4.5")
5760 (source (origin
5761 (method url-fetch)
5762 (uri (string-append "mirror://sourceforge/jdistlib/jdistlib-"
5763 version "-src.jar"))
5764 (sha256
5765 (base32
5766 "1pkj8aahw9ydr1isbaqrkd05nvq98ik5jwwhf3yf3rky3z869v11"))))
5767 (build-system ant-build-system)
5768 (arguments
5769 `(#:jar-name "jdistlib.jar"
5770 #:jdk ,icedtea-8
5771 #:tests? #f ; no dedicated test directory
5772 #:phases
5773 (modify-phases %standard-phases
5774 (add-after 'unpack 'fix-broken-encoding
5775 (lambda _
5776 (with-fluids ((%default-port-encoding "ISO-8859-1"))
5777 (substitute* "src/jdistlib/Beta.java"
5778 (("Scheff.+-Tukey") "Scheffe-Tukey")))
5779 #t)))))
5780 (propagated-inputs
5781 `(("java-jtransforms" ,java-jtransforms)))
5782 (native-inputs
5783 `(("java-junit" ,java-junit)))
5784 (home-page "http://jdistlib.sourceforge.net/")
5785 (synopsis "Java library of statistical distributions")
5786 (description "JDistlib is the Java Statistical Distribution Library, a
5787 Java package that provides routines for various statistical distributions.")
5788 ;; The files that were translated from R code are under GPLv2+; some files
5789 ;; are under the GPLv3, which is a mistake. The author confirmed in an
5790 ;; email that this whole project should be under GPLv2+.
5791 (license license:gpl2+)))
5792
5793 (define-public emacs-ess
5794 (package
5795 (name "emacs-ess")
5796 (version "17.11")
5797 (source (origin
5798 (method url-fetch)
5799 (uri (string-append "https://github.com/emacs-ess/ESS/archive/v"
5800 version ".tar.gz"))
5801 (sha256
5802 (base32
5803 "0cbilbsiwvcyf6d5y24mymp57m3ana5dkzab3knfs83w4a3a4c5c"))
5804 (file-name (string-append name "-" version ".tar.gz"))
5805 (modules '((guix build utils)))
5806 (snippet
5807 '(begin
5808 ;; Stop ESS from trying to bundle an external julia-mode.el.
5809 (substitute* "lisp/Makefile"
5810 (("^\tjulia-mode.elc\\\\\n") "")
5811 (("^dist: all julia-mode.el")
5812 "dist: all"))
5813 ;; No need to build docs in so many formats. Also, skipping
5814 ;; pdf lets us not pull in texlive.
5815 (substitute* "doc/Makefile"
5816 (("all : info text html pdf")
5817 "all : info")
5818 (("install: install-info install-other-docs")
5819 "install: install-info"))
5820 ;; Test fails upstream
5821 (substitute* "test/ess-r-tests.el"
5822 (("ert-deftest ess-r-namespaced-eval-no-srcref-in-errors ()")
5823 "ert-deftest ess-r-namespaced-eval-no-srcref-in-errors () :expected-result :failed"))
5824 #t))))
5825 (build-system gnu-build-system)
5826 (arguments
5827 (let ((base-directory "/share/emacs/site-lisp/guix.d/ess"))
5828 `(#:make-flags (list (string-append "PREFIX=" %output)
5829 (string-append "ETCDIR=" %output "/"
5830 ,base-directory "/etc")
5831 (string-append "LISPDIR=" %output "/"
5832 ,base-directory))
5833 #:phases
5834 (modify-phases %standard-phases
5835 (delete 'configure)
5836 (add-before 'build 'more-shebang-patching
5837 (lambda* (#:key inputs #:allow-other-keys)
5838 (substitute* "Makeconf"
5839 (("SHELL = /bin/sh")
5840 (string-append "SHELL = " (which "sh"))))
5841 #t))
5842 (replace 'check
5843 (lambda _
5844 (invoke "make" "test")))))))
5845 (inputs
5846 `(("emacs" ,emacs-minimal)
5847 ("r-minimal" ,r-minimal)))
5848 (native-inputs
5849 `(("perl" ,perl)
5850 ("texinfo" ,texinfo)))
5851 (propagated-inputs
5852 `(("emacs-julia-mode" ,emacs-julia-mode)))
5853 (home-page "https://ess.r-project.org/")
5854 (synopsis "Emacs mode for statistical analysis programs")
5855 (description "Emacs Speaks Statistics (ESS) is an add-on package for GNU
5856 Emacs. It is designed to support editing of scripts and interaction with
5857 various statistical analysis programs such as R, Julia, and JAGS.")
5858 (license license:gpl2+)))