/usr/lib/R/site-library/gbm/NAMESPACE is in r-cran-gbm 2.1.1-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 | # 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)
S3method(plot, gbm)
S3method(predict, gbm)
S3method(print, gbm)
S3method(summary, gbm)
|