View source: R/makegaussiankernel.R
makegaussiankernel | R Documentation |
this function makes a kernel where the value in each cell is a gaussian function of the distance between that cell and the center of the kernel.
makegaussiankernel(sd, max.r = 3 * sd, cellsize = 1, include.center.cell = TRUE)
sd |
the standard deviation in map units of the gaussian function |
max.r |
the maximum radius of the kernel in map units. This defaults to three standard deviations. A smaller radius speeds calculation but loses information at the tail. |
cellsize |
the size of each cell in the grid in map units |
include.center.cell |
if FALSE the value of the center cell will be forced to zero. This was helpful in my original use of the function but probably not to you. |
a square, numeric matrix which sums to 1 and in which the value of each cell is a gaussian function of the distance from the cell to the center of the matrix.
Ethan Plunkett
calckernel
, kernelsmooth
k <- makegaussiankernel(sd=2)
m <- matrix(1:60, 6, 10)
sm <- kernelsmooth(m, k)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.