Skip to content

Commit

Permalink
This is version 0.2.0 as available on CRAN
Browse files Browse the repository at this point in the history
This version has been on CRAN since 2015-05-04. This is the first
version available on GitHub.
  • Loading branch information
Aron Eklund committed Jul 30, 2015
0 parents commit c910d05
Show file tree
Hide file tree
Showing 11 changed files with 905 additions and 0 deletions.
10 changes: 10 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Package: beeswarm
Version: 0.2.0
Date: 2015-05-04
Title: The Bee Swarm Plot, an Alternative to Stripchart
Author: Aron Eklund
Maintainer: Aron Eklund <[email protected]>
Depends: stats, graphics
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/
8 changes: 8 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

export(beeswarm, bxplot, swarmx, swarmy)

S3method(beeswarm, default)
S3method(beeswarm, formula)
S3method(bxplot, default)
S3method(bxplot, formula)

69 changes: 69 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
beeswarm NEWS

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.


Changes in version 0.1.8 (2015-04-30)

- Added "Depends: stats" to DESCRIPTION and removed "require(stats)" calls from code in order to achieve a clean package check


Changes in version 0.1.7 (2014-08-05)

- ".calculateSwarm" now performs the swarm point layout more efficiently


Changes in version 0.1.6 (2013-09-18)

- The argument "labels" now gets recycled.
- "labels = NULL" is now the same as missing "labels"; i.e. labels are inferred from data.
- There is now a "corralWidth" argument to control the size of corrals, if corrals are used.


Changes in version 0.1.5 (2012-05-07)

- Minor adjustments.


Changes in version 0.1.4 (2012-05-03)

- Minor adjustments.


Changes in version 0.1.3 (2012-03-22)

- New function "bxplot" as a minimal version of "boxplot", intended mainly as a way to add quantile lines to a beeswarm plot.
- "beeswarm" has a new argument "corral" to control the spread of swarms into adjacent groups.


Changes in version 0.1.2 (2012-03-14)

- Documentation fixes
- Added a NAMESPACE file
- The formula interface now splits as expected for formulas such as: x ~ y * z


Changes in version 0.1.1 (2011-08-04)

- Documentation fixes.
- Adjusted "beeswarm.default" to work when x is a simple numeric vector.
- Removed "beeswarm.numeric" .


Changes in version 0.1.0 (2011-08-03)

- In "beeswarm", defaults for "col", "pch" are now taken from "par", and "bg" defaults to NA, and "pwbg" defaults to NULL.
- Renamed "smile" method; now it is called "swarm"
- Changed default method to "swarm"
- Removed function "smile"
- New functions "swarmx" and "swarmy" for easily adding swarm-ed points to a plot.
- Fixed bug affecting swarming when par('cex') was not 1.
- Fixed bug reversing xlim and ylim on horizontal plots.
- Fixed bug causing an error if xlim or ylim were set to NULL
- Defaults for xlim and ylim are now NULL instead of missing
- New argument 'dlim'
- Log scales are now supported.


Loading

0 comments on commit c910d05

Please sign in to comment.