-
Notifications
You must be signed in to change notification settings - Fork 2
/
NAMESPACE
93 lines (88 loc) · 2.49 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
useDynLib(diveMove, run_quantile)
## From standard packages
import(methods) # Paranoid measure
importFrom(stats4, mle, coef)
importFrom(graphics, abline, arrows, axTicks, axis, axis.POSIXct, box,
contour, curve, hist, image, legend, lines, locator,
mtext, par, plot, points, rect, rug, segments, text)
importFrom(grDevices, colorRampPalette, contourLines, dev.off, hsv, rgb)
importFrom(plotly,
plot_ly, add_lines, add_markers, subplot, "%>%")
importFrom(stats, approx, approxfun, bw.nrd, ecdf, lm, median, nls,
nls.control, predict, quantile, rexp, sd, smooth.spline,
splinefun, stepfun)
importFrom(utils, read.csv)
## bkde2d and rq for speed calibration
importFrom(KernSmooth, bkde2D)
importFrom(quantreg, rq)
## unireg for dive phase identification
importFrom(uniReg, unireg)
## distance algorithms
importFrom(geosphere, distMeeus, distVincentyEllipsoid)
export("grpSpeedFilter",
"rmsDistFilter",
"austFilter",
"logit",
"unLogit",
"boutfreqs",
## "boutsCDF",
"calibrateDepth",
"calibrateSpeed",
"rqPlot",
"distSpeed",
"diveStats",
"oneDiveStats",
"readLocs",
"readTDR",
"rmixexp",
"createTDR",
"stampDive")
## Deprecated functions
export("bouts2.nlsFUN",
"bouts2.nls",
"bec2",
"bec3",
"bouts3.nlsFUN",
"bouts3.nls",
"bouts2.mleFUN")
## Defunct functions
export("bouts2.ll",
"bouts2.LL",
"bouts.mle")
exportClasses("TDR",
"TDRspeed",
"TDRcalibrate",
"Bouts",
"diveModel")
exportMethods("as.data.frame",
"as.TDRspeed",
"bec",
"boutinit",
"fitNLSbouts",
"fitMLEbouts",
"plotBouts",
"plotBoutsCDF",
"labelBouts",
"timeBudget",
"coerce",
"depth<-",
"speed<-",
"ccData<-",
"getCCData",
"getDepth",
"getDAct",
"getDPhaseLab",
"getDiveDeriv",
"getDiveModel",
"getDtime",
"getFileName",
"extractDive",
"getGAct",
"plotTDR",
"plotDiveModel",
"plotZOC",
"show",
"getTDR",
"getTime",
"getSpeedCoef",
"getSpeed")