-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
executable file
·50 lines (44 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
46
47
48
49
50
importFrom(Rcpp, evalCpp)
#import(RcppEigen)
# Exported functions
export(jmodelTM, jmodelMult)
# Imported functions
importFrom(nlme, fixed.effects)
importFrom(nlme, fixef)
importFrom(nlme, random.effects)
importFrom(nlme, ranef)
importFrom(nlme, splitFormula)
importFrom(statmod, gauss.quad)
importFrom(stats, AIC)
importFrom(stats, BIC)
importFrom("stats", "cov2cor", "formula", "model.frame", "qnorm",
"model.matrix", "model.response", "pnorm", "printCoefmat",
"terms")
import(survival,splines)
# S3 methods
S3method(logLik, jmodelTM)
S3method(logLik, jmodelMult)
S3method(BIC, jmodelTM)
S3method(BIC, jmodelMult)
S3method(print, jmodelTM)
S3method(print, jmodelMult)
S3method(print, summary.jmodelTM)
S3method(print, summary.jmodelMult)
S3method(summary, jmodelTM)
S3method(summary, jmodelMult)
S3method(vcov, jmodelTM)
S3method(vcov, jmodelMult)
S3method(AIC, jmodelTM)
S3method(AIC, jmodelMult)
# Added S3 methods
S3method(fitted, jmodelTM)
S3method(fitted, jmodelMult)
S3method(ranef, jmodelTM)
S3method(ranef, jmodelMult)
S3method(residuals, jmodelTM)
S3method(residuals, jmodelMult)
S3method(confint, jmodelTM)
S3method(confint, jmodelMult)
S3method(print, confint.jmodelTM)
S3method(print, confint.jmodelMult)
useDynLib(JSM, .registration = TRUE)