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