Compute X and Y Coordinates for Hexagon Cells
Computes x and y coordinates from hexagon cell id's.
hcell2xy(hbin, check.erosion = TRUE)
hbin |
a object of class |
check.erosion |
logical indicating if only the eroded points
should be returned in the case where |
The hexbin object hbin
contains all the needed information.
The purpose of this function is to reduce storage. The cost is
additional calculation.
A list with two components of the same length as bin$cell
,
x |
|
y |
x <- rnorm(10000) y <- rnorm(10000) plot(x,y, pch=".") hbin <- hexbin(x,y) str(xys <- hcell2xy(hbin)) points(xys, cex=1.5, col=2) ; title("hcell2xy( hexbin(..) )", col.main=2)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.