/usr/lib/R/site-library/hexbin/NAMESPACE is in r-cran-hexbin 1.27.1-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 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 | useDynLib(hexbin)
import(methods)
import(grid)    ## too many things from grid
import(lattice) ## too many things from lattice
importFrom(graphics, plot, polygon)
importFrom(grDevices, col2rgb, gray, grey, hsv, rgb, rgb2hsv,
           xy.coords)
importFrom(stats, coef, density, IQR, loess, loess.control, median,
           predict, update)
importFrom(utils, modifyList, str)
## Generics and functions defined in this package
export(
       "erode",
       "erode.hexbin",
       "getHMedian",
## document those; the method aliases are there:
##       "getFig", "getMargins", "getPlt", "getXscale", "getYscale",
       "gplot.hexbin",
       "grid.hexagons",
       "grid.hexlegend",
       "hboxplot",
       "hcell2xy",
       "hexbin",
       "hexcoords",
       "hexList",
       "hexpolygon",
       "hexViewport",
       "hexVP.abline",
       "plotMAhex",
       "hexVP.loess",
       "hexMA.loess",
       "hsmooth",
       "list2hexList",
       "pushHexport",
       "smooth.hexbin",
       "hdiffplot", # but not all the helpers in ./R/hdiffplot.R
       ## Stuff in hexutils
       "hcell2xyInt",
       "hgridcent",
       "hexGraphPaper",
       "hexTapply",
       "optShape",
       "inout.hex",
       ## color stuff
       "BTC", "BTY", "LinGray", "LinOCS", "heat.ob", "magent","plinrain",
       ## Lattice stuff:
       ## high-level functions
       "hexbinplot", "hexplom", 
       ## panel functions
       "panel.hexbinplot", "panel.hexplom", "panel.hexboxplot",
       "panel.hexgrid","panel.hexloess",
       ## utilities
       "hexlegendGrob")
       
## S3 methods for lattice-type functions
S3method("hexbinplot", "formula")
S3method("hexplom",    "formula")
S3method("hexplom",    "matrix")
S3method("hexplom",    "data.frame")
exportClasses("hexbin",
              "erodebin",
              "smoothbin",
              "hexVP",
              # could/should we keep this 'private' (?) :
              "integer or NULL",
              "hexbinList"
              )
exportMethods(
              "erode",
## undocumented: "getFig", "getMargins", "getPlt", "getXscale", "getYscale",
              "hsmooth",
              "plot",
              "summary",
              "show",
              "coerce"
              )
 |