forked from cran/fitdistrplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
85 lines (71 loc) · 2.07 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
### Imports
import(stats)
importFrom("survival", Surv, survfit)
importFrom("MASS", kde2d)
importFrom("grDevices", colorRampPalette, terrain.colors)
importFrom("graphics", abline, axis, hist, hist.default, legend, lines, par, plot, points, polygon, contour, layout, matlines, segments, stripchart, image, pairs)
importFrom("utils", head, stack, modifyList)
importFrom("methods", formalArgs)
### Exports
#fitdist class
export(fitdist)
S3method(summary, fitdist)
S3method(plot, fitdist)
S3method(print, fitdist)
S3method(print, summary.fitdist)
S3method(print, quantile.fitdist)
S3method(print, gofstat.fitdist)
S3method(quantile, fitdist)
S3method(logLik, fitdist)
S3method(vcov, fitdist)
S3method(coef, fitdist)
#fitditscens class
export(fitdistcens)
S3method(summary, fitdistcens)
S3method(plot, fitdistcens)
S3method(print, fitdistcens)
S3method(print, summary.fitdistcens)
S3method(print, quantile.fitdistcens)
S3method(quantile, fitdistcens)
S3method(logLik, fitdistcens)
S3method(vcov, fitdistcens)
S3method(coef, fitdistcens)
#bootdist class
export(bootdist)
export(CIcdfplot)
S3method(summary, bootdist)
S3method(plot, bootdist)
S3method(print, bootdist)
S3method(print, summary.bootdist)
S3method(print, quantile.bootdist)
S3method(quantile, bootdist)
#bootdistcens class
export(bootdistcens)
S3method(summary, bootdistcens)
S3method(plot, bootdistcens)
S3method(print, bootdistcens)
S3method(print, summary.bootdistcens)
S3method(print, quantile.bootdistcens)
S3method(quantile, bootdistcens)
#descdist class
export(descdist)
S3method(print, descdist)
#new generic functions [to be removed]
#export(loglik)
#S3method(loglik, default)
#dedicated fit functions
export(mledist, mmedist, qmedist, mgedist)
export(detectbound, prefit)
#plot functions
export(plotdist, plotdistcens)
export(llplot, llsurface, llcurve)
#graphical comparison
export(cdfcomp, denscomp, qqcomp, ppcomp)
export(cdfcompcens)
#quantile functions [to be removed]
#export(quantiledist)
#export(quantiledistcens)
#other functions
export(gofstat)
### use dynamic library for C code
#useDynLib(fitdistrplus, .registration = TRUE)