mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: Add r-rapportools.
* gnu/packages/cran.scm (r-rapportools): New variable.
This commit is contained in:
parent
5df4e27fec
commit
9b02d1a11e
1 changed files with 24 additions and 0 deletions
|
@ -6910,3 +6910,27 @@ (define-public r-rcmdcheck
|
||||||
"Run @code{R CMD check} from R programmatically, and capture the results
|
"Run @code{R CMD check} from R programmatically, and capture the results
|
||||||
of the individual checks.")
|
of the individual checks.")
|
||||||
(license license:expat)))
|
(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+)))
|
||||||
|
|
Loading…
Reference in a new issue