File: NAMESPACE

package info (click to toggle)
r-cran-kernlab 0.9-33-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,216 kB
  • sloc: cpp: 6,011; ansic: 935; makefile: 2
file content (140 lines) | stat: -rw-r--r-- 2,771 bytes parent folder | download | duplicates (4)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
useDynLib("kernlab", .registration = TRUE)

import("methods")
importFrom("stats", "coef", "delete.response", "fitted", "kmeans",
           "median", "model.extract", "model.matrix", "na.action",
           "na.omit", "predict", "quantile", "rnorm", "runif", "sd",
           "terms", "var") 
importFrom("graphics", "axis", "filled.contour", "plot", "points", "title")
importFrom("grDevices", "hcl")

export(	
       ## kernel functions
       "rbfdot",
       "laplacedot",
       "besseldot",
       "polydot",
       "tanhdot",
       "vanilladot",
       "anovadot",
       "splinedot",
       "stringdot",
       "kernelMatrix",
       "kernelMult",
       "kernelPol",
       "kernelFast",
       "as.kernelMatrix",
	
       ## High level functions 
       "kmmd",
       "kpca",
       "kcca",
       "kha",
       "specc",
       "kkmeans",
       "ksvm",
       "rvm",
       "gausspr",
       "ranking",
       "csi",
       "lssvm",
       "kqr",
       
       ## Utility functions
       "ipop",
       "inchol",
       "couple",
       "sigest",
       
       ## Accessor functions
       
       ## VM
       "type",
       "prior",
       "alpha",
       "alphaindex",
       "kernelf",
       "kpar",
       "param",
       "scaling",
       "xmatrix",
       "ymatrix",
       "lev",
       "kcall",
       "error",
       "cross",
       "SVindex",
	"nSV",
       "RVindex",
       "prob.model",
       "b",
       "obj",

       ## kpca
       "rotated",
       "eig",
       "pcv",
       
       ## ipop
       "primal",
       "dual",
       "how",
       
       ## kcca
       "kcor",
       "xcoef",
       "ycoef",
      ## "xvar",
      ## "yvar",
       
       ## specc
       "size",
       "centers",
       "withinss",
       
       ## rvm
       "mlike",
       "nvar",
       
       ## ranking
       "convergence",
       "edgegraph",
       
       ## onlearn
       "onlearn",
       "inlearn",
       "buffer",
       "rho",

       ## kfa
       "kfa",
	
       ## inc.chol
       "pivots",
       "diagresidues",
       "maxresiduals",
       
       ## csi
       "R",
       "Q",
       "truegain",
       "predgain",
       
       ## kmmd
       "H0",
       "AsympH0",
       "Radbound",
       "Asymbound",
       "mmdstats"
       )

exportMethods("coef", "fitted", "plot", "predict", "show")

exportClasses("ksvm", "kmmd", "rvm", "ipop", "gausspr", "lssvm", "kpca", "kha",
              "kcca", "kernel", "rbfkernel", "laplacekernel",
              "besselkernel", "tanhkernel", "polykernel","fourierkernel",
              "vanillakernel", "anovakernel", "splinekernel",
              "stringkernel", "specc", "ranking", "inchol", "onlearn",
              "kfa", "csi","kqr",
              "kernelMatrix","kfunction")