gnu: Add r-ggformula.

* gnu/packages/cran.scm (r-ggformula): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
pimi 2018-08-29 10:19:55 +02:00 committed by Ludovic Courtès
parent c61f7bc543
commit 214452ffd3
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 29 additions and 0 deletions

View File

@ -5535,3 +5535,32 @@ and coverage methods to tune the choice of threshold.")
(description (description
"Common utilities used in other Mosaic family packages are collected here.") "Common utilities used in other Mosaic family packages are collected here.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-ggformula
(package
(name "r-ggformula")
(version "0.9.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "ggformula" version))
(sha256
(base32 "1pmpdfjfbrc6kcpq70cr1kbj2qy711hw940g2aiis6l443z706kh"))))
(build-system r-build-system)
(propagated-inputs
`(("r-ggplot2" ,r-ggplot2)
("r-ggstance" ,r-ggstance)
("r-magrittr" ,r-magrittr)
("r-mosaiccore" ,r-mosaiccore)
("r-rlang" ,r-rlang)
("r-stringr" ,r-stringr)
("r-tibble" ,r-tibble)
("r-tidyr" ,r-tidyr)))
(home-page "https://github.com/ProjectMOSAIC/ggformula/")
(synopsis "Formula interface for the @code{r-ggplot2}")
(description
"The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
gf_density(), and so on, bring the formula interface to ggplot(). This captures
and extends the excellent simplicity of the lattice-graphics formula interface,
while providing the intuitive capabilities of @code{r-ggplot2}.")
(license license:expat)))