/usr/lib/R/site-library/gbm/NAMESPACE is in r-cran-gbm 2.1.3-2.
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 | # Export all names that don't start with "."
exportPattern("^[^\\.]")
useDynLib(gbm)
importFrom(survival, Surv)
# ns from splines is used in one of the examples
importFrom(splines, ns, splineDesign)
# xyplot is used, which means several functions internal
# to lattice will also be used. Import the lot.
import(lattice)
import(parallel)
importFrom("grDevices", "rainbow")
importFrom("graphics", "abline", "axis", "barplot", "lines", "mtext",
"par", "plot", "polygon", "rug", "segments", "title")
importFrom("stats", "approx", "binomial", "delete.response",
"gaussian", "glm", "loess", "model.extract", "model.frame",
"model.offset", "model.response", "model.weights",
"na.pass", "poisson", "predict", "quantile", "rbinom",
"reformulate", "rexp", "rnorm", "runif", "sd", "supsmu",
"terms", "var", "weighted.mean")
S3method(plot, gbm)
S3method(predict, gbm)
S3method(print, gbm)
S3method(summary, gbm)
|