-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNAMESPACE
38 lines (31 loc) · 1.08 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
useDynLib(L1pack, .registration = TRUE)
## required package
import(fastmatrix)
## base packages
importFrom("grDevices",
dev.interactive)
importFrom("graphics",
abline, mtext, par, plot, points, strheight, strwidth, text, title)
importFrom("stats", # some S3 generics for which we define methods
.checkMFClasses, .getXlevels, coef, delete.response, fitted, lsfit,
model.frame, model.matrix, model.response, na.fail, na.omit, na.pass,
pnorm, qnorm, qqnorm, quantile, residuals, runif, simulate, terms, vcov)
## Our Exports:
export(dlaplace, dmLaplace, l1fit, lad, lad.fit, lad.fit.BR, lad.fit.EM, LaplaceFit,
plaplace, qlaplace, rlaplace, rmLaplace, WH.Laplace)
## Exported S3 methods
export(simulate.lad)
## register S3 methods
S3method(confint, lad)
S3method(deviance, lad)
S3method(fitted, lad)
S3method(logLik, lad)
S3method(plot, lad)
S3method(predict, lad)
S3method(print, lad)
S3method(print, LaplaceFit)
S3method(print, summary.lad)
S3method(residuals, lad)
S3method(simulate, lad)
S3method(summary, lad)
S3method(vcov, lad)