gnu: Add r-rapportools.

* gnu/packages/cran.scm (r-rapportools): New variable.
master
Ricardo Wurmus 2018-10-28 19:22:23 +01:00
parent 5df4e27fec
commit 9b02d1a11e
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 24 additions and 0 deletions

View File

@ -6910,3 +6910,27 @@ directories or URLs with their associated programs.")
"Run @code{R CMD check} from R programmatically, and capture the results
of the individual checks.")
(license license:expat)))
(define-public r-rapportools
(package
(name "r-rapportools")
(version "1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "rapportools" version))
(sha256
(base32
"1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
(build-system r-build-system)
(propagated-inputs
`(("r-pander" ,r-pander)
("r-plyr" ,r-plyr)
("r-reshape" ,r-reshape)))
(home-page "https://cran.r-project.org/web/packages/rapportools/")
(synopsis "Miscellaneous helper functions with sane defaults for reporting")
(description
"This package provides helper functions that act as wrappers to more
advanced statistical methods with the advantage of having sane defaults for
quick reporting.")
(license license:agpl3+)))