1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-09 14:40:36 +02:00

gnu: Add r-palmerpenguins.

* gnu/packages/cran.scm (r-palmerpenguins): New variable.
This commit is contained in:
Ricardo Wurmus
2021-03-09 21:31:03 +01:00
parent bcdf0cf3a5
commit 91aa72bfe2

View File

@@ -2546,6 +2546,30 @@ inspired by Python's Literal String Interpolation (PEP-0498) and
Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
(license license:expat)))
(define-public r-palmerpenguins
(package
(name "r-palmerpenguins")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "palmerpenguins" version))
(sha256
(base32
"0q1k3cdkliq7kwrg1n0vs9b6cjwyfarhlgdijhp9c6riy6y5ik7x"))))
(properties
`((upstream-name . "palmerpenguins")))
(build-system r-build-system)
(home-page "https://allisonhorst.github.io/palmerpenguins/")
(synopsis "Palmer Archipelago (Antarctica) penguin data")
(description
"This package includes size measurements, clutch observations, and blood
isotope ratios for adult foraging Adélie, Chinstrap, and Gentoo penguins
observed on islands in the Palmer Archipelago near Palmer Station, Antarctica.
Data were collected and made available by Dr. Kristen Gorman and the Palmer
Station Long Term Ecological Research (LTER) Program.")
(license license:cc0)))
(define-public r-pastecs
(package
(name "r-pastecs")