-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNAMESPACE
93 lines (91 loc) · 2.39 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
# Import all packages listed as Imports or Depends
# not selective:
#import(
# mvtnorm, stats, graphics, grDevices, utils
#)
# import selectively only the used functions (good practice)
importFrom(mvtnorm, GenzBretz, pmvt, pmvnorm, rmvnorm)
importFrom(graphics, abline, box, close.screen, legend, par, plot, points,
screen, split.screen, segments, text, mtext, grid,
grconvertX, grconvertY, strheight, strwidth)
importFrom(grDevices, colorRampPalette, xy.coords)
importFrom(stats, dnorm, pnorm, qnorm, rnorm, dt, pt, qt, dchisq, qchisq, rchisq,
qf, rf, df, uniroot, integrate, optim, optimize, binom.test, coef,
confint, lm.fit, .lm.fit, lm, model.matrix, reshape, rWishart, anova)
importFrom(utils, tail, head, read.table, flush.console, setTxtProgressBar,
txtProgressBar)
importFrom(cubature, hcubature)
#importFrom(TeachingDemos, shadowtext)
# Export all names except those beginning with .
# exportPattern("^[^\\.]")
#
# Export explicitly by name
export(
bib.CL
, CI.BE
, CI.RatioF
, CVCL
, CV2se
, CV2mse
, CVfromCI
, CI2CV # alias
, CVwRfromU
, U2CVwR # alias
, CVp2CV
, CVpooled
, exppower.noninf
, exppower.TOST
, expsampleN.noninf
, expsampleN.TOST
, known.designs
, OwensQ
, OwensQOwen
, OwensT
, pa.ABE
, pa.scABE
, pa.NTID # replaces pa.NTIDFDA
, power.2TOST
, type1error.2TOST
, power.noninf
, power.RatioF
, power.TOST
, power.TOST.sim
, power.TOST.sds
, power.NTID # replaces power.NTIDFDA
, power.HVNTID
, power.RSABE
, power.RSABE2L.sdsims
, power.RSABE2L.sds # alias
, power.scABEL
, power.scABEL.sdsims
, power.scABEL.sds # alias
, sampleN.RSABE2L.sdsims
, sampleN.RSABE2L.sds # alias
, power.dp
, pvalue.TOST
, pvalues.TOST
, reg_const
, sampleN.noninf
, sampleN.RatioF
, sampleN.2TOST
, sampleN.TOST
, sampleN.NTID # replaces sampleN.NTIDFDA
, sampleN.HVNTID
, sampleN.RSABE
, sampleN.scABEL
, sampleN.scABEL.sdsims
, sampleN.scABEL.sds # alias
, sampleN.scABEL.ad
, sampleN.dp
, scABEL
, scABEL.ad
, se2CV
, mse2CV
)
# Define S3 methods for the pooled CV
S3method(print, CVp)
# S3 methods for printing/plotting power analysis
S3method(print, pwrA)
S3method(plot, pwrA)
# S3 method print for the regulatory settings in ABEL
S3method(print, regSet)