Skip to content

Update of Venn diagrams, introduction of Polyominoes and graph representation #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Authors@R: c(person("Gregory", "Warnes", role=c("aut","cre"),
email="[email protected]"),
person("Ben", "Bolker", role="aut"),
person("Lodewijk", "Bonebakker", role="aut"),
person("Sarah", "Fischer", role="ctb"),
person("Robert", "Gentleman", role="aut"),
person("Wolfgang", "Huber", role="aut"),
person("Andy", "Liaw", role="aut"),
Expand All @@ -24,9 +25,9 @@ Description: Various R programming tools for plotting data, including: local
smoothing, enhanced versions of standard plots, manipulating colors,
two-dimensional data summaries, diagnostic plots for linear regression and
analysis of variance, formula interface to lowess, text plots, balloon plot
and bubble plot, Venn diagrams, Open-Office style plots, separate y axes,
means and confidence intervals, spaced scatterplot where points do not
overlap, and rotated axis labels.
and bubble plot, Venn diagrams, Polyominoes, Open-Office style plots,
separate y axes, means and confidence intervals,
spaced scatterplot where points do not overlap, and rotated axis labels.
License: GPL-2
Encoding: UTF-8
URL: https://github.com/r-gregmisc/gplots
16 changes: 13 additions & 3 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
export(angleAxis, balloonplot, bandplot, barplot2, bluered, boxplot2,
bubbleplot, ci2d, col2hex, colorpanel, greenred, heatmap.2, hist2d,
lmplot2, lowess, ooplot, overplot, panel.overplot, plot.venn, plotCI,
bubbleplot, ci2d, col2hex, colorpanel,
drawVennPolyominoes.colouring.featureCount,
drawVennPolyominoes.colouring.pValue,
drawVennPolyominoes.fields.labels.binary,
drawVennPolyominoes.fields.labels.letter,
greenred, heatmap.2, hist2d,
lmplot2, lowess, ooplot, overplot, panel.overplot,
plot.venn, plot.venn.graph, plot.venn.polyominoes, plotCI,
plotLowess, plotmeans, qqnorm.aov, redblue, redgreen, residplot,
rich.colors, sinkplot, smartlegend, space, textplot, venn, wapply)
rich.colors, sinkplot, smartlegend, space, textplot, venn,
venn.graph.colouring, venn.graph.simplify, venn.observed2expected,
wapply)



importFrom(caTools, runmean, runsd)
importFrom(graphics, abline, arrows, axis, axTicks, barplot, contour,
Expand Down
Loading