From b5b9ae7e2386c8ddb8f86f8b9edad0d000f34928 Mon Sep 17 00:00:00 2001
From: Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
Date: Tue, 27 Dec 2016 20:46:47 +0100
Subject: [PATCH 02/11] gnu: Add r-beeswarm.

---
 gnu/packages/statistics.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index f30e8e9..b406e9e 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -3834,3 +3834,21 @@ with alternating row colors) in LaTeX and HTML formats easily from
 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 "The beeswarm plot, an alternative to stripchart")
+    (description
+     "The bee swarm plot is a one-dimensional scatter plot like stripchart,
+but with closely-packed, non-overlapping points.")
+    (license license:artistic2.0)))
-- 
1.9.1

