kde1d | R Documentation |
Discrete variables are convoluted with the uniform distribution (see, Nagler,
2017). If a variable should be treated as discrete, declare it as
ordered()
.
kde1d(x, mult = 1, xmin = -Inf, xmax = Inf, bw = NULL, bw_min = 0, ...)
x |
vector of length |
mult |
numeric; the actual bandwidth used is |
xmin |
lower bound for the support of the density. |
xmax |
upper bound for the support of the density. |
bw |
bandwidth parameter; has to be a positive number or |
bw_min |
minimum value for the bandwidth. |
... |
unused. |
If xmin
or xmax
are finite, the density estimate will
be 0 outside of [xmin, xmax]
. Mirror-reflection is used to correct
for boundary bias. Discrete variables are convoluted with the uniform
distribution (see, Nagler, 2017).
An object of class kde1d
.
Nagler, T. (2017). A generic approach to nonparametric function estimation with mixed data. arXiv:1704.07457
dkde1d
, pkde1d
, qkde1d
,
rkde1d
plot.kde1d
, lines.kde1d
data(wdbc, package = "kdecopula") # load data
fit <- kde1d(wdbc[, 5]) # estimate density
dkde1d(1000, fit) # evaluate density estimate
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.