Learn R Programming

denpro (version 0.9.2)

hgrid: Returns a grid of smoothing parameter values

Description

Returns a grid of smoothing parameter values for kernel estimates, either with a logarithmic spacing, or with equal spacing, in decreasing order.

Usage

hgrid(h1, h2, lkm, base = 10)

Arguments

h1
the lowest smoothing parameter value
h2
the largest smoothing parameter value
lkm
the number of smoothing parameters in the grid
base
the base of the logarithm, used in the logarithmic spacing, if NULL, then the equal spacing is applied

Value

a vector of smoothing parameters

See Also

lstseq.kern, branchmap, modegraph, exmap

Examples

Run this code
h1<-0.9
h2<-2.2
lkm<-5
hseq<-hgrid(h1,h2,lkm)

hseq<-hgrid(h1,h2,lkm,base=NULL)

Run the code above in your browser using DataLab