-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNAMESPACE
74 lines (72 loc) · 2.04 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
useDynLib("BoutrosLab.plotting.general", .registration = TRUE)
import(
"MASS",
"cluster",
"hexbin",
"lattice",
"latticeExtra",
"grid"
);
export(
"auto.axis",
"colour.gradient",
"covariates.grob",
"create.colourkey",
"create.barplot",
"create.boxplot",
"create.colourkey",
"create.dendrogram",
"create.densityplot",
"create.dotmap",
"create.gif",
"create.heatmap",
"create.hexbinplot",
"create.histogram",
"create.lollipopplot",
"create.manhattanplot",
"create.multiplot",
"create.multipanelplot",
"create.polygonplot",
"create.qqplot.fit",
"create.qqplot.comparison",
"create.qqplot.fit.confidence.interval",
"create.scatterplot",
"create.segplot",
"create.stripplot",
"create.violinplot",
"default.colours",
"display.colours",
"display.statistical.result",
"dist",
"thousands.split",
"force.colour.scheme",
"generate.at.final",
"get.corr.key",
"get.correlation.p.and.corr",
"get.defaults",
"get.line.breaks",
"critical.value.ks.test",
"legend.grob",
"pcawg.colours",
"scientific.notation",
"show.available.palettes",
"write.metadata",
"write.plot"
);
importFrom("grDevices", "col2rgb", "colorRamp", "colorRampPalette",
"dev.cur", "dev.list", "dev.off", "grey", "ps.options",
"rgb", "setEPS", "colours", "png", "cairo_pdf", "postscript", "svg", "tiff");
importFrom("graphics", "abline", "par", "plot.new", "rect",
"strheight", "strwidth", "text");
importFrom("stats", "as.dendrogram", "as.dist", "as.formula",
"as.hclust", "coef", "cor", "cor.test", "dendrapply", "density", "ecdf",
"hclust", "is.leaf", "lm", "loess", "median", "model.frame",
"order.dendrogram", "ppoints", "predict", "pt", "qnorm", "quantile", "uniroot", "update", "sd");
importFrom("utils", "packageVersion", "read.table", "stack", "tail", "write.table");
importFrom("tools", "file_ext");
importFrom("methods", "is");
importFrom("e1071","skewness");
importFrom("gtable","gtable_add_grob");
importFrom("gridExtra", "arrangeGrob");
S3method(print, multipanel)
S3method(plot, multipanel)