-
Notifications
You must be signed in to change notification settings - Fork 1
/
NAMESPACE
110 lines (106 loc) · 2.67 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
useDynLib(networkDynamic, .registration = TRUE)
import(statnet.common, network, networkLite)
importFrom("methods", "el")
importFrom("methods", "is")
importFrom("stats", "na.omit")
importFrom("utils", "read.table", "tail")
export(
networkDynamic,
print.networkDynamic,
as.data.frame.networkDynamic,
is.networkDynamic,
as.networkDynamic,
as.network.networkDynamic,
as.networkDynamic.networkDynamic,
as.networkDynamic.network,
read.son,
"%t%",
network.extract,
"%k%",
network.collapse,
get.networks,
network.dynamic.check,
activate.edges,
activate.vertices,
add.edges.active,
add.vertices.active,
deactivate.edges,
deactivate.vertices,
delete.edge.activity,
delete.vertex.activity,
get.change.times,
get.edgeIDs.active,
get.edges.active,
get.neighborhood.active,
get.edge.activity,
get.vertex.activity,
is.active,
is.adjacent.active,
network.dyadcount.active,
network.edgecount.active,
network.naedgecount.active,
network.size.active,
activate.network.attribute,
get.network.attribute.active,
activate.vertex.attribute,
get.vertex.attribute.active,
activate.edge.attribute,
activate.edge.value,
get.edge.attribute.active,
deactivate.edge.attribute,
deactivate.vertex.attribute,
deactivate.network.attribute,
list.vertex.attributes.active,
list.edge.attributes.active,
list.network.attributes.active,
get.edge.value.active,
spells.overlap,
spells.hit,
search.spell,
get.vertex.id,
vertex.pid.check,
get.vertex.pid,
initialize.pids,
get.edge.id,
get.edge.pid,
edge.pid.check,
add.vertices.networkDynamic,
add.edges.networkDynamic,
add.edge.networkDynamic,
reconcile.vertex.activity,
reconcile.edge.activity,
adjust.activity,
get.dyads.active,
when.vertex.attrs.match,
when.edge.attrs.match,
edges.age.at,
dyads.age.at,
vertices.age.at
#when.next.edge.change
)
# register S3 methods
S3method(add.edge,networkDynamic)
S3method(add.edges,networkDynamic)
S3method(add.vertices,networkDynamic)
S3method(as.data.frame,networkDynamic)
S3method(as.network,networkDynamic)
S3method(as.networkDynamic,network)
S3method(as.networkDynamic,networkDynamic)
S3method(print,networkDynamic)
S3method(as.networkDynamic,networkLite)
S3method(as.networkDynamic,siena)
# these are NOT S3 methods, but are included here because its the
# only way to quiet the warning
S3method(add.edges,active)
S3method(add.vertices,active)
S3method(network.dyadcount,active)
S3method(network.edgecount,active)
S3method(network.naedgecount,active)
S3method(network.size,active)
S3method(get.vertex.attribute,active)
S3method(list.vertex.attributes,active)
S3method(get.edge.attribute,active)
S3method(get.edge.value,active)
S3method(list.edge.attributes,active)
S3method(get.network.attribute,active)
S3method(list.network.attributes,active)