hcell2xy {hexbin} | R Documentation |
Computes x and y coordinates from hexagon cell id's.
hcell2xy(bin)
bin |
a object of class "hexbin" , typically produced by
hexbin(*) . |
The hexbin object 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 |
see in hcell
.
x <- rnorm(10000) y <- rnorm(10000) plot(x,y, pch=".") bin <- hexbin(x,y) str(xys <- hcell2xy(bin)) points(xys, cex=1.5, col=2) ; title("hcell2xy( hexbin(..) )", col.main=2)