gnu: Add r-ade4.
[jackhill/guix/guix.git] / gnu / packages / statistics.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2015 Vicente Vera Parra <vicentemvp@gmail.com>
4 ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
5 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
6 ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
7 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
8 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
9 ;;;
10 ;;; This file is part of GNU Guix.
11 ;;;
12 ;;; GNU Guix is free software; you can redistribute it and/or modify it
13 ;;; under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 3 of the License, or (at
15 ;;; your option) any later version.
16 ;;;
17 ;;; GNU Guix is distributed in the hope that it will be useful, but
18 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
24
25 (define-module (gnu packages statistics)
26 #:use-module ((guix licenses) #:prefix license:)
27 #:use-module (guix packages)
28 #:use-module (guix download)
29 #:use-module (guix utils)
30 #:use-module (guix build-system gnu)
31 #:use-module (guix build-system r)
32 #:use-module (guix build-system python)
33 #:use-module (gnu packages)
34 #:use-module (gnu packages compression)
35 #:use-module (gnu packages curl)
36 #:use-module (gnu packages gcc)
37 #:use-module (gnu packages gtk)
38 #:use-module (gnu packages gettext)
39 #:use-module (gnu packages glib)
40 #:use-module (gnu packages haskell)
41 #:use-module (gnu packages icu4c)
42 #:use-module (gnu packages image)
43 #:use-module (gnu packages java)
44 #:use-module (gnu packages maths)
45 #:use-module (gnu packages multiprecision)
46 #:use-module (gnu packages pcre)
47 #:use-module (gnu packages perl)
48 #:use-module (gnu packages pkg-config)
49 #:use-module (gnu packages python)
50 #:use-module (gnu packages readline)
51 #:use-module (gnu packages ssh)
52 #:use-module (gnu packages texinfo)
53 #:use-module (gnu packages tls)
54 #:use-module (gnu packages base)
55 #:use-module (gnu packages web)
56 #:use-module (gnu packages xml)
57 #:use-module (gnu packages xorg)
58 #:use-module (gnu packages zip)
59 #:use-module (srfi srfi-1))
60
61
62 (define-public pspp
63 (package
64 (name "pspp")
65 (version "0.10.1")
66 (source
67 (origin
68 (method url-fetch)
69 (uri (string-append "mirror://gnu/pspp/pspp-"
70 version ".tar.gz"))
71 (sha256
72 (base32
73 "0xw61kq0hxh7f6a4yjhnqbhc0fj9r3wb3qnpq05qhdp79n30ik24"))))
74 (build-system gnu-build-system)
75 (inputs
76 `(("cairo" ,cairo)
77 ("gettext" ,gnu-gettext)
78 ("gsl" ,gsl)
79 ("libxml2" ,libxml2)
80 ("pango" ,pango)
81 ("readline" ,readline)
82 ("gtk" ,gtk+)
83 ("gtksourceview" ,gtksourceview)
84 ("zlib" ,zlib)))
85 (native-inputs
86 `(("glib" ,glib "bin") ;for glib-genmarshal
87 ("perl" ,perl)
88 ("pkg-config" ,pkg-config)))
89 (home-page "http://www.gnu.org/software/pspp/")
90 (synopsis "Statistical analysis")
91 (description
92 "GNU PSPP is a statistical analysis program. It can perform
93 descriptive statistics, T-tests, linear regression and non-parametric tests.
94 It features both a graphical interface as well as command-line input. PSPP
95 is designed to interoperate with Gnumeric, LibreOffice and OpenOffice. Data
96 can be imported from spreadsheets, text files and database sources and it can
97 be output in text, PostScript, PDF or HTML.")
98 (license license:gpl3+)))
99
100 (define-public r
101 (package
102 (name "r")
103 (version "3.3.0")
104 (source (origin
105 (method url-fetch)
106 (uri (string-append "mirror://cran/src/base/R-"
107 (version-prefix version 1) "/R-"
108 version ".tar.gz"))
109 (sha256
110 (base32
111 "1r0i0cqs3p0vrpiwq0zg5kbrmja9rmaijyzf9f23v6d5n5ab2mlj"))))
112 (build-system gnu-build-system)
113 (arguments
114 `(#:make-flags
115 (list (string-append "LDFLAGS=-Wl,-rpath="
116 (assoc-ref %outputs "out")
117 "/lib/R/lib"))
118 #:phases
119 (modify-phases %standard-phases
120 (add-before
121 'configure 'set-default-pager
122 ;; Set default pager to "cat", because otherwise it is "false",
123 ;; making "help()" print nothing at all.
124 (lambda _ (setenv "PAGER" "cat") #t))
125 (add-before 'check 'set-timezone
126 ;; Some tests require the timezone to be set.
127 (lambda* (#:key inputs #:allow-other-keys)
128 (setenv "TZ" "UTC")
129 (setenv "TZDIR"
130 (string-append (assoc-ref inputs "tzdata")
131 "/share/zoneinfo"))
132 #t))
133 (add-after 'build 'make-info
134 (lambda _ (zero? (system* "make" "info"))))
135 (add-after 'build 'install-info
136 (lambda _ (zero? (system* "make" "install-info")))))
137 #:configure-flags
138 '("--with-cairo"
139 "--with-libpng"
140 "--with-jpeglib"
141 "--with-libtiff"
142 "--with-ICU"
143 "--enable-R-shlib"
144 "--enable-BLAS-shlib"
145 "--with-system-zlib"
146 "--with-system-bzlib"
147 "--with-system-pcre"
148 "--with-system-tre"
149 "--with-system-xz")))
150 ;; R has some support for Java. When the JDK is available at configure
151 ;; time environment variables pointing to the JDK will be recorded under
152 ;; $R_HOME/etc and ./tools/getsp.java will be compiled which is used by "R
153 ;; CMD javareconf". "R CMD javareconf" appears to only be used to update
154 ;; the recorded environment variables in $R_HOME/etc. Refer to
155 ;; https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Java-support
156 ;; for additional information.
157
158 ;; As the JDK is a rather large input with only very limited effects on R,
159 ;; we decided to drop it.
160 (native-inputs
161 `(("bzip2" ,bzip2)
162 ("perl" ,perl)
163 ("pkg-config" ,pkg-config)
164 ("texinfo" ,texinfo) ; for building HTML manuals
165 ("which" ,which) ; for tests/Examples/base-Ex.R
166 ("xz" ,xz)))
167 (inputs
168 `(;; We need not only cairo here, but pango to ensure that tests for the
169 ;; "cairo" bitmapType plotting backend succeed.
170 ("pango" ,pango)
171 ("curl" ,curl)
172 ("tzdata" ,tzdata)
173 ("gfortran" ,gfortran)
174 ("icu4c" ,icu4c)
175 ("libjpeg" ,libjpeg)
176 ("libpng" ,libpng)
177 ("libtiff" ,libtiff)
178 ("libxt" ,libxt)
179 ("pcre" ,pcre)
180 ("readline" ,readline)
181 ("zlib" ,zlib)))
182 (native-search-paths
183 (list (search-path-specification
184 (variable "R_LIBS_SITE")
185 (files (list "site-library/")))))
186 (home-page "http://www.r-project.org/")
187 (synopsis "Environment for statistical computing and graphics")
188 (description
189 "R is a language and environment for statistical computing and graphics.
190 It provides a variety of statistical techniques, such as linear and nonlinear
191 modeling, classical statistical tests, time-series analysis, classification
192 and clustering. It also provides robust support for producing
193 publication-quality data plots. A large amount of 3rd-party packages are
194 available, greatly increasing its breadth and scope.")
195 (license license:gpl3+)))
196
197 (define-public r-colorspace
198 (package
199 (name "r-colorspace")
200 (version "1.2-6")
201 (source
202 (origin
203 (method url-fetch)
204 (uri (cran-uri "colorspace" version))
205 (sha256
206 (base32 "0y8n4ljwhbdvkysdwgqzcnpv107pb3px1jip3k6svv86p72nacds"))))
207 (build-system r-build-system)
208 (home-page "http://cran.r-project.org/web/packages/colorspace")
209 (synopsis "Color space manipulation")
210 (description
211 "This package carries out a mapping between assorted color spaces
212 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
213 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
214 colors are provided.")
215 (license license:bsd-3)))
216
217 (define-public r-dichromat
218 (package
219 (name "r-dichromat")
220 (version "2.0-0")
221 (source
222 (origin
223 (method url-fetch)
224 (uri (cran-uri "dichromat" version))
225 (sha256
226 (base32 "1l8db1nk29ccqg3mkbafvfiw0775iq4gapysf88xq2zp6spiw59i"))))
227 (build-system r-build-system)
228 (home-page "http://cran.r-project.org/web/packages/dichromat")
229 (synopsis "Color schemes for dichromats")
230 (description
231 "Dichromat collapses red-green or green-blue distinctions to simulate the
232 effects of different types of color-blindness.")
233 (license license:gpl2+)))
234
235 (define-public r-digest
236 (package
237 (name "r-digest")
238 (version "0.6.9")
239 (source
240 (origin
241 (method url-fetch)
242 (uri (cran-uri "digest" version))
243 (sha256
244 (base32 "0ixy1mb7kfl20lkckqiilpw03g1ip4ibihs03gicz7w625hc7zcm"))))
245 (build-system r-build-system)
246 ;; Vignettes require r-knitr, which requires r-digest, so we have to
247 ;; disable them and the tests.
248 (arguments
249 `(#:tests? #f
250 #:configure-flags (list "--no-build-vignettes")))
251 (home-page "http://dirk.eddelbuettel.com/code/digest.html")
252 (synopsis "Create cryptographic hash digests of R objects")
253 (description
254 "This package contains an implementation of a function 'digest()' for the
255 creation of hash digests of arbitrary R objects (using the md5, sha-1,
256 sha-256, crc32, xxhash and murmurhash algorithms) permitting easy comparison
257 of R language objects, as well as a function 'hmac()' to create hash-based
258 message authentication code.
259
260 Please note that this package is not meant to be deployed for cryptographic
261 purposes for which more comprehensive (and widely tested) libraries such as
262 OpenSSL should be used.")
263 (license license:gpl2+)))
264
265 (define-public r-estimability
266 (package
267 (name "r-estimability")
268 (version "1.1-1")
269 (source (origin
270 (method url-fetch)
271 (uri (cran-uri "estimability" version))
272 (sha256
273 (base32
274 "049adh8i0ad0m0qln2ylqdxcs5v2q9zfignn2a50r5f93ip2ay6w"))))
275 (build-system r-build-system)
276 (home-page "http://cran.r-project.org/web/packages/estimability")
277 (synopsis "Tools for assessing estimability of linear predictions")
278 (description "Provides tools for determining estimability of linear
279 functions of regression coefficients, and 'epredict' methods that handle
280 non-estimable cases correctly.")
281 (license license:gpl2+)))
282
283 (define-public r-gtable
284 (package
285 (name "r-gtable")
286 (version "0.1.2")
287 (source
288 (origin
289 (method url-fetch)
290 (uri (cran-uri "gtable" version))
291 (sha256
292 (base32 "0k9hfj6r5y238gqh92s3cbdn34biczx3zfh79ix5xq0c5vkai2xh"))))
293 (build-system r-build-system)
294 (home-page "https://cran.r-project.org/web/packages/gtable")
295 (synopsis "R library to arrange grobs in tables")
296 (description
297 "Gtable is a collection of tools to make it easier to work with
298 \"tables\" of grobs.")
299 (license license:gpl2+)))
300
301 (define-public r-labeling
302 (package
303 (name "r-labeling")
304 (version "0.3")
305 (source
306 (origin
307 (method url-fetch)
308 (uri (cran-uri "labeling" version))
309 (sha256
310 (base32 "13sk7zrrrzry6ky1bp8mmnzcl9jhvkig8j4id9nny7z993mnk00d"))))
311 (build-system r-build-system)
312 (home-page "http://cran.r-project.org/web/packages/labeling")
313 (synopsis "Axis labeling algorithms")
314 (description "The labeling package provides a range of axis labeling
315 algorithms.")
316 (license license:expat)))
317
318 (define-public r-magrittr
319 (package
320 (name "r-magrittr")
321 (version "1.5")
322 (source
323 (origin
324 (method url-fetch)
325 (uri (cran-uri "magrittr" version))
326 (sha256
327 (base32 "1s1ar6rag8m277qcqmdp02gn4awn9bdj9ax0r8s32i59mm1mki05"))))
328 (build-system r-build-system)
329 (home-page "http://cran.r-project.org/web/packages/magrittr/index.html")
330 (synopsis "A forward-pipe operator for R")
331 (description
332 "Magrittr provides a mechanism for chaining commands with a new
333 forward-pipe operator, %>%. This operator will forward a value, or the result
334 of an expression, into the next function call/expression. There is flexible
335 support for the type of right-hand side expressions. For more information,
336 see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"")
337 (license license:expat)))
338
339 (define-public r-munsell
340 (package
341 (name "r-munsell")
342 (version "0.4.3")
343 (source
344 (origin
345 (method url-fetch)
346 (uri (cran-uri "munsell" version))
347 (sha256
348 (base32 "0jdxlbjslkzaqgp058da1cgm85qvqi09wpcgpvp4hvwnmy83qz1r"))))
349 (build-system r-build-system)
350 (propagated-inputs
351 `(("r-colorspace" ,r-colorspace)))
352 (home-page "http://cran.r-project.org/web/packages/munsell")
353 (synopsis "Munsell colour system")
354 (description
355 "The Munsell package contains Functions for exploring and using the
356 Munsell colour system.")
357 (license license:expat)))
358
359 (define-public r-rcpp
360 (package
361 (name "r-rcpp")
362 (version "0.12.5")
363 (source
364 (origin
365 (method url-fetch)
366 (uri (cran-uri "Rcpp" version))
367 (sha256
368 (base32 "1vw0zbd6zhqixqg7h8ahn1dr1hb492365x419nrp2lhvr60r8i0k"))))
369 (build-system r-build-system)
370 (home-page "http://www.rcpp.org")
371 (synopsis "Seamless R and C++ Integration")
372 (description
373 "The Rcpp package provides R functions as well as C++ classes which offer
374 a seamless integration of R and C++. Many R data types and objects can be
375 mapped back and forth to C++ equivalents which facilitates both writing of new
376 code as well as easier integration of third-party libraries. Documentation
377 about Rcpp is provided by several vignettes included in this package, via the
378 'Rcpp Gallery' site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
379 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
380 'citation(\"Rcpp\")' for details on these last two.")
381 (license license:gpl2+)))
382
383 (define-public r-mgcv
384 (package
385 (name "r-mgcv")
386 (version "1.8-12")
387 (source
388 (origin
389 (method url-fetch)
390 (uri (cran-uri "mgcv" version))
391 (sha256
392 (base32
393 "1khzy36nn6xbnzqfc2953ng0sv8w91mns1ymhibaqn1150x1qid0"))))
394 (build-system r-build-system)
395 (home-page "http://cran.r-project.org/web/packages/mgcv")
396 (synopsis "Mixed generalised additive model computation")
397 (description
398 "GAMs, GAMMs and other generalized ridge regression with multiple smoothing
399 parameter estimation by GCV, REML or UBRE/AIC. The library includes a
400 @code{gam()} function, a wide variety of smoothers, JAGS support and
401 distributions beyond the exponential family.")
402 (license license:gpl2+)))
403
404 (define-public r-permute
405 (package
406 (name "r-permute")
407 (version "0.9-0")
408 (source
409 (origin
410 (method url-fetch)
411 (uri (cran-uri "permute" version))
412 (sha256
413 (base32
414 "0w68cqw6s4pixix8bh1qzsy1pm64jqh1cjznw74h82ygp8sj7p73"))))
415 (build-system r-build-system)
416 ;; Tests do not run correctly, but running them properly would entail a
417 ;; circular dependency with vegan.
418 (home-page "https://github.com/gavinsimpson/permute")
419 (synopsis "Functions for Generating Restricted Permutations of Data")
420 (description
421 "This package provides a set of restricted permutation designs for freely
422 exchangeable, line transects (time series), spatial grid designs and permutation
423 of blocks (groups of samples). @code{permute} also allows split-plot designs,
424 in which the whole-plots or split-plots or both can be freely exchangeable.")
425 (license license:gpl2+)))
426
427 (define-public r-plyr
428 (package
429 (name "r-plyr")
430 (version "1.8.3")
431 (source
432 (origin
433 (method url-fetch)
434 (uri (cran-uri "plyr" version))
435 (sha256
436 (base32 "06v4zxawpjz37rp2q2ii5q43g664z9s29j4ydn0cz3crn7lzl6pk"))))
437 (build-system r-build-system)
438 (native-inputs `(("r-rcpp" ,r-rcpp)))
439 (home-page "http://had.co.nz/plyr")
440 (synopsis "Tools for Splitting, Applying and Combining Data")
441 (description
442 "Plyr is a set of tools that solves a common set of problems: you need to
443 break a big problem down into manageable pieces, operate on each piece and
444 then put all the pieces back together. For example, you might want to fit a
445 model to each spatial location or time point in your study, summarise data by
446 panels or collapse high-dimensional arrays to simpler summary statistics.")
447 (license license:expat)))
448
449 (define-public r-proto
450 (package
451 (name "r-proto")
452 (version "0.3-10")
453 (source
454 (origin
455 (method url-fetch)
456 (uri (cran-uri "proto" version))
457 (sha256
458 (base32 "03mvzi529y6kjcp9bkpk7zlgpcakb3iz73hca6rpjy14pyzl3nfh"))))
459 (build-system r-build-system)
460 (home-page "http://r-proto.googlecode.com")
461 (synopsis "Prototype object-based programming")
462 (description
463 "Proto is an object oriented system using object-based, also called
464 prototype-based, rather than class-based object oriented ideas.")
465 (license license:gpl2+)))
466
467 (define-public r-rcolorbrewer
468 (package
469 (name "r-rcolorbrewer")
470 (version "1.1-2")
471 (source
472 (origin
473 (method url-fetch)
474 (uri (cran-uri "RColorBrewer" version))
475 (sha256
476 (base32 "1pfcl8z1pnsssfaaz9dvdckyfnnc6rcq56dhislbf571hhg7isgk"))))
477 (build-system r-build-system)
478 (home-page "http://cran.r-project.org/web/packages/RColorBrewer")
479 (synopsis "ColorBrewer palettes")
480 (description
481 "This package provides color schemes for maps (and other graphics)
482 designed by Cynthia Brewer as described at http://colorbrewer2.org")
483 ;; Includes code licensed under bsd-4
484 (license license:asl2.0)))
485
486 (define-public r-stringi
487 (package
488 (name "r-stringi")
489 (version "1.0-1")
490 (source
491 (origin
492 (method url-fetch)
493 (uri (cran-uri "stringi" version))
494 (sha256
495 (base32
496 "1ld38536sswyywp6pyys3v8vkngbk5cksrhdxp8jyr6bz7qf8j77"))))
497 (build-system r-build-system)
498 (inputs `(("icu4c" ,icu4c)))
499 (native-inputs `(("pkg-config" ,pkg-config)))
500 (home-page "http://stringi.rexamine.com/")
501 (synopsis "Character string processing facilities")
502 (description
503 "This package allows for fast, correct, consistent, portable, as well as
504 convenient character string/text processing in every locale and any native
505 encoding. Owing to the use of the ICU library, the package provides R users
506 with platform-independent functions known to Java, Perl, Python, PHP, and Ruby
507 programmers. Among available features there are: pattern searching
508 (e.g. via regular expressions), random string generation, string collation,
509 transliteration, concatenation, date-time formatting and parsing, etc.")
510 (license license:bsd-3)))
511
512 (define-public r-stringr
513 (package
514 (name "r-stringr")
515 (version "1.0.0")
516 (source
517 (origin
518 (method url-fetch)
519 (uri (cran-uri "stringr" version))
520 (sha256
521 (base32 "0jnz6r9yqyf7dschr2fnn1slg4wn6b4ik5q00j4zrh43bfw7s9pq"))))
522 (build-system r-build-system)
523 (propagated-inputs
524 `(("r-magrittr" ,r-magrittr)
525 ("r-stringi" ,r-stringi)))
526 (home-page "https://github.com/hadley/stringr")
527 (synopsis "Simple, consistent wrappers for common string operations")
528 (description
529 "Stringr is a consistent, simple and easy to use set of wrappers around
530 the fantastic 'stringi' package. All function and argument names (and
531 positions) are consistent, all functions deal with \"NA\"'s and zero length
532 vectors in the same way, and the output from one function is easy to feed into
533 the input of another.")
534 (license license:gpl2+)))
535
536 (define-public r-reshape2
537 (package
538 (name "r-reshape2")
539 (version "1.4.1")
540 (source
541 (origin
542 (method url-fetch)
543 (uri (cran-uri "reshape2" version))
544 (sha256
545 (base32 "0hl082dyk3pk07nqprpn5dvnrkqhnf6zjnjig1ijddxhlmsrzm7v"))))
546 (build-system r-build-system)
547 (propagated-inputs
548 `(("r-plyr" ,r-plyr)
549 ("r-rcpp" ,r-rcpp)
550 ("r-stringr" ,r-stringr)))
551 (home-page "https://github.com/hadley/reshape")
552 (synopsis "Flexibly reshape data: a reboot of the \"reshape\" package")
553 (description
554 "Reshape2 is an R library to flexibly restructure and aggregate data
555 using just two functions: melt and dcast (or acast).")
556 (license license:expat)))
557
558 (define-public r-scales
559 (package
560 (name "r-scales")
561 (version "0.4.0")
562 (source
563 (origin
564 (method url-fetch)
565 (uri (cran-uri "scales" version))
566 (sha256
567 (base32 "19y6q4j8vpmc73dnn4ncp5wj44gri7m77ys3z2rn3crrcc9zc7l5"))))
568 (build-system r-build-system)
569 (propagated-inputs
570 `(("r-dichromat" ,r-dichromat)
571 ("r-labeling" ,r-labeling)
572 ("r-munsell" ,r-munsell)
573 ("r-plyr" ,r-plyr)
574 ("r-rcolorbrewer" ,r-rcolorbrewer)
575 ("r-rcpp" ,r-rcpp)))
576 (home-page "https://github.com/hadley/scales")
577 (synopsis "Scale functions for visualization")
578 (description
579 "This package provides graphical scales that map data to aesthetics, and
580 provides methods for automatically determining breaks and labels for axes and
581 legends.")
582 (license license:expat)))
583
584 (define-public r-ggplot2
585 (package
586 (name "r-ggplot2")
587 (version "2.1.0")
588 (source
589 (origin
590 (method url-fetch)
591 (uri (cran-uri "ggplot2" version))
592 (sha256
593 (base32 "0s9rvp0f736ji6p9xpxq54agxf95pjkql4sj7ag0hv2xhnp27hzj"))))
594 (build-system r-build-system)
595 (propagated-inputs
596 `(("r-digest" ,r-digest)
597 ("r-gtable" ,r-gtable)
598 ("r-plyr" ,r-plyr)
599 ("r-proto" ,r-proto)
600 ("r-reshape2" ,r-reshape2)
601 ("r-scales" ,r-scales)
602 ("r-svglite" ,r-svglite)))
603 (home-page "http://ggplot2.org")
604 (synopsis "An implementation of the grammar of graphics")
605 (description
606 "Ggplot2 is an implementation of the grammar of graphics in R. It
607 combines the advantages of both base and lattice graphics: conditioning and
608 shared axes are handled automatically, and you can still build up a plot step
609 by step from multiple data sources. It also implements a sophisticated
610 multidimensional conditioning system and a consistent interface to map data to
611 aesthetic attributes.")
612 (license license:gpl2+)))
613
614 (define-public r-gdtools
615 (package
616 (name "r-gdtools")
617 (version "0.0.7")
618 (source
619 (origin
620 (method url-fetch)
621 (uri (cran-uri "gdtools" version))
622 (sha256
623 (base32
624 "1bmnf9d677f2jy8jnb9ymjz1qzm4yrd0qp6k5qrrly06jfffyx7g"))))
625 (build-system r-build-system)
626 (native-inputs
627 `(("r-rcpp" ,r-rcpp)
628 ("pkg-config" ,pkg-config)))
629 (inputs
630 `(("cairo" ,cairo)))
631 (home-page "http://cran.r-project.org/web/packages/gdtools")
632 (synopsis "Utilities for graphical rendering")
633 (description
634 "The @code{gdtools} package provides functionalities to get font metrics
635 and to generate base64 encoded string from raster matrix.")
636 (license license:gpl3)))
637
638 (define-public r-svglite
639 (package
640 (name "r-svglite")
641 (version "1.1.0")
642 (source
643 (origin
644 (method url-fetch)
645 (uri (cran-uri "svglite" version))
646 (sha256
647 (base32
648 "11ryicjglfi6jvkk4jgg5kra42qbs5z2zid7jjhlslpjcljfwc70"))))
649 (build-system r-build-system)
650 (native-inputs `(("r-rcpp" ,r-rcpp)))
651 (propagated-inputs
652 `(("r-bh" ,r-bh)
653 ("r-gdtools" ,r-gdtools)))
654 (home-page "https://github.com/hadley/svglite")
655 (synopsis "SVG graphics device")
656 (description
657 "@code{svglite} is a graphics device that produces clean
658 @dfn{SVG} (Scalable Vector Graphics) output, suitable for use on the web, or
659 hand editing. Compared to the built-in @code{svg()}, @code{svglite} is
660 considerably faster, produces smaller files, and leaves text as is.")
661 (license license:gpl2+)))
662
663 (define-public r-assertthat
664 (package
665 (name "r-assertthat")
666 (version "0.1")
667 (source (origin
668 (method url-fetch)
669 (uri (cran-uri "assertthat" version))
670 (sha256
671 (base32
672 "0dwsqajyglfscqilj843qfqn1ndbqpswa7b4l1d633qjk9d68qqk"))))
673 (build-system r-build-system)
674 (home-page "https://github.com/hadley/assertthat")
675 (synopsis "Easy pre and post assertions")
676 (description
677 "Assertthat is an extension to stopifnot() that makes it easy to declare
678 the pre and post conditions that your code should satisfy, while also
679 producing friendly error messages so that your users know what they've done
680 wrong.")
681 (license license:gpl3+)))
682
683 (define-public r-lazyeval
684 (package
685 (name "r-lazyeval")
686 (version "0.1.10")
687 (source (origin
688 (method url-fetch)
689 (uri (cran-uri "lazyeval" version))
690 (sha256
691 (base32
692 "02qfpn2fmy78vx4jxr7g7rhqzcm1kcivfwai7lbh0vvpawia0qwh"))))
693 (build-system r-build-system)
694 (home-page "https://github.com/hadley/lazyeval")
695 (synopsis "Lazy (non-standard) evaluation in R")
696 (description
697 "This package provides the tools necessary to do non-standard
698 evaluation (NSE) in R.")
699 (license license:gpl3+)))
700
701 (define-public r-dbi
702 (package
703 (name "r-dbi")
704 (version "0.4-1")
705 (source (origin
706 (method url-fetch)
707 (uri (cran-uri "DBI" version))
708 (sha256
709 (base32
710 "13n6ibmrma42qmq17qgkyjsc0ciwqf17sd7lw7w26pwpyjd4mwgg"))))
711 (build-system r-build-system)
712 (home-page "https://github.com/rstats-db/DBI")
713 (synopsis "R database interface")
714 (description
715 "The DBI package provides a database interface (DBI) definition for
716 communication between R and relational database management systems. All
717 classes in this package are virtual and need to be extended by the various
718 R/DBMS implementations.")
719 (license license:lgpl2.0+)))
720
721 (define-public r-bh
722 (package
723 (name "r-bh")
724 (version "1.60.0-2")
725 (source (origin
726 (method url-fetch)
727 (uri (cran-uri "BH" version))
728 (sha256
729 (base32
730 "136497fng9bcvrf8favpj8inz96pxdwp1rrb2k00sxjxjbgawhg4"))))
731 (build-system r-build-system)
732 (home-page "https://github.com/eddelbuettel/bh")
733 (synopsis "R package providing subset of Boost headers")
734 (description
735 "This package aims to provide the most useful subset of Boost libraries
736 for template use among CRAN packages.")
737 (license license:boost1.0)))
738
739 (define-public r-evaluate
740 (package
741 (name "r-evaluate")
742 (version "0.9")
743 (source (origin
744 (method url-fetch)
745 (uri (cran-uri "evaluate" version))
746 (sha256
747 (base32
748 "1bn6bympg9prr8d16g1g530bddii8i04hf4i2bkw0yf4dsfqq4g8"))))
749 (build-system r-build-system)
750 (propagated-inputs
751 `(("r-stringr" ,r-stringr)))
752 (home-page "https://github.com/hadley/evaluate")
753 (synopsis "Parsing and evaluation tools for R")
754 (description
755 "This package provides tools that allow you to recreate the parsing,
756 evaluation and display of R code, with enough information that you can
757 accurately recreate what happens at the command line. The tools can easily be
758 adapted for other output formats, such as HTML or LaTeX.")
759 (license license:gpl3+)))
760
761 (define-public r-formatr
762 (package
763 (name "r-formatr")
764 (version "1.4")
765 (source (origin
766 (method url-fetch)
767 (uri (cran-uri "formatR" version))
768 (sha256
769 (base32
770 "1fvynq0fj1r9grg9vvfdh5fl2riv6qki9f2rfpyvbvqq3xxpmi3f"))))
771 (build-system r-build-system)
772 (home-page "http://yihui.name/formatR")
773 (synopsis "Format R code automatically")
774 (description
775 "This package provides a function to format R source code. Spaces and
776 indent will be added to the code automatically, and comments will be preserved
777 under certain conditions, so that R code will be more human-readable and tidy.
778 There is also a Shiny app as a user interface in this package.")
779 (license license:gpl3+)))
780
781 (define-public r-highr
782 (package
783 (name "r-highr")
784 (version "0.6")
785 (source (origin
786 (method url-fetch)
787 (uri (cran-uri "highr" version))
788 (sha256
789 (base32
790 "0n9v44dxdy5fhkdmpbpa2p78whyd9z3rhhy42ipdz5m5vsr55qa3"))))
791 (build-system r-build-system)
792 (home-page "https://github.com/yihui/highr")
793 (synopsis "Syntax highlighting for R source code")
794 (description
795 "This package provides syntax highlighting for R source code. Currently
796 it supports LaTeX and HTML output. Source code of other languages is
797 supported via Andre Simon's highlight package.")
798 (license license:gpl3+)))
799
800 (define-public r-mime
801 (package
802 (name "r-mime")
803 (version "0.4")
804 (source (origin
805 (method url-fetch)
806 (uri (cran-uri "mime" version))
807 (sha256
808 (base32
809 "145cdcg252w2zsq67dmvmsqka60msfp7agymlxs3gl3ihgiwg46p"))))
810 (build-system r-build-system)
811 (home-page "https://github.com/yihui/mime")
812 (synopsis "R package to map filenames to MIME types")
813 (description
814 "This package guesses the MIME type from a filename extension using the
815 data derived from /etc/mime.types in UNIX-type systems.")
816 (license license:gpl2)))
817
818 (define-public r-markdown
819 (package
820 (name "r-markdown")
821 (version "0.7.7")
822 (source (origin
823 (method url-fetch)
824 (uri (cran-uri "markdown" version))
825 (sha256
826 (base32
827 "00j1hlib3il50azs2vlcyhi0bjpx1r50mxr9w9dl5g1bwjjc71hb"))))
828 (build-system r-build-system)
829 ;; Skip check phase because the tests require the r-knitr package to be
830 ;; installed. This prevents installation failures. Knitr normally
831 ;; shouldn't be available since r-markdown is a dependency of the r-knitr
832 ;; package.
833 (arguments `(#:tests? #f))
834 (propagated-inputs
835 `(("r-mime" ,r-mime)))
836 (home-page "https://github.com/rstudio/markdown")
837 (synopsis "Markdown rendering for R")
838 (description
839 "This package provides R bindings to the Sundown Markdown rendering
840 library (https://github.com/vmg/sundown). Markdown is a plain-text formatting
841 syntax that can be converted to XHTML or other formats.")
842 (license license:gpl2)))
843
844 (define-public r-yaml
845 (package
846 (name "r-yaml")
847 (version "2.1.13")
848 (source (origin
849 (method url-fetch)
850 (uri (cran-uri "yaml" version))
851 (sha256
852 (base32
853 "18kz5mfn7qpif5pn91w4vbrc5bkycsj85vwm5wxwzjlb02i9mxi6"))))
854 (build-system r-build-system)
855 (home-page "https://cran.r-project.org/web/packages/yaml/")
856 (synopsis "Methods to convert R data to YAML and back")
857 (description
858 "This package implements the libyaml YAML 1.1 parser and
859 emitter (http://pyyaml.org/wiki/LibYAML) for R.")
860 (license license:bsd-3)))
861
862 (define-public r-knitr
863 (package
864 (name "r-knitr")
865 (version "1.13")
866 (source (origin
867 (method url-fetch)
868 (uri (cran-uri "knitr" version))
869 (sha256
870 (base32
871 "0v69846myi4fbjp8wiik4295fhba67s3i6ccysghm6x031i2f26q"))))
872 (build-system r-build-system)
873 (propagated-inputs
874 `(("r-evaluate" ,r-evaluate)
875 ("r-digest" ,r-digest)
876 ("r-formatr" ,r-formatr)
877 ("r-highr" ,r-highr)
878 ("r-markdown" ,r-markdown)
879 ("r-stringr" ,r-stringr)
880 ("r-yaml" ,r-yaml)))
881 (home-page "http://yihui.name/knitr/")
882 (synopsis "General-purpose package for dynamic report generation in R")
883 (description
884 "This package provides a general-purpose tool for dynamic report
885 generation in R using Literate Programming techniques.")
886 ;; The code is released under any version of the GPL. As it is used by
887 ;; r-markdown which is available under GPLv2 only, we have chosen GPLv2+
888 ;; here.
889 (license license:gpl2+)))
890
891 (define-public r-knitrbootstrap
892 (package
893 (name "r-knitrbootstrap")
894 (version "1.0.0")
895 (source
896 (origin
897 (method url-fetch)
898 (uri (cran-uri "knitrBootstrap" version))
899 (sha256
900 (base32
901 "0pshn2slzqwpryklslsxwh1dmqcnwv6bwi7yfm6m342wjybpk0wl"))))
902 (properties `((upstream-name . "knitrBootstrap")))
903 (build-system r-build-system)
904 (propagated-inputs
905 `(("r-knitr" ,r-knitr)
906 ("r-rmarkdown" ,r-rmarkdown)))
907 (home-page "https://github.com/jimhester/knitrBootstrap")
908 (synopsis "Knitr bootstrap framework")
909 (description
910 "This package provides a framework to create Bootstrap 3 HTML reports
911 from knitr Rmarkdown.")
912 (license license:expat)))
913
914 (define-public r-microbenchmark
915 (package
916 (name "r-microbenchmark")
917 (version "1.4-2.1")
918 (source (origin
919 (method url-fetch)
920 (uri (cran-uri "microbenchmark" version))
921 (sha256
922 (base32
923 "0qn5r1a6qidghcisc2hpbdmj62pnixc3zz6p4ipk8mvakf0hdsvg"))))
924 (build-system r-build-system)
925 (propagated-inputs
926 `(("r-ggplot2" ,r-ggplot2)))
927 (home-page "https://cran.r-project.org/web/packages/microbenchmark/")
928 (synopsis "Accurate timing functions for R")
929 (description
930 "This package provides infrastructure to accurately measure and compare
931 the execution time of R expressions.")
932 (license license:bsd-2)))
933
934 (define-public r-codetools
935 (package
936 (name "r-codetools")
937 (version "0.2-14")
938 (source (origin
939 (method url-fetch)
940 (uri (cran-uri "codetools" version))
941 (sha256
942 (base32
943 "0y9r4m2b8xgavr89sc179knzwpz54xljbc1dinpq2q07i4xn0397"))))
944 (build-system r-build-system)
945 (home-page "https://cran.r-project.org/web/packages/codetools/index.html")
946 (synopsis "Code analysis tools for R")
947 (description "This package provides code analysis tools for R.")
948 (license license:gpl3+)))
949
950 (define-public r-pryr
951 (package
952 (name "r-pryr")
953 (version "0.1.2")
954 (source (origin
955 (method url-fetch)
956 (uri (cran-uri "pryr" version))
957 (sha256
958 (base32
959 "1in350a8hxwf580afavasvn3jc7x2p1b7nlwmj1scakfz74vghk5"))))
960 (build-system r-build-system)
961 (propagated-inputs
962 `(("r-stringr" ,r-stringr)
963 ("r-codetools" ,r-codetools)))
964 (native-inputs
965 `(("r-rcpp" ,r-rcpp)))
966 (home-page "https://github.com/hadley/pryr")
967 (synopsis "Tools for computing on the R language")
968 (description
969 "This package provides useful tools to pry back the covers of R and
970 understand the language at a deeper level.")
971 (license license:gpl2)))
972
973 (define-public r-memoise
974 (package
975 (name "r-memoise")
976 (version "1.0.0")
977 (source (origin
978 (method url-fetch)
979 (uri (cran-uri "memoise" version))
980 (sha256
981 (base32
982 "0sq2dhpvxy17v1baj256r0jnygdy3m5a8x4zh6vhv29957qnq6zx"))))
983 (build-system r-build-system)
984 (propagated-inputs
985 `(("r-digest" ,r-digest)))
986 (home-page "http://github.com/hadley/memoise")
987 (synopsis "Memoise functions for R")
988 (description
989 "This R package allows to cache the results of a function so that when
990 you call it again with the same arguments it returns the pre-computed value.")
991 (license license:expat)))
992
993 (define-public r-crayon
994 (package
995 (name "r-crayon")
996 (version "1.3.1")
997 (source (origin
998 (method url-fetch)
999 (uri (cran-uri "crayon" version))
1000 (sha256
1001 (base32
1002 "0d38fm06h272a8iqlc0d45m2rh36giwqw7mwq4z8hkp4vs975fmm"))))
1003 (build-system r-build-system)
1004 (propagated-inputs
1005 `(("r-memoise" ,r-memoise)))
1006 (home-page "https://github.com/gaborcsardi/crayon")
1007 (synopsis "Colored terminal output for R")
1008 (description
1009 "Colored terminal output on terminals that support ANSI color and
1010 highlight codes. It also works in Emacs ESS. ANSI color support is
1011 automatically detected. Colors and highlighting can be combined and nested.
1012 New styles can also be created easily. This package was inspired by the
1013 \"chalk\" JavaScript project.")
1014 (license license:expat)))
1015
1016 (define-public r-praise
1017 (package
1018 (name "r-praise")
1019 (version "1.0.0")
1020 (source
1021 (origin
1022 (method url-fetch)
1023 (uri (cran-uri "praise" version))
1024 (sha256
1025 (base32
1026 "1gfyypnvmih97p2r0php9qa39grzqpsdbq5g0fdsbpq5zms5w0sw"))))
1027 (build-system r-build-system)
1028 (home-page "https://github.com/gaborcsardi/praise")
1029 (synopsis "Functions to praise users")
1030 (description
1031 "This package provides template functions to assist in building friendly
1032 R packages that praise their users.")
1033 (license license:expat)))
1034
1035 (define-public r-testthat
1036 (package
1037 (name "r-testthat")
1038 (version "1.0.2")
1039 (source (origin
1040 (method url-fetch)
1041 (uri (cran-uri "testthat" version))
1042 (sha256
1043 (base32
1044 "0pj1r01x4ny4capr83dfa19hi5i2sjjxky99schzip8zrq5dzxqf"))))
1045 (build-system r-build-system)
1046 (propagated-inputs
1047 `(("r-digest" ,r-digest)
1048 ("r-crayon" ,r-crayon)
1049 ("r-magrittr" ,r-magrittr)
1050 ("r-praise" ,r-praise)
1051 ("r-r6" ,r-r6)))
1052 (home-page "https://github.com/hadley/testthat")
1053 (synopsis "Unit testing for R")
1054 (description
1055 "This package provides a unit testing system for R designed to be fun,
1056 flexible and easy to set up.")
1057 (license license:expat)))
1058
1059 (define-public r-r6
1060 (package
1061 (name "r-r6")
1062 (version "2.1.2")
1063 (source (origin
1064 (method url-fetch)
1065 (uri (cran-uri "R6" version))
1066 (sha256
1067 (base32
1068 "0yad91i9p4r8bbz6nq8zny39y767n9an7ak5p275ynx8km6v3yqv"))))
1069 (build-system r-build-system)
1070 (home-page "https://github.com/wch/R6/")
1071 (synopsis "Classes with reference semantics in R")
1072 (description
1073 "The R6 package allows the creation of classes with reference semantics,
1074 similar to R's built-in reference classes. Compared to reference classes, R6
1075 classes are simpler and lighter-weight, and they are not built on S4 classes
1076 so they do not require the methods package. These classes allow public and
1077 private members, and they support inheritance, even when the classes are
1078 defined in different packages.")
1079 (license license:expat)))
1080
1081 (define-public r-dplyr
1082 (package
1083 (name "r-dplyr")
1084 (version "0.4.3")
1085 (source (origin
1086 (method url-fetch)
1087 (uri (cran-uri "dplyr" version))
1088 (sha256
1089 (base32
1090 "1p8rbn4p4yrx2840dapwiahf9iqa8gnvd35nyc200wfhmrxlqdlc"))))
1091 (build-system r-build-system)
1092 (propagated-inputs
1093 `(("r-assertthat" ,r-assertthat)
1094 ("r-r6" ,r-r6)
1095 ("r-magrittr" ,r-magrittr)
1096 ("r-lazyeval" ,r-lazyeval)
1097 ("r-dbi" ,r-dbi)))
1098 (native-inputs
1099 `(("r-rcpp" ,r-rcpp)
1100 ("r-bh" ,r-bh)))
1101 (home-page "https://github.com/hadley/dplyr")
1102 (synopsis "Tools for working with data frames in R")
1103 (description
1104 "dplyr is the next iteration of plyr. It is focussed on tools for
1105 working with data frames. It has three main goals: 1) identify the most
1106 important data manipulation tools needed for data analysis and make them easy
1107 to use in R; 2) provide fast performance for in-memory data by writing key
1108 pieces of code in C++; 3) use the same code interface to work with data no
1109 matter where it is stored, whether in a data frame, a data table or
1110 database.")
1111 (license license:expat)))
1112
1113 (define-public r-acepack
1114 (package
1115 (name "r-acepack")
1116 (version "1.3-3.3")
1117 (source
1118 (origin
1119 (method url-fetch)
1120 (uri (cran-uri "acepack" version))
1121 (sha256
1122 (base32
1123 "13ry3vyys12iplb14jfhmkrl9g5fxg3iijiggq4s4zb5m5436b1y"))))
1124 (build-system r-build-system)
1125 (inputs
1126 `(("gfortran" ,gfortran)))
1127 (home-page "http://cran.r-project.org/web/packages/acepack")
1128 (synopsis "Functions for regression transformations")
1129 (description
1130 "This package provides ACE and AVAS methods for choosing regression
1131 transformations.")
1132 (license license:expat)))
1133
1134 (define-public r-cluster
1135 (package
1136 (name "r-cluster")
1137 (version "2.0.4")
1138 (source
1139 (origin
1140 (method url-fetch)
1141 (uri (cran-uri "cluster" version))
1142 (sha256
1143 (base32
1144 "1r669aaaia05i8sv8hxiig1ddah7hm8qw869wgig5i0zzk22bnfl"))))
1145 (build-system r-build-system)
1146 (inputs
1147 `(("gfortran" ,gfortran)))
1148 (home-page "http://cran.r-project.org/web/packages/cluster")
1149 (synopsis "Methods for data cluster analysis")
1150 (description
1151 "This package provides tools that are useful in finding groups in data.
1152 It is based on the methods described in Kaufman and Rousseeuw (1990) \"Finding
1153 Groups in Data\".")
1154 (license license:gpl2+)))
1155
1156 (define-public r-foreign
1157 (package
1158 (name "r-foreign")
1159 (version "0.8-66")
1160 (source
1161 (origin
1162 (method url-fetch)
1163 (uri (cran-uri "foreign" version))
1164 (sha256
1165 (base32
1166 "19278jm85728zb20800w6hq9q8jy8ywdn81mgmlnxkmrr9giwh6p"))))
1167 (build-system r-build-system)
1168 (home-page "http://cran.r-project.org/web/packages/foreign")
1169 (synopsis "Read data stored by other statistics software in R")
1170 (description
1171 "This package provides functions for reading and writing data stored by
1172 some versions of Epi Info, Minitab, S, SAS, SPSS, Stata, Systat and Weka, and
1173 for reading and writing some dBase files.")
1174 (license license:gpl2+)))
1175
1176 (define-public r-formula
1177 (package
1178 (name "r-formula")
1179 (version "1.2-1")
1180 (source
1181 (origin
1182 (method url-fetch)
1183 (uri (cran-uri "Formula" version))
1184 (sha256
1185 (base32
1186 "02in5325zzrqbhlygx6s0dinj6ymw845q70y56frqacv25ayzcax"))))
1187 (properties `((upstream-name . "Formula")))
1188 (build-system r-build-system)
1189 (home-page "http://cran.r-project.org/web/packages/Formula")
1190 (synopsis "Extended model formulas")
1191 (description
1192 "This package provides a new class @code{Formula}, which extends the base
1193 class @code{formula}. It supports extended formulas with multiple parts of
1194 regressors on the right-hand side and/or multiple responses on the left-hand
1195 side.")
1196 (license (list license:gpl2+ license:gpl3+))))
1197
1198 (define-public r-locfit
1199 (package
1200 (name "r-locfit")
1201 (version "1.5-9.1")
1202 (source
1203 (origin
1204 (method url-fetch)
1205 (uri (cran-uri "locfit" version))
1206 (sha256
1207 (base32
1208 "0lafrmq1q7x026m92h01hc9cjjiximqqi3v1g2hw7ai9vf7i897m"))))
1209 (build-system r-build-system)
1210 (home-page "http://cran.r-project.org/web/packages/locfit")
1211 (synopsis "Local regression, likelihood and density estimation")
1212 (description
1213 "This package provides functions used for local regression, likelihood
1214 and density estimation.")
1215 (license (list license:gpl2+ license:gpl3+))))
1216
1217 (define-public r-chron
1218 (package
1219 (name "r-chron")
1220 (version "2.3-47")
1221 (source (origin
1222 (method url-fetch)
1223 (uri (cran-uri "chron" version))
1224 (sha256
1225 (base32
1226 "1xj50kk8b8mbjpszp8i0wbripb5a4b36jcscwlbyap8n4487g34s"))))
1227 (build-system r-build-system)
1228 (home-page "http://cran.r-project.org/web/packages/chron")
1229 (synopsis "Chronological R objects which can handle dates and times")
1230 (description
1231 "This package provides chronological R objects which can handle dates and
1232 times.")
1233 (license license:gpl2)))
1234
1235 (define-public r-data-table
1236 (package
1237 (name "r-data-table")
1238 (version "1.9.6")
1239 (source (origin
1240 (method url-fetch)
1241 (uri (cran-uri "data.table" version))
1242 (sha256
1243 (base32
1244 "0vi3zplpxqbg78z9ifjfs1kl2i8qhkqxr7l9ysp2663kq54w6x3g"))))
1245 (build-system r-build-system)
1246 (propagated-inputs
1247 `(("r-chron" ,r-chron)))
1248 (home-page "https://github.com/Rdatatable/data.table/wiki")
1249 (synopsis "Enhanced version of data.frame R object")
1250 (description
1251 "The R package @code{data.table} is an extension of @code{data.frame}
1252 providing functions for fast aggregation of large data (e.g. 100GB in RAM),
1253 fast ordered joins, fast add/modify/delete of columns by group, column listing
1254 and fast file reading.")
1255 (license license:gpl3+)))
1256
1257 (define-public r-xtable
1258 (package
1259 (name "r-xtable")
1260 (version "1.8-2")
1261 (source
1262 (origin
1263 (method url-fetch)
1264 (uri (cran-uri "xtable" version))
1265 (sha256
1266 (base32
1267 "0398qkpvlw3dv0myz4mjcyqwpwc2m31l127r8vdzwc71wb6s28qn"))))
1268 (build-system r-build-system)
1269 (native-inputs
1270 `(("r-knitr" ,r-knitr)))
1271 (home-page "http://xtable.r-forge.r-project.org/")
1272 (synopsis "Export R tables to LaTeX or HTML")
1273 (description
1274 "This package provides tools to export R data as LaTeX and HTML tables.")
1275 (license license:gpl2+)))
1276
1277 (define-public python-patsy
1278 (package
1279 (name "python-patsy")
1280 (version "0.4.1")
1281 (source (origin
1282 (method url-fetch)
1283 (uri (pypi-uri "patsy" version ".zip"))
1284 (sha256
1285 (base32
1286 "1m6knyq8hbqlx242y4da02j0x86j4qggs1j7q186w3jv0j0c476w"))))
1287 (build-system python-build-system)
1288 (arguments
1289 `(#:phases
1290 (modify-phases %standard-phases
1291 (replace 'check (lambda _ (zero? (system* "nosetests" "-v"))))
1292 (add-after 'unpack 'prevent-generation-of-egg-archive
1293 (lambda _
1294 (substitute* "setup.py"
1295 (("from setuptools import setup")
1296 "from distutils.core import setup"))
1297 #t)))))
1298 (propagated-inputs
1299 `(("python-numpy" ,python-numpy)
1300 ("python-scipy" ,python-scipy)
1301 ("python-six" ,python-six)))
1302 (native-inputs
1303 `(("python-nose" ,python-nose)
1304 ("unzip" ,unzip)))
1305 (home-page "https://github.com/pydata/patsy")
1306 (synopsis "Describe statistical models and build design matrices")
1307 (description
1308 "Patsy is a Python package for describing statistical models and for
1309 building design matrices.")
1310 ;; The majority of the code is distributed under BSD-2. The module
1311 ;; patsy.compat contains code derived from the Python standard library,
1312 ;; and is covered by the PSFL.
1313 (license (list license:bsd-2 license:psfl))
1314 (properties `((python2-variant . ,(delay python2-patsy))))))
1315
1316 (define-public python2-patsy
1317 (let ((patsy (package-with-python2 (strip-python2-variant python-patsy))))
1318 (package (inherit patsy)
1319 (native-inputs
1320 `(("python2-setuptools" ,python2-setuptools)
1321 ,@(package-native-inputs patsy))))))
1322
1323 (define-public python-statsmodels
1324 (package
1325 (name "python-statsmodels")
1326 (version "0.6.1")
1327 (source
1328 (origin
1329 (method url-fetch)
1330 (uri (string-append "https://pypi.python.org/packages/source/"
1331 "s/statsmodels/statsmodels-" version ".tar.gz"))
1332 (sha256
1333 (base32
1334 "0xn67sqr0cc1lmlhzm71352hrb4hw7g318p5ff5q97pc98vl8kmy"))))
1335 (build-system python-build-system)
1336 (arguments
1337 `(#:phases
1338 (modify-phases %standard-phases
1339 ;; tests must be run after installation
1340 (delete 'check)
1341 (add-after 'unpack 'set-matplotlib-backend-to-agg
1342 (lambda _
1343 ;; Set the matplotlib backend to Agg to avoid problems using the
1344 ;; GTK backend without a display.
1345 (substitute* (find-files "statsmodels/graphics/tests" "\\.py")
1346 (("import matplotlib\\.pyplot as plt" line)
1347 (string-append "import matplotlib;matplotlib.use('Agg');"
1348 line)))
1349 #t))
1350 (add-after 'install 'check
1351 (lambda _
1352 (with-directory-excursion "/tmp"
1353 (zero? (system* "nosetests"
1354 "--stop"
1355 "-v" "statsmodels"))))))))
1356 (propagated-inputs
1357 `(("python-numpy" ,python-numpy)
1358 ("python-scipy" ,python-scipy)
1359 ("python-pandas" ,python-pandas)
1360 ("python-patsy" ,python-patsy)
1361 ("python-matplotlib" ,python-matplotlib)))
1362 (native-inputs
1363 `(("python-cython" ,python-cython)
1364 ("python-nose" ,python-nose)
1365 ("python-sphinx" ,python-sphinx)))
1366 (home-page "http://statsmodels.sourceforge.net/")
1367 (synopsis "Statistical modeling and econometrics in Python")
1368 (description
1369 "Statsmodels is a Python package that provides a complement to scipy for
1370 statistical computations including descriptive statistics and estimation and
1371 inference for statistical models.")
1372 (license license:bsd-3)))
1373
1374 (define-public python2-statsmodels
1375 (let ((stats (package-with-python2 python-statsmodels)))
1376 (package (inherit stats)
1377 (propagated-inputs
1378 `(("python2-numpy" ,python2-numpy)
1379 ("python2-scipy" ,python2-scipy)
1380 ("python2-pandas" ,python2-pandas)
1381 ("python2-patsy" ,python2-patsy)
1382 ("python2-matplotlib" ,python2-matplotlib)))
1383 (native-inputs
1384 `(("python2-setuptools" ,python2-setuptools)
1385 ,@(package-native-inputs stats))))))
1386
1387 (define-public r-coda
1388 (package
1389 (name "r-coda")
1390 (version "0.18-1")
1391 (source (origin
1392 (method url-fetch)
1393 (uri (cran-uri "coda" version))
1394 (sha256
1395 (base32
1396 "03sc780734zj2kqcm8lkyvf76fql0jbfhkblpn8l58zmb6cqi958"))))
1397 (build-system r-build-system)
1398 (propagated-inputs
1399 `(("r-lattice" ,r-lattice)))
1400 (home-page "http://cran.r-project.org/web/packages/coda")
1401 (synopsis "This is a package for Output Analysis and Diagnostics for MCMC")
1402 (description "This package provides functions for summarizing and plotting
1403 the output from Markov Chain Monte Carlo (MCMC) simulations, as well as
1404 diagnostic tests of convergence to the equilibrium distribution of the Markov
1405 chain.")
1406 (license license:gpl2+)))
1407
1408 (define-public r-ade4
1409 (package
1410 (name "r-ade4")
1411 (version "1.7-4")
1412 (source
1413 (origin
1414 (method url-fetch)
1415 (uri (cran-uri "ade4" version))
1416 (sha256
1417 (base32
1418 "17sbicash7z4b63dlrbaf8xx2pbwh62vykzvhdjs43h8jkl881y7"))))
1419 (build-system r-build-system)
1420 (home-page "http://pbil.univ-lyon1.fr/ADE-4")
1421 (synopsis "Multivariate data analysis and graphical display")
1422 (description
1423 "The ade4 package contains data analysis functions to analyze ecological
1424 and environmental data in the framework of Euclidean exploratory methods.")
1425 (license license:gpl2+)))
1426
1427 (define-public r-xml2
1428 (package
1429 (name "r-xml2")
1430 (version "0.1.2")
1431 (source
1432 (origin
1433 (method url-fetch)
1434 (uri (cran-uri "xml2" version))
1435 (sha256
1436 (base32
1437 "0jjilz36h7vbdbkpvjnja1vgjf6d1imql3z4glqn2m2b74w5qm4c"))))
1438 (build-system r-build-system)
1439 (inputs
1440 `(("libxml2" ,libxml2)))
1441 (propagated-inputs
1442 `(("r-rcpp" ,r-rcpp)
1443 ("r-bh" ,r-bh)))
1444 (home-page "https://github.com/hadley/xml2")
1445 (synopsis "Parse XML with R")
1446 (description
1447 "This package provides a simple, consistent interface to working with XML
1448 files in R. It is built on top of the libxml2 C library.")
1449 (license license:gpl2+)))
1450
1451 (define-public r-rversions
1452 (package
1453 (name "r-rversions")
1454 (version "1.0.2")
1455 (source (origin
1456 (method url-fetch)
1457 (uri (cran-uri "rversions" version))
1458 (sha256
1459 (base32
1460 "0xmi461g1rf5ngb7r1sri798jn6icld1xq25wj9jii2ca8j8xv68"))))
1461 (build-system r-build-system)
1462 (propagated-inputs
1463 `(("r-curl" ,r-curl)
1464 ("r-xml2" ,r-xml2)))
1465 (home-page "https://github.com/metacran/rversions")
1466 (synopsis "Query R versions, including 'r-release' and 'r-oldrel'")
1467 (description
1468 "This package provides functions to query the main R repository to find
1469 the versions that @code{r-release} and @code{r-oldrel} refer to, and also all
1470 previous R versions and their release dates.")
1471 (license license:expat)))
1472
1473 (define-public r-whisker
1474 (package
1475 (name "r-whisker")
1476 (version "0.3-2")
1477 (source (origin
1478 (method url-fetch)
1479 (uri (cran-uri "whisker" version))
1480 (sha256
1481 (base32
1482 "0z4cn115gxcl086d6bnqr8afi67b6a7xqg6ivmk3l4ng1x8kcj28"))))
1483 (build-system r-build-system)
1484 (home-page "http://github.com/edwindj/whisker")
1485 (synopsis "Logicless mustache templating for R")
1486 (description
1487 "This package provides logicless templating, with a syntax that is not
1488 limited to R.")
1489 (license license:gpl3+)))
1490
1491 (define-public r-brew
1492 (package
1493 (name "r-brew")
1494 (version "1.0-6")
1495 (source (origin
1496 (method url-fetch)
1497 (uri (cran-uri "brew" version))
1498 (sha256
1499 (base32
1500 "1vghazbcha8gvkwwcdagjvzx6yl8zm7kgr0i9wxr4jng06d1l3fp"))))
1501 (build-system r-build-system)
1502 (home-page "http://cran.r-project.org/web/packages/brew")
1503 (synopsis "Templating framework for report generation")
1504 (description
1505 "The brew package implements a templating framework for mixing text and R
1506 code for report generation. The template syntax is similar to PHP, Ruby's erb
1507 module, Java Server Pages, and Python's psp module.")
1508 (license license:gpl2+)))
1509
1510 (define-public r-roxygen2
1511 (package
1512 (name "r-roxygen2")
1513 (version "5.0.1")
1514 (source (origin
1515 (method url-fetch)
1516 (uri (cran-uri "roxygen2" version))
1517 (sha256
1518 (base32
1519 "19gblyrrn29msbpawcb1hn5m1rshiqwxy0lby0vf92rm13fmsxcz"))))
1520 (build-system r-build-system)
1521 (propagated-inputs
1522 `(("r-brew" ,r-brew)
1523 ("r-digest" ,r-digest)
1524 ("r-rcpp" ,r-rcpp)
1525 ("r-stringi" ,r-stringi)
1526 ("r-stringr" ,r-stringr)))
1527 (home-page "https://github.com/klutometis/roxygen")
1528 (synopsis "In-source documentation system for R")
1529 (description
1530 "Roxygen2 is a Doxygen-like in-source documentation system for Rd,
1531 collation, and NAMESPACE files.")
1532 (license license:gpl2+)))
1533
1534 (define-public r-openssl
1535 (package
1536 (name "r-openssl")
1537 (version "0.9.3")
1538 (source
1539 (origin
1540 (method url-fetch)
1541 (uri (cran-uri "openssl" version))
1542 (sha256
1543 (base32
1544 "0ldqam7d9fyxwhr651ld6lsh05lg4v2y8ajxwzq9ywzjmfb3vlpz"))))
1545 (build-system r-build-system)
1546 (inputs
1547 `(("openssl" ,openssl)))
1548 (home-page "https://github.com/jeroenooms/openssl")
1549 (synopsis "Toolkit for encryption, signatures and certificates")
1550 (description
1551 "This package provides R bindings to OpenSSL libssl and libcrypto, plus
1552 custom SSH pubkey parsers. It supports RSA, DSA and NIST curves P-256, P-384
1553 and P-521. Cryptographic signatures can either be created and verified
1554 manually or via x509 certificates. AES block cipher is used in CBC mode for
1555 symmetric encryption; RSA for asymmetric (public key) encryption. High-level
1556 envelope functions combine RSA and AES for encrypting arbitrary sized data.
1557 Other utilities include key generators, hash functions (md5, sha1, sha256,
1558 etc), base64 encoder, a secure random number generator, and @code{bignum} math
1559 methods for manually performing crypto calculations on large multibyte
1560 integers.")
1561 (license license:expat)))
1562
1563 (define-public r-httr
1564 (package
1565 (name "r-httr")
1566 (version "1.1.0")
1567 (source (origin
1568 (method url-fetch)
1569 (uri (cran-uri "httr" version))
1570 (sha256
1571 (base32
1572 "08sq34pknsfcy8lm06nydi12mbaxpqpgb025ahr33v9d3g0wvh6p"))))
1573 (build-system r-build-system)
1574 (propagated-inputs
1575 `(("r-curl" ,r-curl)
1576 ("r-digest" ,r-digest)
1577 ("r-jsonlite" ,r-jsonlite)
1578 ("r-openssl" ,r-openssl)
1579 ("r-mime" ,r-mime)
1580 ("r-r6" ,r-r6)
1581 ("r-stringr" ,r-stringr)))
1582 (home-page "https://github.com/hadley/httr")
1583 (synopsis "Tools for working with URLs and HTTP")
1584 (description
1585 "The aim of httr is to provide a wrapper for RCurl customised to the
1586 demands of modern web APIs. It provides useful tools for working with HTTP
1587 organised by HTTP verbs (@code{GET()}, @code{POST()}, etc). Configuration
1588 functions make it easy to control additional request components.")
1589 (license license:expat)))
1590
1591 (define-public r-git2r
1592 (package
1593 (name "r-git2r")
1594 (version "0.15.0")
1595 (source (origin
1596 (method url-fetch)
1597 (uri (cran-uri "git2r" version))
1598 (sha256
1599 (base32
1600 "1rpdf85wy9fp456ypvbhl3p9whkb7kgl0n7rkqxd2bhvyzkvjak8"))))
1601 (build-system r-build-system)
1602 ;; This R package contains modified sources of libgit2. This modified
1603 ;; version of libgit2 is built as the package is built. Hence libgit2 is
1604 ;; not among the inputs of this package.
1605 (inputs
1606 `(("libssh2" ,libssh2)
1607 ("openssl" ,openssl)
1608 ("zlib" ,zlib)))
1609 (home-page "https://github.com/ropensci/git2r")
1610 (synopsis "Access Git repositories with R")
1611 (description
1612 "This package provides an R interface to the libgit2 library, which is a
1613 pure C implementation of the Git core methods.")
1614 ;; GPLv2 only with linking exception.
1615 (license license:gpl2)))
1616
1617 (define-public r-rstudioapi
1618 (package
1619 (name "r-rstudioapi")
1620 (version "0.5")
1621 (source (origin
1622 (method url-fetch)
1623 (uri (cran-uri "rstudioapi" version))
1624 (sha256
1625 (base32
1626 "0sgnqfx0m3hzh57k10s7ndrbw7yqjjjcgfikafya98jcc7wmpwym"))))
1627 (build-system r-build-system)
1628 (home-page "http://cran.r-project.org/web/packages/rstudioapi")
1629 (synopsis "Safely access the RStudio API")
1630 (description
1631 "This package provides functions to access the RStudio API and provide
1632 informative error messages when it's not available.")
1633 (license license:expat)))
1634
1635 (define-public r-devtools
1636 (package
1637 (name "r-devtools")
1638 (version "1.11.1")
1639 (source (origin
1640 (method url-fetch)
1641 (uri (cran-uri "devtools" version))
1642 (sha256
1643 (base32
1644 "0ik3l3q62sspdph613f9ik5yz36s8q5nrc50dqgn3pxzvpwpdj2i"))))
1645 (build-system r-build-system)
1646 (propagated-inputs
1647 `(("r-curl" ,r-curl)
1648 ("r-digest" ,r-digest)
1649 ("r-evaluate" ,r-evaluate)
1650 ("r-git2r" ,r-git2r)
1651 ("r-httr" ,r-httr)
1652 ("r-jsonlite" ,r-jsonlite)
1653 ("r-memoise" ,r-memoise)
1654 ("r-roxygen2" ,r-roxygen2)
1655 ("r-rstudioapi" ,r-rstudioapi)
1656 ("r-rversions" ,r-rversions)
1657 ("r-whisker" ,r-whisker)
1658 ("r-withr" ,r-withr)))
1659 (home-page "https://github.com/hadley/devtools")
1660 (synopsis "Tools to make developing R packages easier")
1661 (description "The devtools package is a collection of package development
1662 tools to simplify the devolpment of R packages.")
1663 (license license:gpl2+)))
1664
1665 (define-public r-withr
1666 (package
1667 (name "r-withr")
1668 (version "1.0.1")
1669 (source (origin
1670 (method url-fetch)
1671 (uri (cran-uri "withr" version))
1672 (sha256
1673 (base32
1674 "0zbj3rd7dc0ycknmay7y7rm1qvnh9n05jw93gjggz46j2zfmy93y"))))
1675 (build-system r-build-system)
1676 (home-page "https://github.com/jimhester/withr")
1677 (synopsis "Run code with temporarily modified global state")
1678 (description
1679 "This package provides a set of functions to run R code in an environment
1680 in which global state has been temporarily modified. Many of these functions
1681 were originally a part of the r-devtools package.")
1682 (license license:gpl2+)))
1683
1684 (define-public r-readr
1685 (package
1686 (name "r-readr")
1687 (version "0.2.2")
1688 (source (origin
1689 (method url-fetch)
1690 (uri (cran-uri "readr" version))
1691 (sha256
1692 (base32
1693 "156422xwvskynna5kjc8h1qqnn50kxgjrihl2h2b7vm9sxxdyr2m"))))
1694 (build-system r-build-system)
1695 (propagated-inputs
1696 `(("r-curl" ,r-curl)
1697 ("r-rcpp" ,r-rcpp)
1698 ("r-bh" ,r-bh)))
1699 (home-page "https://github.com/hadley/readr")
1700 (synopsis "Read tabular data")
1701 (description
1702 "This package provides functions to read flat or tabular text files from
1703 disk (or a connection).")
1704 (license license:gpl2+)))
1705
1706 (define-public r-plotrix
1707 (package
1708 (name "r-plotrix")
1709 (version "3.6-2")
1710 (source (origin
1711 (method url-fetch)
1712 (uri (cran-uri "plotrix" version))
1713 (sha256
1714 (base32
1715 "1jn1k3skmlgyvpijj6vlcn5m2zgrsdh00g1fq8n5dqs1pkl1sqrw"))))
1716 (build-system r-build-system)
1717 (home-page "http://cran.r-project.org/web/packages/plotrix")
1718 (synopsis "Various plotting functions")
1719 (description
1720 "This package provides lots of plotting, various labeling, axis and color
1721 scaling functions for R.")
1722 (license license:gpl2+)))
1723
1724 (define-public r-gridbase
1725 (package
1726 (name "r-gridbase")
1727 (version "0.4-7")
1728 (source (origin
1729 (method url-fetch)
1730 (uri (cran-uri "gridBase" version))
1731 (sha256
1732 (base32
1733 "09jzw4rzwf2y5lcz7b16mb68pn0fqigv34ff7lr6w3yi9k91i1xy"))))
1734 (build-system r-build-system)
1735 (home-page "http://cran.r-project.org/web/packages/gridBase")
1736 (synopsis "Integration of base and grid graphics")
1737 (description
1738 "This package provides an integration of base and grid graphics for R.")
1739 (license license:gpl2+)))
1740
1741 (define-public r-lattice
1742 (package
1743 (name "r-lattice")
1744 (version "0.20-33")
1745 (source (origin
1746 (method url-fetch)
1747 (uri (cran-uri "lattice" version))
1748 (sha256
1749 (base32
1750 "0car12x5vl9k180i9pc86lq3cvwqakdpqn3lgdf98k9n2h52cilg"))))
1751 (build-system r-build-system)
1752 (home-page "http://lattice.r-forge.r-project.org/")
1753 (synopsis "High-level data visualization system")
1754 (description
1755 "The lattice package provides a powerful and elegant high-level data
1756 visualization system inspired by Trellis graphics, with an emphasis on
1757 multivariate data. Lattice is sufficient for typical graphics needs, and is
1758 also flexible enough to handle most nonstandard requirements.")
1759 (license license:gpl2+)))
1760
1761 (define-public r-latticeextra
1762 (package
1763 (name "r-latticeextra")
1764 (version "0.6-28")
1765 (source
1766 (origin
1767 (method url-fetch)
1768 (uri (cran-uri "latticeExtra" version))
1769 (sha256
1770 (base32
1771 "1hkyqsa7klk5glj9y1hg3rxr5qilqw8h0017zc4c3nps7lr9a1kq"))))
1772 (properties `((upstream-name . "latticeExtra")))
1773 (build-system r-build-system)
1774 (propagated-inputs
1775 `(("r-lattice" ,r-lattice)
1776 ("r-rcolorbrewer" ,r-rcolorbrewer)))
1777 (home-page "http://latticeextra.r-forge.r-project.org/")
1778 (synopsis "Extra graphical utilities based on lattice")
1779 (description
1780 "Building on the infrastructure provided by the lattice package, this
1781 package provides several new high-level graphics functions and methods, as
1782 well as additional utilities such as panel and axis annotation functions.")
1783 (license license:gpl2+)))
1784
1785 (define-public r-rcpparmadillo
1786 (package
1787 (name "r-rcpparmadillo")
1788 (version "0.6.700.6.0")
1789 (source (origin
1790 (method url-fetch)
1791 (uri (cran-uri "RcppArmadillo" version))
1792 (sha256
1793 (base32
1794 "0x736cjg1pbvn8c6h91c88qmmz4pddvvqg88k9c9kwhn24fjrra0"))
1795 (modules '((guix build utils)))
1796 ;; Remove bundled armadillo sources
1797 (snippet
1798 '(begin
1799 (delete-file-recursively "inst/include/armadillo_bits")
1800 (delete-file "inst/include/armadillo")))))
1801 (properties `((upstream-name . "RcppArmadillo")))
1802 (build-system r-build-system)
1803 (arguments
1804 `(#:phases
1805 (modify-phases %standard-phases
1806 (add-after 'unpack 'link-against-armadillo
1807 (lambda _
1808 (substitute* "src/Makevars"
1809 (("PKG_LIBS=" prefix)
1810 (string-append prefix "-larmadillo"))))))))
1811 (propagated-inputs
1812 `(("r-rcpp" ,r-rcpp)
1813 ("armadillo" ,armadillo-for-rcpparmadillo)))
1814 (home-page "https://github.com/RcppCore/RcppArmadillo")
1815 (synopsis "Rcpp integration for the Armadillo linear algebra library")
1816 (description
1817 "Armadillo is a templated C++ linear algebra library that aims towards a
1818 good balance between speed and ease of use. Integer, floating point and
1819 complex numbers are supported, as well as a subset of trigonometric and
1820 statistics functions. Various matrix decompositions are provided through
1821 optional integration with LAPACK and ATLAS libraries. This package includes
1822 the header files from the templated Armadillo library.")
1823 ;; Armadillo is licensed under the MPL 2.0, while RcppArmadillo (the Rcpp
1824 ;; bindings to Armadillo) is licensed under the GNU GPL version 2 or
1825 ;; later, as is the rest of 'Rcpp'.
1826 (license license:gpl2+)))
1827
1828 (define-public r-bitops
1829 (package
1830 (name "r-bitops")
1831 (version "1.0-6")
1832 (source (origin
1833 (method url-fetch)
1834 (uri (cran-uri "bitops" version))
1835 (sha256
1836 (base32
1837 "176nr5wpnkavn5z0yy9f7d47l37ndnn2w3gv854xav8nnybi6wwv"))))
1838 (build-system r-build-system)
1839 (home-page "http://cran.r-project.org/web/packages/bitops")
1840 (synopsis "Bitwise operations")
1841 (description
1842 "This package provides functions for bitwise operations on integer
1843 vectors.")
1844 (license license:gpl2+)))
1845
1846 (define-public r-catools
1847 (package
1848 (name "r-catools")
1849 (version "1.17.1")
1850 (source (origin
1851 (method url-fetch)
1852 (uri (cran-uri "caTools" version))
1853 (sha256
1854 (base32
1855 "1x4szsn2qmbzpyjfdaiz2q7jwhap2gky9wq0riah74q0pzz76ank"))))
1856 (properties `((upstream-name . "caTools")))
1857 (build-system r-build-system)
1858 (propagated-inputs
1859 `(("r-bitops" ,r-bitops)))
1860 (home-page "http://cran.r-project.org/web/packages/caTools")
1861 (synopsis "Various tools including functions for moving window statistics")
1862 (description
1863 "This package contains several basic utility functions including:
1864 moving (rolling, running) window statistic functions, read/write for GIF and
1865 ENVI binary files, fast calculation of AUC, LogitBoost classifier, base64
1866 encoder/decoder, round-off-error-free sum and cumsum, etc.")
1867 (license license:gpl3+)))
1868
1869 (define-public r-rmarkdown
1870 (package
1871 (name "r-rmarkdown")
1872 (version "0.9.6")
1873 (source
1874 (origin
1875 (method url-fetch)
1876 (uri (cran-uri "rmarkdown" version))
1877 (sha256
1878 (base32
1879 "09ajq5miqzz46q0i9svvbh93dbi7xbjn4702d6z3scdz272gx7l2"))))
1880 (properties `((upstream-name . "rmarkdown")))
1881 (build-system r-build-system)
1882 (propagated-inputs
1883 `(("r-catools" ,r-catools)
1884 ("r-htmltools" ,r-htmltools)
1885 ("r-knitr" ,r-knitr)
1886 ("r-yaml" ,r-yaml)
1887 ("ghc-pandoc" ,ghc-pandoc)))
1888 (home-page "http://rmarkdown.rstudio.com")
1889 (synopsis "Convert R Markdown documents into a variety of formats")
1890 (description
1891 "This package provides tools to convert R Markdown documents into a
1892 variety of formats.")
1893 (license license:gpl3+)))
1894
1895 (define-public r-gtable
1896 (package
1897 (name "r-gtable")
1898 (version "0.2.0")
1899 (source (origin
1900 (method url-fetch)
1901 (uri (cran-uri "gtable" version))
1902 (sha256
1903 (base32
1904 "0vz7073m0a2q12qzzihrfh5c2kx5jqi5l7z470fxmwqghdllh7l0"))))
1905 (properties `((upstream-name . "gtable")))
1906 (build-system r-build-system)
1907 (home-page "http://cran.r-project.org/web/packages/gtable")
1908 (synopsis "Arrange grobs in tables")
1909 (description
1910 "This package provides tools to make it easier to work with tables of
1911 grobs.")
1912 (license license:gpl2+)))
1913
1914 (define-public r-gridextra
1915 (package
1916 (name "r-gridextra")
1917 (version "2.2.1")
1918 (source (origin
1919 (method url-fetch)
1920 (uri (cran-uri "gridExtra" version))
1921 (sha256
1922 (base32
1923 "0638ihwl00j76ivaxxhxvi8z573lwy1jym3srr78mx6dbdd4bzj4"))))
1924 (properties `((upstream-name . "gridExtra")))
1925 (build-system r-build-system)
1926 (propagated-inputs
1927 `(("r-gtable" ,r-gtable)))
1928 (native-inputs
1929 `(("r-knitr" ,r-knitr))) ;for building vignettes
1930 (home-page "https://github.com/baptiste/gridextra")
1931 (synopsis "Miscellaneous functions for \"Grid\" graphics")
1932 (description
1933 "This package provides a number of user-level functions to work with
1934 @code{grid} graphics, notably to arrange multiple grid-based plots on a page,
1935 and draw tables.")
1936 (license license:gpl2+)))
1937
1938 (define-public r-rsqlite
1939 (package
1940 (name "r-rsqlite")
1941 (version "1.0.0")
1942 (source (origin
1943 (method url-fetch)
1944 (uri (cran-uri "RSQLite" version))
1945 (sha256
1946 (base32
1947 "08b1syv8z887gxiw8i09dpqh0zisfb6ihq6qqr01zipvkahzq34f"))))
1948 (properties `((upstream-name . "RSQLite")))
1949 (build-system r-build-system)
1950 (propagated-inputs
1951 `(("r-dbi" ,r-dbi)))
1952 (home-page "https://github.com/rstats-db/RSQLite")
1953 (synopsis "SQLite interface for R")
1954 (description
1955 "This package embeds the SQLite database engine in R and provides an
1956 interface compliant with the DBI package. The source for the SQLite
1957 engine (version 3.8.6) is included.")
1958 (license license:lgpl2.0+)))
1959
1960 (define-public r-rcurl
1961 (package
1962 (name "r-rcurl")
1963 (version "1.95-0.1.2")
1964 (source (origin
1965 (method url-fetch)
1966 (uri (string-append "http://www.bioconductor.org/packages/"
1967 "release/extra/src/"
1968 "contrib/RCurl_" version ".tar.gz"))
1969 (sha256
1970 (base32
1971 "0l7qi45jxlf898n0jazabnam1yyczvqfdknd00bdirhhiplpd1sc"))))
1972 (properties `((upstream-name . "RCurl")))
1973 (build-system r-build-system)
1974 (inputs
1975 `(("libcurl" ,curl)))
1976 (propagated-inputs
1977 `(("r-bitops" ,r-bitops)))
1978 (home-page "http://www.omegahat.org/RCurl")
1979 (synopsis "General network client interface for R")
1980 (description
1981 "The package allows one to compose general HTTP requests and provides
1982 convenient functions to fetch URIs, GET and POST forms, etc. and process the
1983 results returned by the Web server. This provides a great deal of control
1984 over the HTTP/FTP/... connection and the form of the request while providing a
1985 higher-level interface than is available just using R socket connections.
1986 Additionally, the underlying implementation is robust and extensive,
1987 supporting FTP/FTPS/TFTP (uploads and downloads), SSL/HTTPS, telnet, dict,
1988 ldap, and also supports cookies, redirects, authentication, etc.")
1989 (license license:bsd-3)))
1990
1991 (define-public r-xml
1992 (package
1993 (name "r-xml")
1994 (version "3.98-1.4")
1995 (source (origin
1996 (method url-fetch)
1997 (uri (cran-uri "XML" version))
1998 (sha256
1999 (base32
2000 "09hiy5a875v2fhsgrsfymrwccn9249wnnsr6ck2slrig65svq2lw"))))
2001 (properties
2002 `((upstream-name . "XML")))
2003 (build-system r-build-system)
2004 (inputs
2005 `(("libxml2" ,libxml2)))
2006 (propagated-inputs
2007 `(("r-rcurl" ,r-rcurl)))
2008 (home-page "http://www.omegahat.org/RSXML")
2009 (synopsis "Tools for parsing and generating XML within R")
2010 (description
2011 "Many approaches for both reading and creating XML (and HTML)
2012 documents (including DTDs), both local and accessible via HTTP or FTP. Also
2013 offers access to an XPath \"interpreter\".")
2014 (license license:bsd-2)))
2015
2016 (define-public r-xnomial
2017 (package
2018 (name "r-xnomial")
2019 (version "1.0.4")
2020 (source
2021 (origin (method url-fetch)
2022 (uri (cran-uri "XNomial" version))
2023 (sha256
2024 (base32
2025 "1mwx302576rmsjllbq2clfxilm3hkyp5bw0wmwqbn0kgv5wpy8z6"))))
2026 (properties (quasiquote ((upstream-name . "XNomial"))))
2027 (build-system r-build-system)
2028 (home-page "http://cran.r-project.org/web/packages/XNomial")
2029 (synopsis "Goodness-of-Fit test for multinomial data")
2030 (description
2031 "This package provides an exact Goodness-of-Fit test for
2032 multinomial data with fixed probabilities. It can be used to
2033 determine whether a set of counts fits a given expected ratio. To see
2034 whether a set of observed counts fits an expectation, one can examine
2035 all possible outcomes with @code{xmulti()} or a random sample of them
2036 with @code{xmonte()} and find the probability of an observation
2037 deviating from the expectation by at least as much as the observed.
2038 As a measure of deviation from the expected, one can use the
2039 log-likelihood ratio, the multinomial probability, or the classic
2040 chi-square statistic. A histogram of the test statistic can also be
2041 plotted and compared with the asymptotic curve.")
2042 (license (list license:gpl2+ license:gpl3+))))
2043
2044 (define-public r-lambda-r
2045 (package
2046 (name "r-lambda-r")
2047 (version "1.1.7")
2048 (source (origin
2049 (method url-fetch)
2050 (uri (cran-uri "lambda.r" version))
2051 (sha256
2052 (base32
2053 "1lxzrwyminc3dfb07pbn1rmj45kplxgsb17b06pzflj728knbqwa"))))
2054 (properties `((upstream-name . "lambda.r")))
2055 (build-system r-build-system)
2056 (home-page "http://cran.r-project.org/web/packages/lambda.r")
2057 (synopsis "Functional programming extension for R")
2058 (description
2059 "This package provides a language extension to efficiently write
2060 functional programs in R. Syntax extensions include multi-part function
2061 definitions, pattern matching, guard statements, built-in (optional) type
2062 safety.")
2063 (license license:lgpl3+)))
2064
2065 (define-public r-futile-options
2066 (package
2067 (name "r-futile-options")
2068 (version "1.0.0")
2069 (source (origin
2070 (method url-fetch)
2071 (uri (cran-uri "futile.options" version))
2072 (sha256
2073 (base32
2074 "1hp82h6xqq5cck67h7lpf22n3j7mg3v1mla5y5ivnzrrb7iyr17f"))))
2075 (properties
2076 `((upstream-name . "futile.options")))
2077 (build-system r-build-system)
2078 (home-page "http://cran.r-project.org/web/packages/futile.options")
2079 (synopsis "Options management framework")
2080 (description
2081 "The futile.options subsystem provides an easy user-defined options
2082 management system that is properly scoped. This means that options created
2083 via @code{futile.options} are fully self-contained and will not collide with
2084 options defined in other packages.")
2085 (license license:lgpl3+)))
2086
2087 (define-public r-futile-logger
2088 (package
2089 (name "r-futile-logger")
2090 (version "1.4.1")
2091 (source (origin
2092 (method url-fetch)
2093 (uri (cran-uri "futile.logger" version))
2094 (sha256
2095 (base32
2096 "1plld1icxrcay7llplbd4i8inpg97crpnczk58mbk26j8glqbr51"))))
2097 (properties `((upstream-name . "futile.logger")))
2098 (build-system r-build-system)
2099 (propagated-inputs
2100 `(("r-futile-options" ,r-futile-options)
2101 ("r-lambda-r" ,r-lambda-r)))
2102 (home-page "http://cran.r-project.org/web/packages/futile.logger")
2103 (synopsis "Logging utility for R")
2104 (description
2105 "This package provides a simple yet powerful logging utility. Based
2106 loosely on log4j, futile.logger takes advantage of R idioms to make logging a
2107 convenient and easy to use replacement for @code{cat} and @code{print}
2108 statements.")
2109 (license license:lgpl3+)))
2110
2111 (define-public r-snow
2112 (package
2113 (name "r-snow")
2114 (version "0.4-1")
2115 (source (origin
2116 (method url-fetch)
2117 (uri (cran-uri "snow" version))
2118 (sha256
2119 (base32
2120 "19r2yq8aqw99vwyx81p6ay4afsfqffal1wzvizk3dj882s2n4j8w"))))
2121 (build-system r-build-system)
2122 (home-page "http://cran.r-project.org/web/packages/snow")
2123 (synopsis "Support for simple parallel computing in R")
2124 (description
2125 "The snow package provides support for simple parallel computing on a
2126 network of workstations using R. A master R process calls @code{makeCluster}
2127 to start a cluster of worker processes; the master process then uses functions
2128 such as @code{clusterCall} and @code{clusterApply} to execute R code on the
2129 worker processes and collect and return the results on the master.")
2130 (license (list license:gpl2+ license:gpl3+))))
2131
2132 (define-public r-sparsem
2133 (package
2134 (name "r-sparsem")
2135 (version "1.7")
2136 (source (origin
2137 (method url-fetch)
2138 (uri (cran-uri "SparseM" version))
2139 (sha256
2140 (base32
2141 "0s9kab5khk7daqf6nfp1wm1qnhkssnnwnymisfwyk3kz4q5maqfz"))))
2142 (properties
2143 `((upstream-name . "SparseM")))
2144 (inputs
2145 `(("gfortran" ,gfortran)))
2146 (build-system r-build-system)
2147 (home-page "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html")
2148 (synopsis "Sparse linear algebra")
2149 (description
2150 "This package provides some basic linear algebra functionality for sparse
2151 matrices. It includes Cholesky decomposition and backsolving as well as
2152 standard R subsetting and Kronecker products.")
2153 (license license:gpl2+)))
2154
2155 (define-public r-iterators
2156 (package
2157 (name "r-iterators")
2158 (version "1.0.8")
2159 (source
2160 (origin
2161 (method url-fetch)
2162 (uri (cran-uri "iterators" version))
2163 (sha256
2164 (base32
2165 "1f057pabs7ss9h1n244can26qsi5n2k3salrdk0b0vkphlrs4kmf"))))
2166 (build-system r-build-system)
2167 (home-page "http://cran.r-project.org/web/packages/iterators")
2168 (synopsis "Iterator construct for R")
2169 (description
2170 "This package provides support for iterators, which allow a programmer to
2171 traverse through all the elements of a vector, list, or other collection of
2172 data.")
2173 (license license:asl2.0)))
2174
2175 (define-public r-codetools
2176 (package
2177 (name "r-codetools")
2178 (version "0.2-14")
2179 (source
2180 (origin
2181 (method url-fetch)
2182 (uri (cran-uri "codetools" version))
2183 (sha256
2184 (base32
2185 "0y9r4m2b8xgavr89sc179knzwpz54xljbc1dinpq2q07i4xn0397"))))
2186 (build-system r-build-system)
2187 (home-page "http://cran.r-project.org/web/packages/codetools")
2188 (synopsis "Code analysis tools for R")
2189 (description "This package provides code analysis tools for R to check R
2190 code for possible problems.")
2191 (license (list license:gpl2+ license:gpl3+))))
2192
2193 (define-public r-foreach
2194 (package
2195 (name "r-foreach")
2196 (version "1.4.3")
2197 (source
2198 (origin
2199 (method url-fetch)
2200 (uri (cran-uri "foreach" version))
2201 (sha256
2202 (base32
2203 "10aqsd3rxz03s1qdb6gsb1cj89mj4vmh491zfpin4skj1xvkzw0y"))))
2204 (build-system r-build-system)
2205 (propagated-inputs
2206 `(("r-codetools" ,r-codetools)
2207 ("r-iterators" ,r-iterators)))
2208 (home-page "http://cran.r-project.org/web/packages/foreach")
2209 (synopsis "Foreach looping construct for R")
2210 (description
2211 "This package provides support for the @code{foreach} looping construct.
2212 @code{foreach} is an idiom that allows for iterating over elements in a
2213 collection, without the use of an explicit loop counter. This package in
2214 particular is intended to be used for its return value, rather than for its
2215 side effects. In that sense, it is similar to the standard @code{lapply}
2216 function, but doesn't require the evaluation of a function. Using
2217 @code{foreach} without side effects also facilitates executing the loop in
2218 parallel.")
2219 (license license:asl2.0)))
2220
2221 (define-public r-doparallel
2222 (package
2223 (name "r-doparallel")
2224 (version "1.0.10")
2225 (source
2226 (origin
2227 (method url-fetch)
2228 (uri (cran-uri "doParallel" version))
2229 (sha256
2230 (base32
2231 "1mddx25l25pw9d0csnx2q203dbg5hbrhkr1f08kw0p02a1lln0kh"))))
2232 (properties `((upstream-name . "doParallel")))
2233 (build-system r-build-system)
2234 (propagated-inputs
2235 `(("r-foreach" ,r-foreach)
2236 ("r-iterators" ,r-iterators)))
2237 (home-page "http://cran.r-project.org/web/packages/doParallel")
2238 (synopsis "Foreach parallel adaptor for the 'parallel' package")
2239 (description
2240 "This package provides a parallel backend for the @code{%dopar%} function
2241 using the parallel package.")
2242 (license license:gpl2+)))
2243
2244 (define-public r-dt
2245 (package
2246 (name "r-dt")
2247 (version "0.1")
2248 (source (origin
2249 (method url-fetch)
2250 (uri (cran-uri "DT" version))
2251 (sha256
2252 (base32
2253 "0mj7iiy1gglw7kixybmb7kr1bcl5r006zcb3klkw7p6vvvzdm6qj"))))
2254 (properties
2255 `((upstream-name . "DT")))
2256 (build-system r-build-system)
2257 (propagated-inputs
2258 `(("r-htmltools" ,r-htmltools)
2259 ("r-htmlwidgets" ,r-htmlwidgets)
2260 ("r-magrittr" ,r-magrittr)))
2261 (home-page "http://rstudio.github.io/DT")
2262 (synopsis "R wrapper of the DataTables JavaScript library")
2263 (description
2264 "This package allows for data objects in R to be rendered as HTML tables
2265 using the JavaScript library 'DataTables' (typically via R Markdown or Shiny).
2266 The 'DataTables' library has been included in this R package.")
2267 ;; The DT package as a whole is distributed under GPLv3. The DT package
2268 ;; inludes other software components under different licenses:
2269 ;;
2270 ;; * Expat: jQuery, jquery.highlight.js, DataTables
2271 ;; * ASL2.0: selectize.js
2272 ;; * WTFPL: noUiSlider
2273 (license (list license:gpl3
2274 license:expat
2275 license:asl2.0
2276 (license:non-copyleft "http://www.wtfpl.net/txt/copying/")))))
2277
2278 (define-public r-base64enc
2279 (package
2280 (name "r-base64enc")
2281 (version "0.1-3")
2282 (source (origin
2283 (method url-fetch)
2284 (uri (cran-uri "base64enc" version))
2285 (sha256
2286 (base32
2287 "13b89fhg1nx7zds82a0biz847ixphg9byf5zl2cw9kab6s56v1bd"))))
2288 (build-system r-build-system)
2289 (home-page "http://www.rforge.net/base64enc")
2290 (synopsis "Tools for Base64 encoding")
2291 (description
2292 "This package provides tools for handling Base64 encoding. It is more
2293 flexible than the orphaned \"base64\" package.")
2294 (license license:gpl2+)))
2295
2296 (define-public r-irlba
2297 (package
2298 (name "r-irlba")
2299 (version "2.0.0")
2300 (source
2301 (origin
2302 (method url-fetch)
2303 (uri (cran-uri "irlba" version))
2304 (sha256
2305 (base32
2306 "1gms3rxrm24ri4vjvnpl4v47m7bx0zk63z8y85rbhsvx230xdy0m"))))
2307 (build-system r-build-system)
2308 (home-page "http://cran.r-project.org/web/packages/irlba")
2309 (synopsis "Methods for eigendecomposition of large matrices")
2310 (description
2311 "This package provides fast and memory efficient methods for truncated
2312 singular and eigenvalue decompositions, as well as for principal component
2313 analysis of large sparse or dense matrices.")
2314 (license (list license:gpl2+ license:gpl3+))))
2315
2316 (define-public r-glmnet
2317 (package
2318 (name "r-glmnet")
2319 (version "2.0-5")
2320 (source
2321 (origin
2322 (method url-fetch)
2323 (uri (cran-uri "glmnet" version))
2324 (sha256
2325 (base32
2326 "1cbpzmbv837fvq88rgn6mgzgr9f1wqp9fg8gh2kkmngvr1957a9c"))))
2327 (build-system r-build-system)
2328 (inputs
2329 `(("gfortran" ,gfortran)))
2330 (propagated-inputs
2331 `(("r-foreach" ,r-foreach)))
2332 (home-page "http://www.jstatsoft.org/v33/i01")
2333 (synopsis "Lasso and elastic-net regularized generalized linear models")
2334 (description
2335 "The glmnet package provides efficient procedures for fitting the entire
2336 lasso or elastic-net regularization path for linear and Poisson regression, as
2337 well as logistic, multinomial, Cox, multiple-response Gaussian and grouped
2338 multinomial models. The algorithm uses cyclical coordinate descent in a
2339 path-wise fashion.")
2340 (license license:gpl2+)))
2341
2342 (define-public r-pkgmaker
2343 (package
2344 (name "r-pkgmaker")
2345 (version "0.22")
2346 (source
2347 (origin
2348 (method url-fetch)
2349 (uri (cran-uri "pkgmaker" version))
2350 (sha256
2351 (base32
2352 "0vrqnd3kg6liqvpbd969jjsdx0f0rvmmxgdbwwrp6xfmdg0pib8r"))))
2353 (build-system r-build-system)
2354 (propagated-inputs
2355 `(("r-codetools" ,r-codetools)
2356 ("r-digest" ,r-digest)
2357 ("r-registry" ,r-registry)
2358 ("r-stringr" ,r-stringr)
2359 ("r-xtable" ,r-xtable)))
2360 (home-page "https://renozao.github.io/pkgmaker")
2361 (synopsis "Package development utilities")
2362 (description
2363 "This package provides some low-level utilities to use for R package
2364 development. It currently provides managers for multiple package specific
2365 options and registries, vignette, unit test and bibtex related utilities.")
2366 (license license:gpl2+)))
2367
2368 (define-public r-registry
2369 (package
2370 (name "r-registry")
2371 (version "0.3")
2372 (source
2373 (origin
2374 (method url-fetch)
2375 (uri (cran-uri "registry" version))
2376 (sha256
2377 (base32
2378 "0c7lscfxncwwd8zp46h2xfw9gw14dypqv6m2kx85xjhjh0xw99aq"))))
2379 (build-system r-build-system)
2380 (home-page "http://cran.r-project.org/web/packages/registry")
2381 (synopsis "Infrastructure for R package registries")
2382 (description
2383 "This package provides a generic infrastructure for creating and using R
2384 package registries.")
2385 (license license:gpl2+)))
2386
2387 (define-public r-rngtools
2388 (package
2389 (name "r-rngtools")
2390 (version "1.2.4")
2391 (source
2392 (origin
2393 (method url-fetch)
2394 (uri (cran-uri "rngtools" version))
2395 (sha256
2396 (base32
2397 "1fcgfqrrb48z37xgy8sffx91p9irp39yqzxv7nqp1x2hnwsrh097"))))
2398 (build-system r-build-system)
2399 (propagated-inputs
2400 `(("r-digest" ,r-digest)
2401 ("r-pkgmaker" ,r-pkgmaker)
2402 ("r-stringr" ,r-stringr)))
2403 (home-page "https://renozao.github.io/rngtools")
2404 (synopsis "Utility functions for working with random number generators")
2405 (description
2406 "This package contains a set of functions for working with Random Number
2407 Generators (RNGs). In particular, it defines a generic S4 framework for
2408 getting/setting the current RNG, or RNG data that are embedded into objects
2409 for reproducibility. Notably, convenient default methods greatly facilitate
2410 the way current RNG settings can be changed.")
2411 (license license:gpl3+)))
2412
2413 (define-public r-nmf
2414 (package
2415 (name "r-nmf")
2416 (version "0.20.6")
2417 (source
2418 (origin
2419 (method url-fetch)
2420 (uri (cran-uri "NMF" version))
2421 (sha256
2422 (base32
2423 "0mmh9bz0zjwd8h9jplz4rq3g94npaqj8s4px51vcv47csssd9k6z"))))
2424 (properties `((upstream-name . "NMF")))
2425 (build-system r-build-system)
2426 (propagated-inputs
2427 `(("r-cluster" ,r-cluster)
2428 ("r-colorspace" ,r-colorspace)
2429 ("r-digest" ,r-digest)
2430 ("r-doparallel" ,r-doparallel)
2431 ("r-foreach" ,r-foreach)
2432 ("r-ggplot2" ,r-ggplot2)
2433 ("r-gridbase" ,r-gridbase)
2434 ("r-pkgmaker" ,r-pkgmaker)
2435 ("r-rcolorbrewer" ,r-rcolorbrewer)
2436 ("r-registry" ,r-registry)
2437 ("r-reshape2" ,r-reshape2)
2438 ("r-rngtools" ,r-rngtools)
2439 ("r-stringr" ,r-stringr)))
2440 (home-page "http://renozao.github.io/NMF")
2441 (synopsis "Algorithms and framework for nonnegative matrix factorization")
2442 (description
2443 "This package provides a framework to perform Non-negative Matrix
2444 Factorization (NMF). The package implements a set of already published
2445 algorithms and seeding methods, and provides a framework to test, develop and
2446 plug new or custom algorithms. Most of the built-in algorithms have been
2447 optimized in C++, and the main interface function provides an easy way of
2448 performing parallel computations on multicore machines.")
2449 (license license:gpl2+)))
2450
2451 (define-public r-igraph
2452 (package
2453 (name "r-igraph")
2454 (version "1.0.1")
2455 (source
2456 (origin
2457 (method url-fetch)
2458 (uri (cran-uri "igraph" version))
2459 (sha256
2460 (base32
2461 "00jnm8v3kvxpxav5klld2z2nnkcpj4sdwv4ksipddy5mp04ysr6w"))))
2462 (build-system r-build-system)
2463 (native-inputs
2464 `(("gfortran" ,gfortran)))
2465 (inputs
2466 `(("gmp" ,gmp)
2467 ("libxml2" ,libxml2)))
2468 (propagated-inputs
2469 `(("r-irlba" ,r-irlba)
2470 ("r-magrittr" ,r-magrittr)
2471 ("r-nmf" ,r-nmf)))
2472 (home-page "http://igraph.org")
2473 (synopsis "Network analysis and visualization")
2474 (description
2475 "This package provides routines for simple graphs and network analysis.
2476 It can handle large graphs very well and provides functions for generating
2477 random and regular graphs, graph visualization, centrality methods and much
2478 more.")
2479 (license license:gpl2+)))
2480
2481 (define-public r-r-methodss3
2482 (package
2483 (name "r-r-methodss3")
2484 (version "1.7.1")
2485 (source (origin
2486 (method url-fetch)
2487 (uri (cran-uri "R.methodsS3" version))
2488 (sha256
2489 (base32
2490 "11z6v2i7jl647wxi9p5z66yvfnnqv6s7fxqmz7w2gkb6j8wl1f24"))))
2491 (properties `((upstream-name . "R.methodsS3")))
2492 (build-system r-build-system)
2493 (home-page "http://cran.r-project.org/web/packages/R.methodsS3")
2494 (synopsis "S3 methods simplified")
2495 (description
2496 "This package provides methods that simplify the setup of S3 generic
2497 functions and S3 methods. Major effort has been made in making definition of
2498 methods as simple as possible with a minimum of maintenance for package
2499 developers. For example, generic functions are created automatically, if
2500 missing, and naming conflict are automatically solved, if possible. The
2501 method @code{setMethodS3()} is a good start for those who in the future may
2502 want to migrate to S4.")
2503 (license license:lgpl2.1+)))
2504
2505 (define-public r-r-oo
2506 (package
2507 (name "r-r-oo")
2508 (version "1.20.0")
2509 (source (origin
2510 (method url-fetch)
2511 (uri (cran-uri "R.oo" version))
2512 (sha256
2513 (base32
2514 "1l1x4r69mdchjyi6sq52p580fz3b3bqv6dpn1706y9n4vq47qx24"))))
2515 (properties `((upstream-name . "R.oo")))
2516 (build-system r-build-system)
2517 (propagated-inputs
2518 `(("r-r-methodss3" ,r-r-methodss3)))
2519 (home-page "https://github.com/HenrikBengtsson/R.oo")
2520 (synopsis "R object-oriented programming with or without references")
2521 (description
2522 "This package provides methods and classes for object-oriented
2523 programming in R with or without references. Large effort has been made on
2524 making definition of methods as simple as possible with a minimum of
2525 maintenance for package developers.")
2526 (license license:lgpl2.1+)))
2527
2528 (define-public r-r-utils
2529 (package
2530 (name "r-r-utils")
2531 (version "2.3.0")
2532 (source (origin
2533 (method url-fetch)
2534 (uri (cran-uri "R.utils" version))
2535 (sha256
2536 (base32
2537 "0f4z7ka1wb7bgxc5wyqihqxsnqwgyyzbglwvfwmx0gn8i0wzi647"))))
2538 (properties `((upstream-name . "R.utils")))
2539 (build-system r-build-system)
2540 (propagated-inputs
2541 `(("r-r-methodss3" ,r-r-methodss3)
2542 ("r-r-oo" ,r-r-oo)))
2543 (home-page "https://github.com/HenrikBengtsson/R.utils")
2544 (synopsis "Various programming utilities")
2545 (description
2546 "This package provides utility functions useful when programming and
2547 developing R packages.")
2548 (license license:lgpl2.1+)))
2549
2550 (define-public r-r-cache
2551 (package
2552 (name "r-r-cache")
2553 (version "0.12.0")
2554 (source (origin
2555 (method url-fetch)
2556 (uri (cran-uri "R.cache" version))
2557 (sha256
2558 (base32
2559 "006x52w9r8phw5hgqmyp0bz8z42vn8p5yibibnzi1sfa1xlw8iyx"))))
2560 (properties `((upstream-name . "R.cache")))
2561 (build-system r-build-system)
2562 (propagated-inputs
2563 `(("r-digest" ,r-digest)
2564 ("r-r-methodss3" ,r-r-methodss3)
2565 ("r-r-oo" ,r-r-oo)
2566 ("r-r-utils" ,r-r-utils)))
2567 (home-page "https://github.com/HenrikBengtsson/R.cache")
2568 (synopsis "Light-weight caching of objects and results")
2569 (description
2570 "This package provides methods for caching or memoization of objects and
2571 results. With this package, any R object can be cached in a key-value storage
2572 where the key can be an arbitrary set of R objects. The cache memory is
2573 persistent (on the file system).")
2574 (license license:lgpl2.1+)))
2575
2576 (define-public r-r-rsp
2577 (package
2578 (name "r-r-rsp")
2579 (version "0.30.0")
2580 (source (origin
2581 (method url-fetch)
2582 (uri (cran-uri "R.rsp" version))
2583 (sha256
2584 (base32
2585 "1ssykygqkxzx9qblxhavxlf2z6r5bhk0s47yw1dllfiyc8zy7jv2"))))
2586 (properties `((upstream-name . "R.rsp")))
2587 (build-system r-build-system)
2588 (propagated-inputs
2589 `(("r-r-cache" ,r-r-cache)
2590 ("r-r-methodss3" ,r-r-methodss3)
2591 ("r-r-oo" ,r-r-oo)
2592 ("r-r-utils" ,r-r-utils)))
2593 (home-page "https://github.com/HenrikBengtsson/R.rsp")
2594 (synopsis "Dynamic generation of scientific reports")
2595 (description
2596 "The RSP markup language provides a powerful markup for controlling the
2597 content and output of LaTeX, HTML, Markdown, AsciiDoc, Sweave and knitr
2598 documents (and more), e.g. @code{Today's date is <%=Sys.Date()%>}. Contrary
2599 to many other literate programming languages, with RSP it is straightforward
2600 to loop over mixtures of code and text sections, e.g. in month-by-month
2601 summaries. RSP has also several preprocessing directives for incorporating
2602 static and dynamic contents of external files (local or online) among other
2603 things. RSP is ideal for self-contained scientific reports and R package
2604 vignettes.")
2605 (license license:lgpl2.1+)))
2606
2607 (define-public r-mvtnorm
2608 (package
2609 (name "r-mvtnorm")
2610 (version "1.0-5")
2611 (source (origin
2612 (method url-fetch)
2613 (uri (cran-uri "mvtnorm" version))
2614 (sha256
2615 (base32
2616 "1pc1mi2h063gh4a40009xk5j6pf5bm4274i5kycln38dixsry3yh"))))
2617 (build-system r-build-system)
2618 (inputs
2619 `(("gfortran" ,gfortran)))
2620 (home-page "http://mvtnorm.R-forge.R-project.org")
2621 (synopsis "Package for multivariate normal and t-distributions")
2622 (description "This package can compute multivariate normal and
2623 t-probabilities, quantiles, random deviates and densities.")
2624 (license license:gpl2)))
2625
2626 (define-public r-matrixstats
2627 (package
2628 (name "r-matrixstats")
2629 (version "0.50.2")
2630 (source (origin
2631 (method url-fetch)
2632 (uri (cran-uri "matrixStats" version))
2633 (sha256
2634 (base32
2635 "0zj27xxx9cyrq16rn4g3l0krqg68p8f2qp18w1w4i767j87amlbj"))))
2636 (properties `((upstream-name . "matrixStats")))
2637 (build-system r-build-system)
2638 (native-inputs
2639 `(("r-r-rsp" ,r-r-rsp))) ;used to build vignettes
2640 (home-page "https://github.com/HenrikBengtsson/matrixStats")
2641 (synopsis "Methods applying to vectors and matrix rows and columns")
2642 (description
2643 "This package provides methods operating on rows and columns of matrices,
2644 e.g. @code{rowMedians()}, @code{rowRanks()}, and @code{rowSds()}. There are
2645 also some vector-based methods, e.g. @code{binMeans()}, @code{madDiff()} and
2646 @code{weightedMedians()}. All methods have been optimized for speed and
2647 memory usage.")
2648 (license license:artistic2.0)))
2649
2650 (define-public r-viridis
2651 (package
2652 (name "r-viridis")
2653 (version "0.3.4")
2654 (source (origin
2655 (method url-fetch)
2656 (uri (cran-uri "viridis" version))
2657 (sha256
2658 (base32
2659 "1a9hqn2pccpc51vh8ghw698ni6xzdnp8v0n8kgjh51nlz5hhc87j"))))
2660 (build-system r-build-system)
2661 (propagated-inputs
2662 `(("r-ggplot2" ,r-ggplot2)
2663 ("r-gridextra" ,r-gridextra)))
2664 (home-page "https://github.com/sjmgarnier/viridis")
2665 (synopsis "Matplotlib default color map")
2666 (description
2667 "This package is a port of the new @url{matplotlib,
2668 http://matplotlib.org/} color maps (@code{viridis}--the default--,
2669 @code{magma}, @code{plasma}, and @code{inferno}) to R. These color maps are
2670 designed in such a way that they will analytically be perfectly
2671 perceptually-uniform, both in regular form and also when converted to
2672 black-and-white. They are also designed to be perceived by readers with the
2673 most common form of color blindness.")
2674 (license license:x11)))
2675
2676 (define-public r-tidyr
2677 (package
2678 (name "r-tidyr")
2679 (version "0.4.1")
2680 (source
2681 (origin
2682 (method url-fetch)
2683 (uri (cran-uri "tidyr" version))
2684 (sha256
2685 (base32
2686 "0xp6lyr2l4ix2mrilx4qmca7wm5qmbhvi24m4nf7qsgwp54gnv2h"))))
2687 (build-system r-build-system)
2688 (propagated-inputs
2689 `(("r-dplyr" ,r-dplyr)
2690 ("r-lazyeval" ,r-lazyeval)
2691 ("r-magrittr" ,r-magrittr)
2692 ("r-rcpp" ,r-rcpp)
2693 ("r-stringi" ,r-stringi)))
2694 (home-page "https://github.com/hadley/tidyr")
2695 (synopsis "Tidy data with `spread()` and `gather()` functions")
2696 (description
2697 "tidyr is a reframing of the reshape2 package designed to accompany the
2698 tidy data framework, and to work hand-in-hand with magrittr and dplyr to build
2699 a solid pipeline for data analysis. It is designed specifically for tidying
2700 data, not the general reshaping that reshape2 does, or the general aggregation
2701 that reshape did. In particular, built-in methods only work for data frames,
2702 and tidyr provides no margins or aggregation.")
2703 (license license:expat)))
2704
2705 (define-public r-hexbin
2706 (package
2707 (name "r-hexbin")
2708 (version "1.27.1")
2709 (source
2710 (origin
2711 (method url-fetch)
2712 (uri (cran-uri "hexbin" version))
2713 (sha256
2714 (base32
2715 "0xi6fbf1fvyn2gffr052n3viibqzpr3603sgi4xaminbzja4syjh"))))
2716 (build-system r-build-system)
2717 (propagated-inputs
2718 `(("r-lattice" ,r-lattice)))
2719 (native-inputs
2720 `(("gfortran" ,gfortran)))
2721 (home-page "http://github.com/edzer/hexbin")
2722 (synopsis "Hexagonal binning routines")
2723 (description
2724 "This package provides binning and plotting functions for hexagonal bins.
2725 It uses and relies on grid graphics and formal (S4) classes and methods.")
2726 (license license:gpl2+)))
2727
2728 (define-public r-plotly
2729 (package
2730 (name "r-plotly")
2731 (version "3.6.0")
2732 (source (origin
2733 (method url-fetch)
2734 (uri (cran-uri "plotly" version))
2735 (sha256
2736 (base32
2737 "15hvqa0sf4z6l6vvr614zjszfphwpv66zpc665iyiynq0pd1jv2c"))))
2738 (build-system r-build-system)
2739 (propagated-inputs
2740 `(("r-base64enc" ,r-base64enc)
2741 ("r-digest" ,r-digest)
2742 ("r-ggplot2" ,r-ggplot2)
2743 ("r-hexbin" ,r-hexbin)
2744 ("r-htmlwidgets" ,r-htmlwidgets)
2745 ("r-httr" ,r-httr)
2746 ("r-jsonlite" ,r-jsonlite)
2747 ("r-magrittr" ,r-magrittr)
2748 ("r-plyr" ,r-plyr)
2749 ("r-scales" ,r-scales)
2750 ("r-tidyr" ,r-tidyr)
2751 ("r-viridis" ,r-viridis)))
2752 (home-page "https://plot.ly/r")
2753 (synopsis "Create interactive web graphics")
2754 (description
2755 "This package enables the translation of ggplot2 graphs to an interactive
2756 web-based version and/or the creation of custom web-based visualizations
2757 directly from R. Once uploaded to a plotly account, plotly graphs (and the
2758 data behind them) can be viewed and modified in a web browser.")
2759 (license license:x11)))
2760
2761 (define-public r-biased-urn
2762 (package
2763 (name "r-biased-urn")
2764 (version "1.07")
2765 (source
2766 (origin
2767 (method url-fetch)
2768 (uri (cran-uri "BiasedUrn" version))
2769 (sha256
2770 (base32
2771 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
2772 (properties `((upstream-name . "BiasedUrn")))
2773 (build-system r-build-system)
2774 (home-page "http://www.agner.org/random/")
2775 (synopsis "Biased urn model distributions")
2776 (description
2777 "This package provides statistical models of biased sampling in the form
2778 of univariate and multivariate noncentral hypergeometric distributions,
2779 including Wallenius' noncentral hypergeometric distribution and Fisher's
2780 noncentral hypergeometric distribution (also called extended hypergeometric
2781 distribution).")
2782 (license license:gpl3+)))
2783
2784 (define-public r-runit
2785 (package
2786 (name "r-runit")
2787 (version "0.4.31")
2788 (source
2789 (origin
2790 (method url-fetch)
2791 (uri (cran-uri "RUnit" version))
2792 (sha256
2793 (base32
2794 "1jqr871jkll2xmk7wk5hv1z3a36hyn2ibgivw7bwk4b346940xlx"))))
2795 (properties `((upstream-name . "RUnit")))
2796 (build-system r-build-system)
2797 (home-page "http://cran.r-project.org/web/packages/RUnit")
2798 (synopsis "R unit test framework")
2799 (description
2800 "This package provides R functions implementing a standard unit testing
2801 framework, with additional code inspection and report generation tools.")
2802 (license license:gpl2+)))
2803
2804 (define-public r-zoo
2805 (package
2806 (name "r-zoo")
2807 (version "1.7-13")
2808 (source (origin
2809 (method url-fetch)
2810 (uri (cran-uri "zoo" version))
2811 (sha256
2812 (base32
2813 "0m67bnrg7r1jxvs9p7rpa430szp5qfp65r056yb8bivpc16jd98c"))))
2814 (build-system r-build-system)
2815 (propagated-inputs
2816 `(("r-lattice" ,r-lattice)))
2817 (home-page "http://zoo.R-Forge.R-project.org/")
2818 (synopsis "S3 infrastructure for regular and irregular time series")
2819 (description "This package contains an S3 class with methods for totally
2820 ordered indexed observations. It is particularly aimed at irregular time
2821 series of numeric vectors/matrices and factors.")
2822 (license license:gpl2+)))
2823
2824 (define-public r-ztable
2825 (package
2826 (name "r-ztable")
2827 (version "0.1.5")
2828 (source (origin
2829 (method url-fetch)
2830 (uri (cran-uri "ztable" version))
2831 (sha256
2832 (base32
2833 "1jfqnqy9544gfvz3bsb48v4177nwp4b4n9l2743asq8sbq305b5r"))))
2834 (build-system r-build-system)
2835 (home-page "http://cran.r-project.org/web/packages/ztable")
2836 (synopsis "Zebra-striped tables in LaTeX and HTML formats for R")
2837 (description
2838 "This package provides functions to make zebra-striped tables (tables
2839 with alternating row colors) in LaTeX and HTML formats easily from
2840 @code{data.frame}, @code{matrix}, @code{lm}, @code{aov}, @code{anova},
2841 @code{glm}, @code{coxph}, @code{nls}, @code{fitdistr}, @code{mytable} and
2842 @code{cbind.mytable} objects.")
2843 (license license:gpl2+)))