-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathNAMESPACE
152 lines (120 loc) · 2.73 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# imports ----
importFrom("stats", "aggregate") # to be removed when aggregate.cube deprecated
importFrom("utils", "head")
importFrom("stats", "runif", "setNames")
importFrom("utils", "object.size", "str")
import(data.table)
import(R6)
# others ----
# is.*
export(is.measure)
export(is.level)
export(is.hierarchy)
export(is.dimension)
export(is.fact)
export(is.data.cube)
export(is.cube)
# others
S3method(as.data.table, array)
S3method(as.array, data.table)
S3method(rollup, data.table)
export(populate_star)
export(process.dim)
# cube ----
export(cube)
export(capply)
export(rollup)
# as.cube.*
export(as.cube)
S3method(as.cube, default)
S3method(as.cube, matrix)
S3method(as.cube, array)
S3method(as.cube, list)
S3method(as.cube, data.table)
# *.cube
S3method("[", cube)
S3method(dim, cube)
S3method(dimnames, cube)
S3method(str, cube)
S3method(aggregate, cube) # to be deprecated
S3method(rollup, cube)
S3method(format, cube)
# as.*.cube
S3method(as.data.table, cube)
S3method(as.list, cube)
S3method(as.array, cube)
# measure ----
export(as.measure) # non generic
export(currency.format)
# level ----
# as.level.*
export(as.level)
S3method(as.level, default)
S3method(as.level, data.table)
# *.level
S3method(length, level)
S3method(names, level)
S3method(dim, level)
S3method(str, level)
# as.*.level
S3method(as.data.table, level)
# hierarchy ----
# as.hierarchy.*
export(as.hierarchy)
S3method(as.hierarchy, default)
S3method(as.hierarchy, list)
# *.hierarchy
S3method(length, hierarchy)
S3method(names, hierarchy)
S3method(str, hierarchy)
# as.*.hierarchy
S3method(as.list, hierarchy)
# dimension ----
# as.dimension.*
export(as.dimension)
S3method(as.dimension, default)
S3method(as.dimension, data.table)
# *.dimension
S3method(length, dimension)
S3method(names, dimension)
S3method(dim, dimension)
S3method(dimnames, dimension)
S3method(str, dimension)
# as.*.dimension
S3method(as.data.table, dimension)
# fact ----
# as.fact.*
export(as.fact)
S3method(as.fact, default)
S3method(as.fact, data.table)
# *.fact
S3method(length, fact)
S3method(names, fact)
S3method(dim, fact)
S3method(str, fact)
# as.*.fact
S3method(as.data.table, fact)
# data.cube ----
# as.data.cube
export(as.data.cube)
S3method(as.data.cube, default)
S3method(as.data.cube, matrix)
S3method(as.data.cube, array)
S3method(as.data.cube, fact)
S3method(as.data.cube, list)
S3method(as.data.cube, data.table)
S3method(as.data.cube, cube)
# `[.data.cube`
S3method("[", data.cube)
export(apply.data.cube)
# *.data.cube
S3method(length, data.cube)
S3method(names, data.cube)
S3method(dim, data.cube)
S3method(head, data.cube)
S3method(str, data.cube)
S3method(dimnames, data.cube)
S3method(format, data.cube)
# as.*.data.cube
S3method(as.array, data.cube)
S3method(as.data.table, data.cube)