-
Notifications
You must be signed in to change notification settings - Fork 15
/
NAMESPACE
108 lines (87 loc) · 2.51 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
export(
adjust_hsv,
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,
reorder.factor
)
importFrom(gtools, invalid)
importFrom(gtools, odd)
importFrom(gtools, mixedsort)
importFrom(stats, reorder)
importFrom(stats, na.omit)
importFrom(stats, nobs)
importFrom(caTools, runsd)
importFrom(caTools, runmean)
importFrom(KernSmooth, bkde2D)
importFrom(KernSmooth, dpik)
importFrom(utils, type.convert)
S3method(balloonplot, default)
S3method(balloonplot, table)
S3method(bandplot, default)
S3method(bandplot, formula)
S3method(barplot2, default)
S3method(bubbleplot, default)
S3method(bubbleplot, formula)
S3method(lowess, default)
S3method(lowess, formula)
S3method(ooplot, default)
S3method(plot, lowess)
S3method(plot, venn)
S3method(print, ci2d)
S3method(print, hist2d)
S3method(qqnorm, aov)
S3method(textplot, character)
S3method(textplot, data.frame)
S3method(textplot, default)
S3method(textplot, matrix)
S3method(reorder, factor)
# imports recommended by R CMD check
importFrom("grDevices", "col2rgb", "contourLines", "dev.flush",
"dev.hold", "dev.interactive", "heat.colors", "hsv", "rgb",
"rgb2hsv", "topo.colors")
importFrom("graphics", "abline", "arrows", "axTicks", "axis",
"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("stats", "as.dendrogram", "cooks.distance", "density",
"deviance", "df.residual", "dist", "dnorm", "effects",
"expand.model.frame", "fitted", "hclust", "is.leaf",
"lm.influence", "median", "model.frame", "order.dendrogram",
"ppoints", "predict", "qnorm", "qqline", "qqnorm", "qt",
"residuals", "sd", "var", "weights")
importFrom("utils", "str")
importFrom("methods", "is")