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 all commits
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
13 changes: 7 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
Package: gplots
Version: 3.1.0
Date: 2020-02-24
Date: 2020-03-29
Title: Various R Programming Tools for Plotting Data
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 @@ -17,16 +18,16 @@ Authors@R: c(person("Gregory", "Warnes", role=c("aut","cre"),
person("Bill", "Venables", role="aut"))
Depends: R (>= 3.0)
Imports: graphics, grDevices, KernSmooth, stats, utils,
caTools, gtools
Suggests: MASS, nlme
caTools, gtools, igraph
Suggests: MASS, nlme, RColorBrewer
LazyData: yes
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
24 changes: 17 additions & 7 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,25 +1,35 @@
export(angleAxis, balloonplot, bandplot, barplot2, bluered, boxplot2,
bubbleplot, ci2d, col2hex, colorpanel, greenred, heatmap.2, hist2d,
lmplot2, lowess, ooplot, overplot, panel.overplot, plot.venn, plotCI,
plotLowess, plotmeans, qqnorm.aov, redblue, redgreen, residplot,
rich.colors, sinkplot, smartlegend, space, textplot, venn, wapply)
bubbleplot, ci2d, col2hex, colorpanel,
greenred, heatmap.2, hist2d,
lmplot2, lowess, ooplot, overplot, panel.overplot,
plot.venn, plotVennGraph, plotVennPolyominoes, plotCI,
plotLowess, plotmeans,
pV_colouringFeatureCount, pV_colouringPValue,
pV_fieldsLabelsBinary, pV_fieldsLabelsLetter,
qqnorm.aov, redblue, redgreen, residplot,
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,
filled.contour, grid, hist, identify, image, layout, legend,
lines, matlines, matpoints, mtext, panel.smooth, par, plot,
plot.default, plot.new, plot.window, points, polygon, rect,
segments, strheight, strwidth, text, title, xinch, yinch)
importFrom(grDevices, col2rgb, contourLines, dev.flush, dev.hold,
dev.interactive, heat.colors, rgb, topo.colors)
importFrom(grDevices, colorRampPalette, col2rgb, contourLines,
dev.flush, dev.hold, dev.interactive, heat.colors, rainbow,
rgb, topo.colors)
importFrom(gtools, invalid, odd)
importFrom(igraph, add_edges, delete.vertices, graph.empty, plot.igraph,
set_vertex_attr, V)
importFrom(KernSmooth, bkde2D, dpik)
importFrom(stats, as.dendrogram, cooks.distance, density, deviance,
df.residual, dist, dnorm, effects, expand.model.frame,
fitted, hclust, is.leaf, lm.influence, median, model.frame,
na.omit, order.dendrogram, ppoints, predict, qnorm, qqline,
qqnorm, qt, reorder, residuals, sd, var, weights)
importFrom(utils, str, type.convert)
importFrom(utils, head, str, type.convert)

S3method(balloonplot, default)
S3method(balloonplot, table)
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--------------------------------------------------------------------------------
gplots 3.1.0 (2020-02-24)
gplots 3.1.0 (2020-03-29)
--------------------------------------------------------------------------------
New Features:

Expand Down
Loading