KDE_ICV {ICV}R Documentation

Computing the kernel density estimate based on the ICV bandwidth.

Description

Computing the Gaussian density estimate based on h_ICV.

Usage

KDE_ICV(x)

Arguments

x

numerical vector of data.

Details

Computing the Gaussian density estimate based on h_ICV. The ICV selection kernel L_ICV is based on (\alpha,\sigma)=(2.42,5.06).

Value

A list containing the following components:

arg

vector of sorted values of the argument at which the density estmate is computed,

y

vector of density estimates at the corresponding values of the argument.

The function also produces a graph of the resulting ICV kernel density estimate.

References

See Also

ICV, h_ICV, L_ICV, LocICV, C_ICV.

Examples

#Example (Density estimate for eruption duration of the Old Faithful Geyser).
data=faithful[[1]]
dens=KDE_ICV(data)

[Package ICV version 1.0 Index]