
Last chance! 50% off unlimited learning
Sale ends in
Given (x,y) points, determine their multiplicity -- checking for equality only up to some (crude kind of) noise. Note that this is special kind of 2D binning.
xyTable(x, y = NULL, digits)
numeric vectors of the same length; alternatively other
(x, y) argument combinations as allowed by
xy.coords(x, y)
.
integer specifying the significant digits to be used for
determining equality of coordinates. These are compared after
rounding them via signif(*, digits)
.
A list with three components of same length,
x coordinates, rounded and sorted.
y coordinates, rounded (and sorted within x
).
multiplicities (positive integers); i.e.,
number[i]
is the multiplicity of (x[i], y[i])
.
sunflowerplot
which typically uses
xyTable()
; signif
.
# NOT RUN {
xyTable(iris[, 3:4], digits = 6)
## Discretized uncorrelated Gaussian:
# }
# NOT RUN {
require(stats)
xy <- data.frame(x = round(sort(rnorm(100))), y = rnorm(100))
xyTable(xy, digits = 1)
# }
Run the code above in your browser using DataLab