-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNAMESPACE
96 lines (85 loc) · 2.45 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
import("Formula")
import("gamlss.dist")
import("mgcv")
importFrom("stats", "terms", ".getXlevels", "coef", "dnorm", "lm.wfit",
"make.link", "model.frame", "model.matrix", "model.offset",
"model.response", "model.weights", "nlminb", "pnorm",
"qnorm", "rnorm", "runif", "sd", "update", "predict", "family",
"density", "fitted", "lm", "ppoints", "qqnorm", "quantile", "residuals",
"as.formula", "optimHess", "printCoefmat", "pt", "vcov", "AIC", "BIC",
"formula", "logLik", "na.omit", "var", "optim", "median", "pchisq",
"na.pass", "reformulate", "cov", "rexp", "rgamma", "loess")
importFrom("utils", "flush.console", "tail", "getFromNamespace",
"capture.output", "combn")
importFrom("grDevices", "gray.colors", "n2mfrow", "rgb", "contourLines", "trans3d",
"dev.off", "png")
importFrom("graphics", "abline", "axis", "barplot", "box", "grid", "hist",
"lines", "par", "polygon", "rect", "image", "text", "rug", "matplot",
"points", "legend", "mtext")
importFrom("parallel", "mclapply")
importFrom("mvtnorm", "dmvnorm", "rmvnorm")
export(
"fake_formula",
"gamlss2",
"gamlss2.formula",
"gamlss2.list",
"gamlss2_control",
"RS",
"CG",
"special_fit",
"special_predict",
"specials",
"Rsq",
"GAIC",
"available_families",
"find_family",
"fit_family",
"response_name",
"stepwise",
"step_gamlss2",
"select_gamlss2",
"sRS",
"new_formula",
"softplus",
"shiftlog",
"Kumaraswamy",
"KS",
"make.link2",
"plot_lasso",
"la",
"lasso"
)
S3method(gamlss2, formula)
S3method(gamlss2, list)
S3method(plot, gamlss2)
S3method(plot, gamlss2.list)
S3method(predict, gamlss2)
S3method(fitted, gamlss2)
S3method(residuals, gamlss2)
S3method(family, gamlss2)
S3method(logLik, gamlss2)
S3method(deviance, gamlss2)
S3method(special_fit, cf)
S3method(special_predict, cf.fitted)
S3method(special_fit, n)
S3method(special_predict, n.fitted)
S3method(special_fit, tree)
S3method(special_predict, tree.fitted)
S3method(special_predict, default)
S3method(vcov, gamlss2)
S3method(confint, gamlss2)
S3method(coef, gamlss2)
S3method(summary, gamlss2)
S3method(print, gamlss2)
S3method(print, summary.gamlss2)
S3method(print, coef.gamlss2)
S3method(AIC, gamlss2)
S3method(BIC, gamlss2)
S3method(c, gamlss2)
S3method(quantile, gamlss2)
S3method(smooth.construct, lin.smooth.spec)
S3method(Predict.matrix, lin.effect)
S3method(new_formula, default)
S3method(new_formula, select)
S3method(distributions3::prodist, gamlss2)
useDynLib(gamlss2, .registration = TRUE)