Kernel density estimate is an object of class kde which is a
list with 4 fields
xdata points - same as input
eval.pointspoints at which the density estimate is evaluated
estimatedensity estimate at eval.points
Hbandwidth matrix
hscalar bandwidth (1-d only)
Details
For d = 1, 2, 3, 4,
and if eval.points is not specified, then the
density estimate is computed over a grid
defined by gridsize (if binned=FALSE) or
by bgridsize (if binned=TRUE).
For d = 1, 2, 3, 4,
and if eval.points is specified, then the
density estimate is computed exactly at eval.points.
For d > 4, the kernel density estimate is computed exactly
and eval.points must be specified.
The default xmin is min(x) - Hmax*supp and xmax
is max(x) + Hmax*supp where Hmax is the maximim of the
diagonal elements of H.