This file is indexed.

/usr/lib/R/site-library/ipred/NAMESPACE is in r-cran-ipred 0.9-6-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
useDynLib(ipred, .registration = TRUE)

### exported functions
export(
getsurv,
bagging, 
ipredbagg,
control.errorest, 
errorest, 
bootest, 
cv, 
inbagg, 
inclass, 
ipredknn, 
predict.ipredknn,
kfoldcv, mypredict.lm, rsurv, sbrier, varset,
slda)

importFrom("stats", "as.formula", "complete.cases", "cov",
     "delete.response", "model.extract", "model.frame",
     "model.matrix", "na.omit", "naresid", "predict", "rexp",
     "rnorm", "runif", "terms")
importFrom("utils", "data", "getFromNamespace")

### register S3 methods
#S3method(print, bagging) 
S3method(slda, default)
S3method(slda, formula)
S3method(slda, factor)
S3method(bagging, default)
S3method(bagging, data.frame)
S3method(errorest, default)
S3method(errorest, data.frame)
S3method(bootest, default)
S3method(bootest, integer)
S3method(bootest, factor)
S3method(bootest, numeric)
S3method(bootest, Surv)
S3method(inbagg, default)
S3method(inbagg, data.frame)
S3method(inclass, default)
S3method(inclass, data.frame)
S3method(cv, default)
S3method(cv, integer)
S3method(cv, factor)
S3method(cv, numeric)
S3method(cv, Surv)
S3method(ipredbagg, Surv)
S3method(ipredbagg, factor)
S3method(ipredbagg, numeric)
S3method(prune, classbagg)  
S3method(prune, survbagg)   
S3method(prune, classbagg)  
S3method(print, classbagg)
S3method(print, regbagg)
S3method(print, survbagg)              
S3method(print, classbagg)              
S3method(summary, classbagg)
S3method(summary, survbagg) 
S3method(summary, classbagg)
S3method(print, cvclass)
S3method(print, bootestclass) 
S3method(print, cvreg)
S3method(print, bootestreg)       
S3method(print, cvsurv)
S3method(print, bootestsurv)
S3method(print, inbagg)
S3method(summary, inbagg) 
S3method(print, inclass)   
S3method(summary, inclass)
S3method(predict, inbagg)
S3method(predict, inclass)
S3method(predict, classbagg)
S3method(predict, regbagg)
S3method(predict, survbagg)  
S3method(predict, slda)
S3method(predict, ipredknn) 
#S3method(predict, sclass)
#S3method(predict, sreg)


##imported functions
importFrom(class, knn)
importFrom(rpart, rpart, prune, na.rpart, rpart.control)
importFrom(MASS, lda)
importFrom(survival, Surv, is.Surv, survfit)
importFrom(nnet, multinom)
importFrom(prodlim, prodlim)