-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNAMESPACE
84 lines (84 loc) · 1.6 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
#################
# EXPORTED
#################
#
export(
mvmeta, mvmeta.fit,
mvmeta.fixed, mvmeta.ml, mvmeta.reml, mvmeta.mm, mvmeta.vc,
mvmetaSim,
mvmeta.control,
inputna,
inputcov,
summary.mvmeta,
print.mvmeta, print.summary.mvmeta,
predict.mvmeta,
blup, blup.mvmeta,
simulate.mvmeta,
qtest, qtest.mvmeta, print.qtest.mvmeta,
logLik.mvmeta,
coef.mvmeta, vcov.mvmeta,
model.frame.mvmeta, model.matrix.mvmeta,
na.omit.data.frame.mvmeta, na.exclude.data.frame.mvmeta,
vechMat, xpndMat
)
#
#################
# NOT EXPORTED
#################
#
# extractAIC.mvmeta, nobs.mvmeta
# mlprof.fn, mlprof.gr, remlprof.fn, remlprof.gr
# iter.igls
#
#################
# NOT USED
#################
#
# mlfull.fn, remlfull.fn
#
#################
# INTERNAL
#################
#
# .onAttach
# glsfit
# mkS
# inputScor
# initpar
# checkPD
# par2Psi
# mvsim
# gradchol.ml, gradchol.reml
# sumlist
# fbtr
#
#################
# IMPORTED
#################
#
import(stats, graphics, grDevices)
importFrom(mixmeta, blup, qtest, inputcov, inputna, vechMat, xpndMat)
importFrom(utils, packageDescription)
importFrom(utils, modifyList)
#
#################
# METHODS
#################
#
S3method(blup, mvmeta)
S3method(coef, mvmeta)
S3method(logLik, mvmeta)
S3method(model.frame, mvmeta)
S3method(model.matrix, mvmeta)
S3method(nobs, mvmeta)
S3method(predict, mvmeta)
S3method(simulate, mvmeta)
S3method(print, mvmeta)
S3method(qtest, mvmeta)
S3method(summary, mvmeta)
S3method(vcov, mvmeta)
#
S3method(print, summary.mvmeta)
S3method(print, qtest.mvmeta)
S3method(na.omit, data.frame.mvmeta)
S3method(na.exclude, data.frame.mvmeta)