forked from bbolker/glmmadmb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
executable file
·50 lines (45 loc) · 1.57 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
export(glmmadmb,glmm.admb,admbControl,mcmcControl,get_bin_version,getdata,check_rforge)
importFrom(stringr,str_extract)
importFrom(plyr,mutate,ddply)
import(MASS,methods)
importFrom(coda,mcmc)
importFrom(nlme,ranef,fixef,VarCorr)
importFrom(R2admb,dat_write,stdEr,read_pars)
importFrom(stats,nobs,extractAIC,model.frame,step)
importFrom(Matrix,rankMatrix)
## importMethodsFrom("nlme",ranef,VarCorr)
export(ranef) ## (needs to be explicit even if using generic exportPattern)
export(fixef)
export(stdEr)
export(VarCorr)
export(step,stepAIC) ## STUBS to try to intercept ...
## export(dat_write) ## now use R2admb version
## export(nobs)
## from base packages
importFrom("graphics", "plot")
importFrom("stats", "AIC", "as.formula", "cov2cor", "formula",
"logLik", "model.matrix", "model.offset", "model.response",
"pchisq", "plogis", "pnorm", "printCoefmat", "qlogis",
"qnorm", "terms", "update.formula", "vcov", "reformulate")
importFrom("utils", "download.file", "file_test", "read.table",
"write.table")
S3method(anova,glmmadmb)
S3method(coef,glmmadmb)
S3method(df.residual,glmmadmb)
S3method(extractAIC,glmmadmb)
S3method(fitted,glmmadmb)
S3method(fixef,glmmadmb)
S3method(logLik,glmmadmb)
S3method(model.frame,glmmadmb)
S3method(nobs,glmmadmb)
S3method(predict,glmmadmb)
S3method(print,glmmadmb)
S3method(print,summary.glmmadmb)
S3method(print,VarCorr)
S3method(ranef,glmmadmb)
S3method(residuals,glmmadmb)
S3method(stdEr,glmmadmb)
S3method(summary,glmmadmb)
S3method(VarCorr,glmmadmb)
S3method(VarCorr,summary.glmmadmb)
S3method(vcov,glmmadmb)