Skip to content

Commit 0fa0a47

Browse files
author
warnes
committed
Rename 'trunk' to 'pkg' for compatibility with R-forge
0 parents  commit 0fa0a47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+12873
-0
lines changed

Diff for: ChangeLog

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
inst/ChangeLog

Diff for: DESCRIPTION

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Package: gplots
2+
Title: Various R Programming Tools for Plotting Data
3+
Description: Various R programming tools for plotting data, including:
4+
- calculating and plotting locally smoothed summary functionas
5+
('bandplot', 'wapply'),
6+
- enhanced versions of standard plots ('barplot2', 'boxplot2',
7+
'heatmap.2', 'smartlegend'),
8+
- manipulating colors ('col2hex', 'colorpanel', 'redgreen',
9+
'greenred', 'bluered', 'redblue', 'rich.colors'),
10+
- calculating and plotting two-dimensional data summaries ('ci2d',
11+
'hist2d'),
12+
- enhanced regression diagnostic plots ('lmplot2', 'residplot'),
13+
- formula-enabled interface to stats::lowess function ('lowess'),
14+
- displaying textual data in plots ('textplot', 'sinkplot'),
15+
- plotting a matrix where each cell contains a dot whose size
16+
reflects the relative magnitude of the elements ('balloonplot'),
17+
- plotting venn diagrams ('venn'),
18+
- displaying Open-Office syle plots ('ooplot'),
19+
- plotting multiple datasets on same region, with separate axes
20+
('overplot'),
21+
- plotting means and cofidence intervals ('plotCI', 'plotmeans'),
22+
- spacing points in an x-y plot so they don't overlap ('space').
23+
Depends: R (>= 3.0)
24+
Imports: gtools, gdata, stats, caTools, KernSmooth
25+
Suggests: grid, MASS
26+
Version: 2.17.0
27+
Date: 2015-05-01
28+
Author: Gregory R. Warnes, Ben Bolker, Lodewijk Bonebakker, Robert
29+
Gentleman, Wolfgang Huber Andy Liaw, Thomas Lumley, Martin
30+
Maechler, Arni Magnusson, Steffen Moeller, Marc Schwartz, Bill
31+
Venables
32+
Maintainer: Gregory R. Warnes <[email protected]>
33+
License: GPL-2
34+
NeedsCompilation: no

Diff for: NAMESPACE

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
export(
2+
balloonplot,
3+
bandplot,
4+
barplot2,
5+
bluered,
6+
boxplot.n,
7+
boxplot2,
8+
ci2d,
9+
col2hex,
10+
colorpanel,
11+
greenred,
12+
heatmap.2,
13+
hist2d,
14+
lmplot2,
15+
lowess,
16+
ooplot,
17+
overplot,
18+
panel.overplot,
19+
plot.lm2,
20+
plot.venn,
21+
plotCI,
22+
plotmeans,
23+
qqnorm.aov,
24+
redblue,
25+
redgreen,
26+
residplot,
27+
rich.colors,
28+
sinkplot,
29+
smartlegend,
30+
space,
31+
textplot,
32+
venn,
33+
wapply
34+
)
35+
36+
importFrom(gtools, invalid)
37+
importFrom(gtools, odd)
38+
importFrom(gdata, nobs)
39+
importFrom(gdata, reorder.factor)
40+
41+
importFrom(stats, reorder)
42+
importFrom(stats, na.omit)
43+
44+
importFrom(caTools, runsd)
45+
importFrom(caTools, runmean)
46+
47+
importFrom(KernSmooth, bkde2D)
48+
importFrom(KernSmooth, dpik)
49+
50+
S3method(balloonplot, default)
51+
S3method(balloonplot, table)
52+
53+
S3method(bandplot, default)
54+
S3method(bandplot, formula)
55+
56+
S3method(barplot2, default)
57+
58+
S3method(lowess, default)
59+
S3method(lowess, formula)
60+
61+
S3method(ooplot, default)
62+
S3method(plot, venn)
63+
S3method(print, ci2d)
64+
S3method(print, hist2d)
65+
66+
S3method(qqnorm, aov)
67+
68+
S3method(textplot, character)
69+
S3method(textplot, data.frame)
70+
S3method(textplot, default)
71+
S3method(textplot, matrix)

Diff for: NEWS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
inst/NEWS

0 commit comments

Comments
 (0)