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 94 95 96 97 98 99 100 101 102
|
### 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, rect, text)
importFrom("utils", head, stack, modifyList, tail, str)
importFrom("methods", formalArgs)
importFrom("rlang", .data)
### 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(AIC, fitdist)
S3method(BIC, 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(print, gofstat.fitdistcens)
S3method(quantile, fitdistcens)
S3method(logLik, fitdistcens)
S3method(AIC, fitdistcens)
S3method(BIC, fitdistcens)
S3method(vcov, fitdistcens)
S3method(coef, fitdistcens)
export(Surv2fitdistcens)
#bootdist class
export(bootdist)
export(CIcdfplot)
S3method(density, bootdist)
S3method(summary, bootdist)
S3method(plot, bootdist)
S3method(plot, density.bootdist)
S3method(print, bootdist)
S3method(print, density.bootdist)
S3method(print, summary.bootdist)
S3method(print, quantile.bootdist)
S3method(quantile, bootdist)
#bootdistcens class
export(bootdistcens)
S3method(density, bootdistcens)
S3method(summary, bootdistcens)
S3method(plot, bootdistcens)
S3method(plot, density.bootdistcens)
S3method(print, bootdistcens)
S3method(print, density.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, msedist)
export(detectbound, prefit)
#plot functions
export(plotdist, plotdistcens)
export(llplot, llsurface, llcurve)
#graphical comparison
export(cdfcomp, denscomp, qqcomp, ppcomp)
export(cdfcompcens, qqcompcens, ppcompcens)
#quantile functions [to be removed]
#export(quantiledist)
#export(quantiledistcens)
#other functions
export(gofstat)
### use dynamic library for C code
#useDynLib(fitdistrplus, .registration = TRUE)
|