forked from TGuillerme/dispRity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
133 lines (122 loc) · 3.36 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#Dependencies
import(ape)
import(stats)
importFrom("ade4", "randtest", "as.randtest")
importFrom("castor", "get_subtree_with_tips", "get_all_pairwise_distances", "get_all_distances_to_root", "asr_mk_model")
importFrom("Claddis", "calculate_morphological_distances")
importFrom("geiger", "dtt", "ratematrix", "sim.char", "treedata")
importFrom("geometry", "convhulln", "dot")
importFrom("graphics", "abline", "axis", "boxplot", "hist", "image", "lines", "mtext", "par", "plot", "points", "polygon", "text", "legend", "barplot")
importFrom("grDevices", "colorRampPalette", "grey", "hcl", "heat.colors")
importFrom("methods", "hasArg")#, "is")
importFrom("mnormt", "dmnorm", "rmnorm")
# importFrom("paleotree", "timeSliceTree")
importFrom("phangorn", "dist.hamming", "NJ", "RF.dist", "CI", "RI", "optim.parsimony", "parsimony")
importFrom("phyclust", "gen.seq.HKY")
importFrom("utils", "combn", "data", "capture.output", "tail")
importFrom("vegan", "adonis", "vegdist")
importFrom("scales", "rescale")
importFrom("spptest", "create_curve_set", "rank_envelope")
importFrom("parallel", "parLapply", "detectCores", "makeCluster", "clusterExport", "stopCluster")
# importFrom("geomorph", "gpagen")
# importFrom("RCurl", "getURL", "url.exists")
##C libraries
useDynLib(dispRity, .registration = TRUE)
## Data utilities
export(Claddis.ordination)
export(geomorph.ordination)
##Functions
export(boot.matrix)
export(chrono.subsets)
export(custom.subsets)
export(dispRity)
export(dispRity.per.group)
export(dispRity.through.time)
export(plot.dispRity)
export(print.dispRity)
export(summary.dispRity)
export(test.dispRity)
export(test.metric)
##disparity metrics
export(ancestral.dist)
export(angles)
export(centroids)
export(convhull.volume)
export(convhull.surface)
export(deviations)
export(diagonal)
export(dimension.level1.fun)
export(dimension.level2.fun)
export(dimension.level3.fun)
export(displacements)
export(ellipse.volume)
export(func.div)
export(func.eve)
export(group.dist)
export(mode.val)
export(n.ball.volume)
export(neighbours)
export(pairwise.dist)
export(point.dist)
export(phylo.projections)
export(projections)
export(quantiles)
export(radius)
export(ranges)
export(span.tree.length)
export(variances)
##disparity tests
export(adonis.dispRity)
export(bhatt.coeff)
export(dtt.dispRity)
export(model.test)
export(model.test.sim)
export(model.test.wrapper)
export(null.test)
export(randtest.dispRity)
# export(sequential.test)
##dispRity object utilities
export(combine.subsets)
export(extinction.subsets)
export(extract.dispRity)
export(fill.dispRity)
export(get.subsets)
export(n.subsets)
export(make.dispRity)
export(matrix.dispRity)
export(rescale.dispRity)
export(size.subsets)
export(sort.dispRity)
##Package utilities
export(clean.data)
export(crown.stem)
export(get.bin.ages)
export(make.metric)
export(nodes.coordinates)
export(pair.plot)
export(random.circle)
export(reduce.matrix)
export(reduce.space)
export(remove.zero.brlen)
export(slice.tree)
export(slide.nodes)
export(space.maker)
export(tree.age)
export(get.ancestors)
##Morphological data analysis
export(apply.NA)
export(char.diff)
export(plot.char.diff)
export(check.morpho)
export(get.contrast.matrix)
export(sim.morpho)
export(multi.ace)
##S3
S3method(adonis, dispRity)
S3method(dtt, dispRity)
S3method(matrix, dispRity)
S3method(plot, char.diff)
S3method(plot, dispRity)
S3method(print, dispRity)
S3method(sort, dispRity)
S3method(summary, dispRity)