mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add r-egg.
* gnu/packages/cran.scm (r-egg): New variable.
This commit is contained in:
parent
75f021f4a6
commit
0c836f58cf
1 changed files with 27 additions and 0 deletions
|
@ -4683,6 +4683,33 @@ (define-public r-powerplus
|
||||||
exponentiation.")
|
exponentiation.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-egg
|
||||||
|
(package
|
||||||
|
(name "r-egg")
|
||||||
|
(version "0.4.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "egg" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
|
||||||
|
(properties `((upstream-name . "egg")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-ggplot2" ,r-ggplot2)
|
||||||
|
("r-gridextra" ,r-gridextra)
|
||||||
|
("r-gtable" ,r-gtable)))
|
||||||
|
(home-page "https://cran.r-project.org/web/packages/egg")
|
||||||
|
(synopsis "Extensions for ggplot2")
|
||||||
|
(description
|
||||||
|
"This package provides miscellaneous functions to help customize ggplot2
|
||||||
|
objects. High-level functions are provided to post-process ggplot2 layouts
|
||||||
|
and allow alignment between plot panels, as well as setting panel sizes to
|
||||||
|
fixed values. Other functions include a custom @code{geom}, and helper
|
||||||
|
functions to enforce symmetric scales or add tags to facetted plots.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
||||||
(define-public r-heatmaply
|
(define-public r-heatmaply
|
||||||
(package
|
(package
|
||||||
(name "r-heatmaply")
|
(name "r-heatmaply")
|
||||||
|
|
Loading…
Reference in a new issue