diff options
author | Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com> | 2016-12-27 20:46:47 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-12-29 19:54:59 +0100 |
commit | 6ba279853c871329441c76adff67d97ad76bf13c (patch) | |
tree | e4fe9b7df17fa7a4ca64fdd0130060017dc3d3e2 /gnu/packages/statistics.scm | |
parent | 069581351b504c7ddb2fca49f070c093efa92462 (diff) | |
download | guix-6ba279853c871329441c76adff67d97ad76bf13c.tar guix-6ba279853c871329441c76adff67d97ad76bf13c.tar.gz |
gnu: Add r-beeswarm.
* gnu/packages/statistics.scm (r-beeswarm): New variable.
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 9847182fbe..16de2eac32 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -3834,3 +3834,22 @@ with alternating row colors) in LaTeX and HTML formats easily from combination of a violin/histogram plot and a scatter plot by offsetting points within a category based on their density using quasirandom noise.") (license license:gpl2+))) + +(define-public r-beeswarm + (package + (name "r-beeswarm") + (version "0.2.3") + (source (origin + (method url-fetch) + (uri (cran-uri "beeswarm" version)) + (sha256 + (base32 + "0hy89bwv7jixlg91li1fywa77916am2whqp1m1fx1khd45g44581")))) + (build-system r-build-system) + (home-page "http://www.cbs.dtu.dk/~eklund/beeswarm/") + (synopsis "Implementation of bee swarm plots") + (description + "This package provides an implementation of bee swarm plots. The bee +swarm plot is a one-dimensional scatter plot like stripchart, but with +closely-packed, non-overlapping points.") + (license license:artistic2.0))) |