pseudokernel: pseudokernel

Description Usage Arguments Examples

View source: R/EPDF.R

Description

Single grid size empirical density function. Offers a modified kernel density approach via the optional argument "rings"

Usage

1
pseudokernel(data,mn,mx,grid.sizes,rings)

Arguments

data

N-dimensional data set.

mx

Upper cropping point of the data.

mn

Lower cropping point of the data.

grid.sizes

Vector of grid sizes for the grid.

rings

Number of additional cell grid smoothing layers.

Examples

1
2
3
data<-mvtnorm::rmvnorm(n = 100,mean = c(0,0),sigma = diag(2))

pdf<-pseudokernel(data = data,mn = c(-2,-2),mx = c(2,2),grid.sizes = c(0.1,0.1),rings = 1)

MEPDF documentation built on May 2, 2019, 12:40 p.m.

Related to pseudokernel in MEPDF...