-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNAMESPACE
More file actions
67 lines (67 loc) · 2.07 KB
/
NAMESPACE
File metadata and controls
67 lines (67 loc) · 2.07 KB
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
import(graphics)
import(methods)
import(stats)
import(datasets)
import(utils)
import(grDevices)
exportPattern("^[[:alpha:]]+")
useDynLib(spMC, .registration = TRUE)
if(getRversion() >= "3.6.0") {
S3method(spMC::boxplot, lengths)
S3method(spMC::contour, pemt)
S3method(spMC::density, lengths)
S3method(spMC::hist, lengths)
S3method(spMC::image, multi_tpfit)
S3method(spMC::image, pemt)
# S3method(spMC::is, lengths)
# S3method(spMC::is, multi_tpfit)
# S3method(spMC::is, multi_transiogram)
# S3method(spMC::is, pemt)
# S3method(spMC::is, tpfit)
# S3method(spMC::is, transiogram)
S3method(spMC::persp, multi_tpfit)
S3method(spMC::persp, pemt)
S3method(spMC::plot, density.lengths)
S3method(spMC::plot, hist.lengths)
S3method(spMC::plot, lengths)
S3method(spMC::plot, transiogram)
S3method(spMC::predict, multi_tpfit)
S3method(spMC::predict, tpfit)
S3method(spMC::print, density.lengths)
S3method(spMC::print, lengths)
S3method(spMC::print, multi_tpfit)
S3method(spMC::print, multi_transiogram)
S3method(spMC::print, summary.lengths)
S3method(spMC::print, tpfit)
S3method(spMC::print, transiogram)
S3method(spMC::summary, lengths)
} else {
S3method(boxplot, lengths)
S3method(contour, pemt)
S3method(density, lengths)
S3method(hist, lengths)
S3method(image, multi_tpfit)
S3method(image, pemt)
# S3method(is, lengths)
# S3method(is, multi_tpfit)
# S3method(is, multi_transiogram)
# S3method(is, pemt)
# S3method(is, tpfit)
# S3method(is, transiogram)
S3method(persp, multi_tpfit)
S3method(persp, pemt)
S3method(plot, density.lengths)
S3method(plot, hist.lengths)
S3method(plot, lengths)
S3method(plot, transiogram)
S3method(predict, multi_tpfit)
S3method(predict, tpfit)
S3method(print, density.lengths)
S3method(print, lengths)
S3method(print, multi_tpfit)
S3method(print, multi_transiogram)
S3method(print, summary.lengths)
S3method(print, tpfit)
S3method(print, transiogram)
S3method(summary, lengths)
}