-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathNAMESPACE
48 lines (43 loc) · 1.22 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
useDynLib("midasml", .registration = TRUE)
import("Matrix")
#import("doSNOW")
importFrom("doRNG","%dorng%")
importFrom("foreach","%do%")
importFrom("foreach","%dopar%")
importFrom("doParallel","registerDoParallel")
importFrom("foreach","foreach")
importFrom("graphics", "segments")
importFrom("stats", "approx", "coef", "glm", "nlm")
importFrom("utils", "capture.output")
importFrom("methods", "new")
importFrom("Matrix", "Diagonal")
importFrom("randtoolbox", "sobol", "torus", "SFMT")
importFrom(snow, makeCluster)
importFrom(snow, clusterExport)
importFrom(snow, stopCluster)
importFrom(snow, parSapply)
importFrom(snow, parRapply)
importFrom("stats", "median", "nlminb", "optim")
importFrom("utils", "setTxtProgressBar", "txtProgressBar")
export(thetafit)
export(tscv.sglfit)
export(cv.sglfit)
export(cv.panel.sglfit)
export(ic.sglfit)
export(ic.panel.sglfit)
export(reg.sgl)
export(reg.panel.sgl)
export(sglfit)
export(midas.ardl)
export(lb)
export(gb)
export(mixed_freq_data)
export(mixed_freq_data_single)
export(monthBegin)
export(monthEnd)
export(dateMatch)
S3method("predict","sglpath")
S3method("predict","cv.sglfit")
S3method("predict","cv.panel.sglfit")
S3method("predict","ic.sglfit")
S3method("predict","ic.panel.sglfit")