bkde2D | R Documentation |
Returns the set of grid points in each coordinate direction, and the matrix of density estimates over the mesh induced by the grid points. The kernel is the standard bivariate normal density.
bkde2D(x, bandwidth, gridsize = c(51L, 51L), range.x, truncate = TRUE)
x |
a two-column numeric matrix containing the observations from the distribution whose density is to be estimated. Missing values are not allowed. |
bandwidth |
numeric vector oflength 2, containing the bandwidth to be used in each coordinate direction. |
gridsize |
vector containing the number of equally spaced points in each direction over which the density is to be estimated. |
range.x |
a list containing two vectors, where each vector
contains the minimum and maximum values of |
truncate |
logical flag: if TRUE, data with |
a list containing the following components:
x1 |
vector of values of the grid points in the first coordinate direction at which the estimate was computed. |
x2 |
vector of values of the grid points in the second coordinate direction at which the estimate was computed. |
fhat |
matrix of density estimates
over the mesh induced by |
This is the binned approximation to the 2D kernel density estimate.
Linear binning is used to obtain the bin counts and the
Fast Fourier Transform is used to perform the discrete convolutions.
For each x1
,x2
pair the bivariate Gaussian kernel is
centered on that location and the heights of the
kernel, scaled by the bandwidths, at each datapoint are summed.
This sum, after a normalization, is the corresponding
fhat
value in the output.
Wand, M. P. (1994). Fast Computation of Multivariate Kernel Estimators. Journal of Computational and Graphical Statistics, 3, 433-445.
Wand, M. P. and Jones, M. C. (1995). Kernel Smoothing. Chapman and Hall, London.
bkde
, density
, hist
.
data(geyser, package="MASS")
x <- cbind(geyser$duration, geyser$waiting)
est <- bkde2D(x, bandwidth=c(0.7, 7))
contour(est$x1, est$x2, est$fhat)
persp(est$fhat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.