From ca3b3f877b5f8f6512c56b1fa33d84e1d1055ee0 Mon Sep 17 00:00:00 2001 From: Aron Eklund Date: Wed, 26 Aug 2015 22:06:31 +0200 Subject: [PATCH] Try to get the Imports/Depends straightened out This corresponds to v. 0.2.1, just now submitted to CRAN. --- DESCRIPTION | 8 ++++---- NAMESPACE | 4 ++++ NEWS | 5 +++++ 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 52fca32..6fd856b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,10 +1,10 @@ Package: beeswarm -Version: 0.2.0 -Date: 2015-05-04 +Version: 0.2.1 +Date: 2015-08-26 Title: The Bee Swarm Plot, an Alternative to Stripchart Author: Aron Eklund -Maintainer: Aron Eklund -Depends: stats, graphics +Maintainer: Aron Eklund +Imports: stats, graphics, grDevices, utils Description: The bee swarm plot is a one-dimensional scatter plot like "stripchart", but with closely-packed, non-overlapping points. License: Artistic-2.0 URL: http://www.cbs.dtu.dk/~eklund/beeswarm/ diff --git a/NAMESPACE b/NAMESPACE index 71c1a65..4825962 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -6,3 +6,7 @@ S3method(beeswarm, formula) S3method(bxplot, default) S3method(bxplot, formula) +importFrom("grDevices", "extendrange", "xy.coords") +importFrom("graphics", "axis", "box", "boxplot", "par", "plot", "points", "segments", "xinch", "yinch") +importFrom("stats", "approx", "density", "na.omit", "quantile", "runif") +importFrom("utils", "head", "tail") diff --git a/NEWS b/NEWS index 0c20b1b..c822ca2 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ beeswarm NEWS +Changes in version 0.2.1 (2015-08-26) + +- Corrected NAMESPACE and DESCRIPTION to properly indicate Imports and to remove unnecessary Depends. + + Changes in version 0.2.0 (2015-05-04) - New arguments "side" and "priority" for beeswarm, swarmx, and swarmy. "side" allows swarms to grow on only one side rather than both sides. "priority" controls the order in which swarms are built, thus affecting the appearance of the plot. Thanks to Jon Lake and Brad Stiritz for suggestions.