Skip to content

Commit 135fe34

Browse files
committed
Extension of Venn diagrams
Transparency and coloring for classical Venn diagrams, introducing Polyominoes and graph representation.
1 parent 0910c65 commit 135fe34

File tree

11 files changed

+2195
-525
lines changed

11 files changed

+2195
-525
lines changed

DESCRIPTION

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Authors@R: c(person("Gregory", "Warnes", role=c("aut","cre"),
66
email="greg@warnes.net"),
77
person("Ben", "Bolker", role="aut"),
88
person("Lodewijk", "Bonebakker", role="aut"),
9+
person("Sarah", "Fischer", role="aut"),
910
person("Robert", "Gentleman", role="aut"),
1011
person("Wolfgang", "Huber", role="aut"),
1112
person("Andy", "Liaw", role="aut"),
@@ -24,9 +25,9 @@ Description: Various R programming tools for plotting data, including: local
2425
smoothing, enhanced versions of standard plots, manipulating colors,
2526
two-dimensional data summaries, diagnostic plots for linear regression and
2627
analysis of variance, formula interface to lowess, text plots, balloon plot
27-
and bubble plot, Venn diagrams, Open-Office style plots, separate y axes,
28-
means and confidence intervals, spaced scatterplot where points do not
29-
overlap, and rotated axis labels.
28+
and bubble plot, Venn diagrams, Polyominoes, Open-Office style plots,
29+
separate y axes, means and confidence intervals,
30+
spaced scatterplot where points do not overlap, and rotated axis labels.
3031
License: GPL-2
3132
Encoding: UTF-8
3233
URL: https://github.com/r-gregmisc/gplots

NAMESPACE

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
export(angleAxis, balloonplot, bandplot, barplot2, bluered, boxplot2,
2-
bubbleplot, ci2d, col2hex, colorpanel, greenred, heatmap.2, hist2d,
3-
lmplot2, lowess, ooplot, overplot, panel.overplot, plot.venn, plotCI,
2+
bubbleplot, ci2d, col2hex, colorpanel,
3+
drawVennPolyominoes.colouring.featureCount,
4+
drawVennPolyominoes.colouring.pValue,
5+
drawVennPolyominoes.fields.labels.binary,
6+
drawVennPolyominoes.fields.labels.letter,
7+
greenred, heatmap.2, hist2d,
8+
lmplot2, lowess, ooplot, overplot, panel.overplot,
9+
plot.venn, plot.venn.graph, plot.venn.polyominoes, plotCI,
410
plotLowess, plotmeans, qqnorm.aov, redblue, redgreen, residplot,
5-
rich.colors, sinkplot, smartlegend, space, textplot, venn, wapply)
11+
rich.colors, sinkplot, smartlegend, space, textplot, venn,
12+
venn.graph.colouring, venn.graph.simplify, venn.observed2expected,
13+
wapply)
14+
15+
616

717
importFrom(caTools, runmean, runsd)
818
importFrom(graphics, abline, arrows, axis, axTicks, barplot, contour,

0 commit comments

Comments
 (0)