-
Notifications
You must be signed in to change notification settings - Fork 27
/
NAMESPACE
175 lines (171 loc) · 4.61 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
useDynLib(Rssa, .registration = TRUE)
import(lattice)
import(svd)
import(forecast)
export(clone,
decompose,
reconstruct,
nu,
nv,
nlambda,
nsigma,
nspecial,
contributions,
calc.v,
precache,
cleanup,
ssa,
wcor,
wcor.default,
hmatr,
wnorm,
# Capabilities
ssa.capabilities,
# Hankel matrix' routines
new.hmat,
hmatmul,
hankel,
hcols,
hrows,
is.hmat,
# Hankel-block hankel matrix' routines
new.hbhmat,
hbhmatmul,
hbhcols,
hbhrows,
is.hbhmat,
# Symmetric toeplitz matrix' routines
new.tmat,
tmatmul,
tcols,
trows,
is.tmat,
# Forecast stuff
lrr,
roots,
rforecast,
vforecast,
bforecast,
# Period estimation
parestimate,
# Gap filling and rank estimation
cadzow,
# Non-orthogonal decompositions
iossa,
eossa,
owcor,
fossa,
frobenius.cor,
# Gapfilling
igapfill,
clplot,
gapfill,
summarize.gaps,
# Auto-grouping routines
grouping.auto,
grouping.auto.wcor,
grouping.auto.pgram
)
S3method("clone", ssa)
S3method("decompose", "ssa")
S3method("decompose", "toeplitz.ssa")
S3method("decompose", "cssa")
S3method("decompose", "pssa")
S3method("decompose", "ossa")
S3method("reconstruct", ssa)
S3method("residuals", ssa)
S3method("residuals", "ssa.reconstruction")
S3method("calc.v", "ssa")
S3method("calc.v", "cssa")
S3method("$", ssa)
S3method("print", ssa)
S3method("print", ossa)
S3method("summary", ssa)
S3method("summary", ossa)
S3method("plot", ssa)
S3method("plot", "1d.ssa.reconstruction")
S3method("plot", "toeplitz.ssa.reconstruction")
S3method("plot", "2d.ssa.reconstruction")
S3method("plot", "nd.ssa.reconstruction")
S3method("plot", "mssa.reconstruction")
S3method("plot", "cssa.reconstruction")
S3method("plot", "grouping.auto.wcor")
S3method("plot", "grouping.auto.pgram")
S3method("wcor", "default")
S3method("wcor", "ssa")
S3method("wcor", "ossa")
S3method("wnorm", "default")
S3method("wnorm", "complex")
S3method("wnorm", "1d.ssa")
S3method("wnorm", "cssa")
S3method("wnorm", "nd.ssa")
S3method("wnorm", "toeplitz.ssa")
S3method("wnorm", "mssa")
S3method("plot", wcor.matrix)
S3method("lrr", "default")
S3method("lrr", "1d.ssa")
S3method("lrr", "toeplitz.ssa")
S3method("lrr", "mssa")
S3method("lrr", "cssa")
S3method("forecast", "1d.ssa")
S3method("forecast", "toeplitz.ssa")
S3method("predict", "1d.ssa")
S3method("predict", "toeplitz.ssa")
S3method("predict", "mssa")
S3method("rforecast", "1d.ssa")
S3method("rforecast", "toeplitz.ssa")
S3method("rforecast", "mssa")
S3method("rforecast", "cssa")
S3method("rforecast", "pssa.1d.ssa")
S3method("vforecast", "1d.ssa")
S3method("vforecast", "toeplitz.ssa")
S3method("vforecast", "mssa")
S3method("vforecast", "cssa")
S3method("vforecast", "pssa.1d.ssa")
S3method("roots", "lrr")
S3method("plot", "lrr")
S3method("print", "fdimpars.1d")
S3method("plot", "fdimpars.1d")
S3method("print", "fdimpars.nd")
S3method("plot", "fdimpars.nd")
S3method("plot", "hmatr")
S3method("print", "iossa.result")
S3method("print", "ssa.gaps")
S3method("plot", "ssa.gaps")
S3method("summary", "iossa.result")
S3method("bforecast", "1d.ssa")
S3method("bforecast", "toeplitz.ssa")
S3method("parestimate", "1d.ssa")
S3method("parestimate", "nd.ssa")
S3method("parestimate", "toeplitz.ssa")
S3method("parestimate", "mssa")
S3method("parestimate", "cssa")
S3method("cadzow", "ssa")
S3method("nspecial", "ssa")
S3method("nspecial", "pssa")
S3method("gapfill", "1d.ssa")
S3method("gapfill", "cssa")
S3method("gapfill", "toeplitz.ssa")
S3method("gapfill", "mssa")
S3method("igapfill", "ssa")
S3method("igapfill", "1d.ssa")
S3method("igapfill", "nd.ssa")
S3method("igapfill", "mssa")
S3method("summarize.gaps", "1d.ssa")
S3method("summarize.gaps", "cssa")
S3method("summarize.gaps", "toeplitz.ssa")
S3method("fossa", "ssa")
S3method("iossa", "ssa")
S3method("grouping.auto.wcor", "ssa")
S3method("grouping.auto.pgram", "1d.ssa")
S3method("grouping.auto.pgram", "toeplitz.ssa")
S3method("eossa", "ssa")
## Default imports
importFrom("grDevices", "colorRampPalette", "grey", "heat.colors")
importFrom("graphics", "image", "matplot", "plot")
importFrom("stats", "approxfun", "as.dist", "as.formula", "cov2cor",
"cutree", "fft", "filter", "frequency", "hclust", "is.ts",
"mad", "median", "mvfft", "poly", "predict", "quantile",
"residuals", "time", "toeplitz", "ts", "ts.union", "tsp<-")
importFrom("utils", "head", "modifyList", "object.size", "getS3method")
importFrom("methods", "new")