-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
45 lines (42 loc) · 1.26 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
# functions
export(centiles.boot, pc, gamlss.pc, getSVD, fitRolling,
which.Data.Corr, which.yX.Corr, fitPCR, pcr, gamlss.pcr,
BayesianBoot, NonParametricBoot, fitQR)
import(stats)
import(gamlss)
import(gamlss.data)
import(foreach)
import(doParallel)
import(glmnet)
importFrom(gamlss.dist, dNO, qNO, pNO, NO)
importFrom("methods", "is")
importFrom(graphics, lines, plot)
importFrom("graphics", "abline")
importFrom("graphics", "polygon")
importFrom("graphics", "text")
#importFrom("base", "La.svd")
importFrom("grDevices", "gray")
importFrom("graphics", "par")
importFrom("graphics", "rug")
importFrom("utils", "head", "tail")
importFrom("ggplot2", "ggplot", "geom_line", "geom_point")
################################################################################
S3method(print, Bayesian.boot)
S3method(summary, Bayesian.boot)
S3method(plot, Bayesian.boot)
S3method(print, NonParametric.Boot)
S3method(summary, NonParametric.Boot)
S3method(plot, NonParametric.Boot)
S3method(print, centiles.boot)
S3method(summary, centiles.boot)
S3method(plot, centiles.boot)
S3method(plot, pc)
S3method(print, pc)
S3method(coef, pc)
S3method(plot, PCR)
S3method(print, PCR)
S3method(coef, PCR)
S3method(fitted, PCR)
S3method(summary, PCR)
S3method(predict, PCR)
S3method(vcov, PCR)